36 lines
544 B
CSS
36 lines
544 B
CSS
html, body {
|
|
height: 100%;
|
|
margin: 0px;
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #121212;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.emscripten {
|
|
padding-right: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
display: none;
|
|
border: 0px none;
|
|
}
|
|
|
|
.canvas_full_screen {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
#loading_text {
|
|
color: #F0F0F0;
|
|
font-size: 30px;
|
|
font-family: monospace;
|
|
width: 100%;
|
|
text-align: center;
|
|
} |