File size: 436 Bytes
a82dc04 391a3ba a82dc04 391a3ba a82dc04 391a3ba a82dc04 391a3ba a82dc04 391a3ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | * {
box-sizing: border-box;
margin: 0;
}
body {
background: #111;
overflow: hidden;
}
canvas {
display: block;
touch-action: none;
}
#loading {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: #111;
color: rgba(255, 255, 255, 0.4);
font: 12px monospace;
z-index: 100;
transition: opacity 0.4s;
}
#loading.done {
opacity: 0;
pointer-events: none;
}
|