add death

This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent b6ffe5cf32
commit b88d04a556
4 changed files with 44 additions and 16 deletions

View file

@ -34,10 +34,8 @@ p {
.message {
position: relative;
margin-bottom: -1024px;
bottom: 1024px;
width: 1024px;
height: 1024px;
margin-bottom: -768px;
bottom: 768px;
display: flex;
flex-direction: column;
@ -61,7 +59,7 @@ p {
padding: 10px;
}
#canvas {
#canvas, .message {
width: 768px;
height: 768px;
/*image-rendering: pixelated;*/
@ -73,8 +71,13 @@ section#main {
}
@media (max-width: 1920px) {
#canvas {
#canvas, .message {
width: min(512px, 90vw);
height: min(512px, 90vw);
}
.message {
margin-bottom: min(512px, 90vw);
bottom: min(512px, 90vw);
}
}