70 lines
1.1 KiB
CSS
70 lines
1.1 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-size: 20px;
|
|
font-family: 'Cuprum', sans-serif;
|
|
}
|
|
#canvas1 {
|
|
position:absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
#canvas2 {
|
|
position:absolute;
|
|
top: 0;
|
|
left: 0;
|
|
background: black;
|
|
}
|
|
#animationCanvas {
|
|
position:absolute;
|
|
top: 0;
|
|
left: 0;
|
|
background: black;
|
|
}
|
|
#info {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 30%;
|
|
text-align: left;
|
|
padding: 30px;
|
|
font-size: 20px;
|
|
}
|
|
#info a {
|
|
font-size: 20px;
|
|
}
|
|
button {
|
|
padding: 10px 40px;
|
|
text-shadow: 1px 1px rgba(255,255,255,0.5);
|
|
width: 220px;
|
|
font-family: 'Lilita One', sans-serif;
|
|
}
|
|
#controls {
|
|
position: absolute;
|
|
padding: 10px;
|
|
left: 20px;
|
|
top: 20px;
|
|
width: 250px;
|
|
border: 2px solid black;
|
|
background: rgba(0,0,0,0.2);
|
|
}
|
|
#controlsHeader {
|
|
margin-top: 30px;
|
|
font-family: 'Lilita One', cursive;
|
|
}
|
|
#info {
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 30%;
|
|
text-align: left;
|
|
padding: 30px;
|
|
font-size: 15px;
|
|
color: white;
|
|
}
|
|
#info a {
|
|
font-size: 15px;
|
|
color: magenta;
|
|
} |