koto/theme/_player-bar.scss
Joshua Strobl 0e2244ba90 Implement Playlist functionality. My god...
Too many changes to summarize.

- Fixes #2.
- Fixes #3.
- Fixes #5.
- Fixes #7.

Start work on uncrustify config.
2021-05-07 16:47:47 +03:00

45 lines
620 B
SCSS

@import 'vars';
.player-bar {
background-color: $midnight;
background-image: none;
padding: $halvedpadding;
.koto-button {
&:not(.toggled) {
color: $darkgrey;
}
&.toggled {
color: white;
}
}
.playerbar-info { // Central info section
& > box { // Info labels
margin-left: 2ex;
& > label {
margin-top: 6px;
margin-bottom: 6px;
&:nth-child(1) { // Title
font-size: x-large;
font-weight: bold;
}
&:not(:nth-child(1)) { // Album and Artist
font-size: large;
}
&:nth-child(2) { // Album
}
&:nth-child(3) { // Artist
}
}
}
}
}