This commit is contained in:
zeno 2024-02-28 11:59:54 -05:00
commit 6b926e53bf
19 changed files with 1365 additions and 0 deletions

44
css/core.css Normal file
View file

@ -0,0 +1,44 @@
body {
font-family: monospace;
padding: 10px;
margin: 0;
background: rgb(21, 21, 22);
color: white;
text-align: center;
}
#no-overflow {
overflow: hidden;
}
canvas {
margin: auto;
display: block;
background: rgb(181, 204, 253);
image-rendering: pixelated;
}
#main2 {
position: fixed;
top: 0;
left: 0;
width: 100vw !important;
height: 100vh !important;
}
button, a, textarea {
padding: 5px;
border: none;
margin: 6px 3px 0px 3px;
display: none;
background: rgb(44, 142, 255);
color: white;
font-family: monospace;
}
section:target button, .menu2 button, a, textarea {
display: inline-block;
}