63 lines
955 B
SCSS
63 lines
955 B
SCSS
.song-cover-art {
|
|
@include rounding;
|
|
background-position: center;
|
|
background-size: cover;
|
|
margin: 4px 5px 4px 0;
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
}
|
|
|
|
.music-window {
|
|
@include window;
|
|
background-color: $bg;
|
|
border: 1px solid $border;
|
|
color: $fg;
|
|
}
|
|
|
|
.music-cover-art {
|
|
background-position: center;
|
|
background-size: cover;
|
|
border-radius: 8px;
|
|
margin: 1em;
|
|
min-height: 170px;
|
|
min-width: 170px;
|
|
}
|
|
|
|
.music-box {
|
|
margin: 1rem 1rem 1rem 0;
|
|
}
|
|
|
|
.music-title {
|
|
font-weight: bold;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.music-artist {
|
|
color: $subtext1;
|
|
}
|
|
|
|
.music-button label {
|
|
color: $subtext1;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.music-time {
|
|
color: $subtext1;
|
|
margin: 0 1rem;
|
|
}
|
|
|
|
.music-bar scale {
|
|
highlight {
|
|
background-image: linear-gradient(to right, $teal 30%, $sky 100%);
|
|
border-radius: 24px;
|
|
}
|
|
|
|
trough {
|
|
background-color: $bg1;
|
|
border-radius: 24px;
|
|
margin-top: 0;
|
|
min-height: 10px;
|
|
min-width: 170px;
|
|
}
|
|
}
|