21 lines
302 B
CSS
Executable File
21 lines
302 B
CSS
Executable File
body {
|
|
margin: 0;
|
|
background: #000;
|
|
/* For some reason the canvas gets huge
|
|
during loading so */
|
|
overflow: hidden;
|
|
}
|
|
|
|
#canvas {
|
|
height: 100vh;
|
|
width: auto;
|
|
margin: auto;
|
|
}
|
|
|
|
#status {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
color: #f0b418;
|
|
background: rgba(0, 0, 0, .5);
|
|
} |