ThePlaceHolders/static/canvas.css

144 lines
2.3 KiB
CSS
Raw Normal View History

2024-11-06 18:15:24 -06:00
:root {
--utsa-orange: #f15a22;
--utsa-blue: #0c2340;
}
2024-10-09 19:02:59 -05:00
* {
padding: 0;
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
display: flex;
flex-direction: column;
justify-content: center;
2024-11-06 18:15:24 -06:00
background-color: var(--utsa-orange);
2024-11-10 11:02:11 -06:00
height: 100vh;
2024-10-09 19:02:59 -05:00
}
.navbarCont {
2024-11-06 18:16:21 -06:00
position: relative;
2024-11-06 18:15:24 -06:00
background-color: var(--utsa-blue);
2024-10-09 19:02:59 -05:00
width: 100%;
text-align: center;
2024-11-10 11:02:11 -06:00
margin-bottom: 10vh;
2024-10-09 19:02:59 -05:00
}
2024-11-06 18:16:21 -06:00
.navbarCont a {
float: left;
text-align: center;
padding: 12px;
text-decoration: none;
2024-11-10 11:02:11 -06:00
color: var(--utsa-orange);
2024-11-06 18:16:21 -06:00
}
.navbarCont a.icon {
padding: 0px;
}
.navbarCont a.title {
font-size: 26.5px;
}
.navbarCont a.rightB {
float: right;
padding: 20px;
margin: 0;
color: #ecf0f1;
}
.navbarCont a.rightB:hover {
background-color: #34495e
}
.navbarCont img {
float: left;
}
2024-10-09 19:02:59 -05:00
.canvasCont {
display: flex;
2024-10-09 23:18:42 -05:00
flex-direction: column;
2024-10-09 19:02:59 -05:00
justify-content: center;
align-items: center;
background-color: yellow;
border: solid black;
border-radius: 20px;
}
2024-10-09 23:18:42 -05:00
.toolbar {
display: flex;
justify-content: space-around;
align-items: center;
border-top: solid black 1px;
2024-11-06 18:15:24 -06:00
background-color: var(--utsa-blue);
2024-10-09 23:18:42 -05:00
width: 100%;
2024-11-10 11:02:11 -06:00
height: auto;
margin-top: 11vh;
2024-10-09 23:18:42 -05:00
}
.toolbarItems {
display: flex;
flex-direction: column;
justify-content: center;
font-weight: 900;
2024-11-06 18:15:24 -06:00
color: white;
2024-10-09 23:18:42 -05:00
text-align: center;
height: 100%;
width: 100px;
}
.strokePicker {
padding: 0;
margin: 0;
width: 100%;
}
.strokePicker:hover {
cursor: pointer;
}
canvas {
2024-11-06 18:15:24 -06:00
background-color: white;
2024-10-09 23:18:42 -05:00
margin: 20px;
2024-11-10 11:02:11 -06:00
align-self: center;
height: 500px;
width: 500px;
2024-11-05 11:51:17 -06:00
image-rendering: pixelated;
}
2024-11-06 18:16:21 -06:00
@media screen and (max-width: 600px) {
2024-11-10 11:02:11 -06:00
.navbarCont a.title {
font-size: 18.5px;
padding-left: 0px;
}
.navbarCont img {
width: 80%;
}
.navbarCont {
position: relative;
background-color: var(--utsa-blue);
width: 100%;
text-align: center;
margin-bottom: 11vh;
}
2024-11-06 18:16:21 -06:00
.navbarCont a {
/* possible hamburger menu for moblie users*/
2024-11-10 11:02:11 -06:00
font-size: 10px;
2024-11-06 18:16:21 -06:00
}
2024-11-10 11:02:11 -06:00
canvas {
background-color: white;
margin: 20px;
align-self: center;
height: 500px;
width: 500px;
2024-11-06 18:16:21 -06:00
}
2024-11-10 11:02:11 -06:00
}