47 lines
692 B
SCSS
47 lines
692 B
SCSS
|
@import "../../../stylesheets/variables/_all";
|
||
|
|
||
|
%baseIndicator {
|
||
|
width: 0.9em;
|
||
|
}
|
||
|
|
||
|
%baseIndicatorLabel {
|
||
|
font-size: var(--font-size-base);
|
||
|
margin: 0 0 0 0.5rem;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
vertical-align: middle;
|
||
|
max-width: 20vw;
|
||
|
}
|
||
|
|
||
|
.streamingIndicator {
|
||
|
}
|
||
|
|
||
|
.slider {
|
||
|
@extend %baseIndicator;
|
||
|
display: flex;
|
||
|
position: relative;
|
||
|
bottom: 3.5em;
|
||
|
left: 10em;
|
||
|
|
||
|
min-width: 200px;
|
||
|
background-color: rgba(0,0,0,0.5);
|
||
|
padding: 0.5em 1em 0.5em 1em;
|
||
|
border-radius: 32px;
|
||
|
|
||
|
i {
|
||
|
color: white;
|
||
|
transition: 0.5s;
|
||
|
font-size: 200%;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.volumeSlider {
|
||
|
width: 150px;
|
||
|
}
|
||
|
|
||
|
.volume {
|
||
|
margin-right: 1em;
|
||
|
}
|