mirror of
https://github.com/adanrsantos/ThePlaceHolders.git
synced 2024-12-16 12:20:37 -06:00
77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
:root {
|
|
--utsa-orange: #f15a22;
|
|
--utsa-blue: #0c2340;
|
|
}
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(--utsa-orange);
|
|
}
|
|
|
|
.navbarCont {
|
|
background-color: var(--utsa-blue);
|
|
width: 100%;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.canvasCont {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: yellow;
|
|
border: solid black;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.toolbar {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
border-top: solid black 1px;
|
|
background-color: var(--utsa-blue);
|
|
width: 100%;
|
|
height:auto;
|
|
}
|
|
|
|
.toolbarItems {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
font-weight: 900;
|
|
color: white;
|
|
text-align: center;
|
|
height: 100%;
|
|
width: 100px;
|
|
}
|
|
|
|
.strokePicker {
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.strokePicker:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
canvas {
|
|
background-color: white;
|
|
margin: 20px;
|
|
image-rendering: pixelated;
|
|
}
|