50 lines
652 B
CSS
50 lines
652 B
CSS
body {
|
|
color: #ffffff;
|
|
font-family: Monospace;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
background-color: #000;
|
|
margin: 0px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#info, #controls {
|
|
position: absolute;
|
|
width: 100%;
|
|
padding: 5px;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
#info {
|
|
top: 0;
|
|
}
|
|
|
|
#controls {
|
|
bottom: 0;
|
|
}
|
|
|
|
a {
|
|
color: #ffffff;
|
|
-webkit-transition: 150ms all;
|
|
transition: 150ms all;
|
|
}
|
|
a:hover, a:focus {
|
|
color: #ffc107;
|
|
}
|
|
|
|
.stats-element {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.audio-embed {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 100%;
|
|
border: 0;
|
|
}
|
|
#hide-audio:checked + .audio-embed {
|
|
opacity: 0;
|
|
} |