29 lines
398 B
CSS
29 lines
398 B
CSS
body {
|
|
margin: 0;
|
|
height: 200vh;
|
|
}
|
|
|
|
/* scrollbar hide hacks */
|
|
body::-webkit-scrollbar { width:0; }
|
|
|
|
canvas {
|
|
display: block;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
#warpSpeed {
|
|
display: none;
|
|
top: 16px;
|
|
left: 16px;
|
|
position: fixed;
|
|
background: transparent;
|
|
width: 150px;
|
|
border: 1px solid #fff;
|
|
color: #fff;
|
|
font-family: monospace;
|
|
|
|
} |