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.
36 lines
No EOL
724 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
} |