fractal-hell/game.css

33 lines
554 B
CSS
Raw Normal View History

2024-09-13 03:30:57 -04:00
.message {
position: relative;
2024-09-13 06:11:07 -04:00
margin-bottom: -800px;
2024-09-13 03:30:57 -04:00
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;
}
2024-09-13 06:11:07 -04:00
.ui-text {
white-space: pre-wrap;
font-weight: bold;
padding: 10px;
}
2024-09-13 03:30:57 -04:00
#canvas {
width: 800px;
height: 800px;
image-rendering: pixelated
}