You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
424 B
30 lines
424 B
*, *:before, *:after {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
body, html {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: black;
|
|
}
|
|
|
|
canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.instructions {
|
|
position: absolute;
|
|
top:30%;
|
|
left: 50%;
|
|
margin-left:-8%;
|
|
padding: 0.5em;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
color: #FFF;
|
|
font-size: 30px;
|
|
font-family: monospace;
|
|
}
|