add very basic clicker game

This commit is contained in:
zyl 2024-10-24 13:10:33 -07:00
parent 3ccd5b0df8
commit 19ffac4a90
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs
9 changed files with 335 additions and 17 deletions

27
site/sass/click.scss Normal file
View file

@ -0,0 +1,27 @@
#click {
.resources {
display: grid;
grid-template-columns: repeat(3, 0fr);
grid-auto-flow: row;
& > span {
margin-right: 5px;
width: max-content;
&.resource {
font-weight: bold;
}
}
}
#barker {
font-size: 2rem;
padding: 8px;
}
.tools {
.name {
font-weight: bold;
}
}
}