game engine test

This commit is contained in:
biglyderv 2024-09-13 03:30:57 -04:00
parent 105aac8fd0
commit 5ab4e05afe
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954
4 changed files with 167 additions and 67 deletions

27
game.css Normal file
View file

@ -0,0 +1,27 @@
.message {
position: relative;
bottom: 800px;
width: 800px;
height: 800px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgba(0,0,0,0.5);
}
.message span {
display: block;
text-align: center;
color: rgb(255,255,255);
font-weight: bold;
font-size: 50px;
}
#canvas {
width: 800px;
height: 800px;
image-rendering: pixelated
}