basic mechanics

This commit is contained in:
biglyderv 2025-03-04 05:04:38 -05:00
commit 2c842d5b0f
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
4 changed files with 216 additions and 0 deletions

21
docs/main.css Normal file
View file

@ -0,0 +1,21 @@
canvas {
width: 100vw;
height: 100vh;
}
body, html {
margin: 0;
padding: 0;
}
.hud {
position: fixed;
top: 0;
left: 0;
background: rgba(255, 255, 255, 0.7);
color: rgb(0, 0, 0);
font-family: monospace;
padding: 10px;
min-width: 200px;
min-height: 50px;
font-size: 32px;
}