14 lines
203 B
CSS
14 lines
203 B
CSS
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #0e0e12;
|
|
overflow: hidden;
|
|
}
|
|
|
|
canvas {
|
|
image-rendering: pixelated;
|
|
display: block;
|
|
}
|