koto/theme/pages/_audiobook-library.scss
Joshua Strobl 62f2883849 Implement playback speed and jump forwards / backwards functionality.
Ref #14.

Additionally fixed some bugs around the KotoButton showing the badge text label when it shouldn't, styling related to margins, and various legacy null and string valid checks.
2021-08-17 19:27:33 +03:00

36 lines
No EOL
724 B
SCSS

// This file contains the styling for our Audiobook Library
@import '../vars';
.audiobook-library { // Library page
.genres-banner { // Banner for genres list
.large-banner { // Large banner with art for each genre
padding: $padding;
.audiobook-genre-button { // Genre buttons
.koto-button {
font-size: 2em;
margin: 0.5em;
}
}
}
}
.writers-button-flow { // Flowbox of buttons for writers
padding: 0 $padding; // Horizontal padding of our standard item padding
flowboxchild {
padding: 0;
&:nth-child(even) {
margin: 0 0.5em;
}
.writer-button { // Writer button
color: $text-color-bright;
font-size: 1.4em;
background-color: $bg-secondary;
}
}
}
}