random-walkers/walkers.css

31 lines
478 B
CSS

body {
color: white;
}
#canvas-container {
/* go to top left, no padding no nothing.
* fixed position makes it not respond to scrolling etc */
position: fixed;
top: 0;
left: 0;
padding: 0;
margin: 0;
/* take up full page space */
width: 100%;
height: 100%;
/* live WAAAAY in the back to basically be a background */
z-index: -1000;
}
#walker-canvas {
width: 100%;
height: 100%;
background: black;
}
#page-content-hidden {
display:none;
}