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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbarCont {
|
|
|
|
background-color: grey;
|
|
|
|
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;
|
|
|
|
width: 100%;
|
|
|
|
height: 60px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarItems {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
font-weight: 900;
|
|
|
|
color: blue;
|
|
|
|
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-10-09 19:02:59 -05:00
|
|
|
background-color: lightblue;
|
2024-10-09 23:18:42 -05:00
|
|
|
margin: 20px;
|
2024-11-05 11:51:17 -06:00
|
|
|
image-rendering: pixelated;
|
|
|
|
}
|