fractal-hell/game.css

46 lines
750 B
CSS
Raw Permalink Normal View History

2024-09-13 03:30:57 -04:00
.message {
position: relative;
2024-09-14 22:32:14 -04:00
margin-bottom: -1024px;
bottom: 1024px;
width: 1024px;
height: 1024px;
2024-09-13 03:30:57 -04:00
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-14 22:32:14 -04:00
2024-09-13 03:30:57 -04:00
#canvas {
2024-09-14 22:32:14 -04:00
width: 768px;
height: 768px;
/*image-rendering: pixelated;*/
background: rgb(63, 63, 71);
}
section#main {
width: 1024px;
}
@media (max-width: 780px) {
#canvas {
width: min(512px,90vw);
height: min(512px,90vw);
}
2024-09-13 03:30:57 -04:00
}