glcanvas/style.css

21 lines
305 B
CSS
Raw Permalink Normal View History

2024-08-05 23:29:12 -04:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
2024-09-17 21:45:26 -04:00
overflow: hidden;
2024-08-05 23:29:12 -04:00
}
canvas {
position: absolute;
2024-09-17 21:45:26 -04:00
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
2024-09-21 02:15:41 -04:00
min-height: 100vh;
min-width: 100vw;
box-sizing: border-box;
2024-09-17 21:45:26 -04:00
image-rendering: pixelated;
2024-09-21 02:15:41 -04:00
}