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;
|
|
|
|
align-items: center;
|
2024-11-06 18:15:24 -06:00
|
|
|
background-color: var(--utsa-orange);
|
2024-10-09 19:02:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbarCont {
|
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;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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-06 18:15:24 -06:00
|
|
|
height:auto;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-10-09 18:19:10 -05:00
|
|
|
canvas {
|
2024-11-06 18:15:24 -06:00
|
|
|
background-color: white;
|
2024-10-09 23:18:42 -05:00
|
|
|
margin: 20px;
|
2024-11-05 11:51:17 -06:00
|
|
|
image-rendering: pixelated;
|
|
|
|
}
|