Phyks (Lucas Verney)
4d4ce6c14e
Now able to play a single file, in a format supported by your browser. * Playlists not yet supported. * Volume is a simple on/off switch. * Repeat / Random not yet supported.
55 lines
581 B
SCSS
55 lines
581 B
SCSS
$controlsMarginTop: 10px;
|
|
|
|
.webplayer {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.art {
|
|
opacity: 0.75;
|
|
position: absolute;
|
|
z-index: -10;
|
|
}
|
|
|
|
.artRow {
|
|
min-height: 200px;
|
|
}
|
|
|
|
/**
|
|
* Controls
|
|
*/
|
|
|
|
.controls {
|
|
margin-top: $controlsMarginTop;
|
|
}
|
|
|
|
.btn {
|
|
background: transparent;
|
|
border: none;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.btn:hover,
|
|
.btn:active,
|
|
.btn:focus {
|
|
opacity: 1;
|
|
outline: none;
|
|
}
|
|
|
|
.prevBtn,
|
|
.playPauseBtn,
|
|
.nextBtn,
|
|
.volumeBtn,
|
|
.repeatBtn,
|
|
.randomBtn,
|
|
.playlistBtn {
|
|
composes: btn;
|
|
}
|
|
|
|
.playPauseBtn {
|
|
font-size: $font-size-h2;
|
|
}
|
|
|
|
.active {
|
|
color: $blue;
|
|
}
|