glcanvas/style.css

21 lines
305 B
CSS
Raw Normal View History

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