21 lines
250 B
CSS
21 lines
250 B
CSS
|
* {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
background-color: #1e1e1e;
|
||
|
}
|
||
|
|
||
|
html, body, canvas {
|
||
|
overflow: none;
|
||
|
}
|
||
|
|
||
|
canvas {
|
||
|
position: fixed !important;
|
||
|
left: 0 !important;
|
||
|
right: 0 !important;
|
||
|
bottom: 0 !important;
|
||
|
top: 0 !important;
|
||
|
}
|