2024-08-01 01:09:11 +00:00
|
|
|
:root {
|
|
|
|
--palette-text-white: #FFFFFF;
|
|
|
|
--palette-text-black: #000000;
|
|
|
|
--palette-text-three: #3A424D;
|
|
|
|
--palette-text-four: #5B8080;
|
|
|
|
|
|
|
|
--palette-one: #3A4D24;
|
|
|
|
--palette-two: #A6B08E;
|
|
|
|
--palette-three: #879B77;
|
|
|
|
--palette-four: #61805B;
|
2024-11-23 03:34:39 +00:00
|
|
|
--grid-columns: 8;
|
|
|
|
--grid-rows: 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
#controls {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(var(--grid-columns), auto);
|
|
|
|
gap: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#render {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(var(--grid-columns), 20px);
|
|
|
|
grid-template-rows: repeat(var(--grid-rows), 20px);
|
|
|
|
border: 1px solid black;
|
2024-08-01 01:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
background-color: var(--palette-one);
|
|
|
|
color: var(--palette-text-white);
|
|
|
|
font-family: 'Ubuntu Nerd Font';
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plank {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: var(--palette-two);
|
|
|
|
}
|
|
|
|
|
2024-11-23 03:34:39 +00:00
|
|
|
.plankInner {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-08-01 01:09:11 +00:00
|
|
|
ul {
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding-top: 5px;
|
2024-11-23 03:34:39 +00:00
|
|
|
text-decoration: none;
|
|
|
|
list-style-type: none;
|
2024-08-01 01:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text],
|
|
|
|
input[type=number] {
|
|
|
|
min-width: 150px;
|
2024-11-23 03:34:39 +00:00
|
|
|
max-width: 150px;
|
|
|
|
}
|