113 lines
1.8 KiB
SCSS
Executable File
113 lines
1.8 KiB
SCSS
Executable File
.queue-view {
|
|
|
|
.current-track {
|
|
padding: 40px 0 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&__artwork {
|
|
text-align: right;
|
|
display: block;
|
|
z-index: 1;
|
|
width: 48%;
|
|
margin-right: 2%;
|
|
|
|
a {
|
|
border: 0 !important;
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 30vh;
|
|
display: inline-block;
|
|
}
|
|
|
|
&--radio-enabled {
|
|
.thumbnail {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.radio-overlay {
|
|
position: absolute;
|
|
top: -15%;
|
|
left: -15%;
|
|
width: 130%;
|
|
height: 130%;
|
|
z-index: 2;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__details {
|
|
width: 48%;
|
|
margin-left: 2%;
|
|
}
|
|
|
|
&__title {
|
|
font-size: 1.4rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
&__artists {
|
|
display: block;
|
|
font-size: 1.4rem;
|
|
opacity: 0.5;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
&__added-from {
|
|
padding-top: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&__text {
|
|
border: 0 !important;
|
|
display: block;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
&__thumbnail {
|
|
border: 0 !important;
|
|
.thumbnail {
|
|
width: 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__queue-details {
|
|
padding-top: 2rem;
|
|
}
|
|
|
|
@include responsive($bp_medium) {
|
|
display: block;
|
|
text-align: center;
|
|
padding: 40px 0 20px;
|
|
|
|
&__artwork {
|
|
width: auto;
|
|
margin: 0 0 20px 0;
|
|
text-align: center;
|
|
|
|
.thumbnail {
|
|
width: 90%;
|
|
max-width: 30vh;
|
|
}
|
|
}
|
|
|
|
&__details {
|
|
width: auto;
|
|
margin: 0;
|
|
}
|
|
|
|
&__added-from {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|