64 lines
868 B
SCSS
Executable File
64 lines
868 B
SCSS
Executable File
|
|
.queue-view {
|
|
|
|
.parallax {
|
|
opacity: 0.5;
|
|
margin-bottom: -45vh;
|
|
}
|
|
|
|
.current-track {
|
|
text-align: center;
|
|
padding: 40px 0 60px;
|
|
|
|
.artwork {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
width: 60%;
|
|
max-width: 60vh;
|
|
display: block;
|
|
border: 0 !important;
|
|
z-index: 1;
|
|
|
|
.thumbnail {
|
|
margin: 0 auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
&.radio-enabled {
|
|
.thumbnail {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.radio-overlay {
|
|
position: absolute;
|
|
top: -15%;
|
|
left: -15%;
|
|
width: 130%;
|
|
height: 130%;
|
|
z-index: 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 18px;
|
|
padding-top: 20px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.artist-sentence {
|
|
display: block;
|
|
font-size: 18px;
|
|
opacity: 0.5;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
@include responsive($bp_medium){
|
|
.artwork {
|
|
width: 80%;
|
|
}
|
|
}
|
|
}
|
|
} |