2021-08-10 19:18:46 +03:00
|
|
|
// 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
|
2021-08-17 19:27:33 +03:00
|
|
|
padding: $padding;
|
2021-08-10 19:18:46 +03:00
|
|
|
|
|
|
|
.audiobook-genre-button { // Genre buttons
|
|
|
|
.koto-button {
|
|
|
|
font-size: 2em;
|
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.writers-button-flow { // Flowbox of buttons for writers
|
2021-08-17 19:27:33 +03:00
|
|
|
padding: 0 $padding; // Horizontal padding of our standard item padding
|
2021-08-10 19:18:46 +03:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|