58 lines
778 B
CSS
58 lines
778 B
CSS
body {
|
|
color: black;
|
|
background: url("bg.png");
|
|
}
|
|
|
|
#overlay-one, #overlay-two {
|
|
position: fixed;
|
|
top: 0px;
|
|
z-index: -1;
|
|
|
|
background: url("bg.png");
|
|
}
|
|
#overlay-one {
|
|
filter:alpha(opacty=70);
|
|
opacity:0.7;
|
|
}
|
|
#overlay-two {
|
|
filter:alpha(opacty=10);
|
|
opacity:0.1;
|
|
}
|
|
|
|
#glow-holder {
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
z-index: -2;
|
|
padding-top: 40px;
|
|
}
|
|
|
|
#activators {
|
|
display: none;
|
|
position: fixed;
|
|
right:0;
|
|
bottom:0;
|
|
}
|
|
#play {
|
|
padding: 4px;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
margin: 10px;
|
|
}
|
|
|
|
@media (min-width: 979px) {
|
|
#main-content {
|
|
margin-top: 60px;
|
|
}
|
|
}
|
|
|
|
.box {
|
|
background-color: whiteSmoke;
|
|
border-radius: 10px 10px 10px 10px;
|
|
margin-bottom: 15px;
|
|
padding: 15px;
|
|
}
|
|
|