2020-10-01 20:53:52 +00:00
|
|
|
/* --- --- */
|
2020-11-24 20:07:00 +00:00
|
|
|
.image {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2020-10-01 20:53:52 +00:00
|
|
|
.navbar .logo {
|
|
|
|
max-height: 50px;
|
|
|
|
}
|
2021-01-07 03:56:56 +00:00
|
|
|
|
|
|
|
.card {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2021-01-14 03:38:26 +00:00
|
|
|
.card-header-title {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2021-01-07 03:56:56 +00:00
|
|
|
|
2021-01-30 19:43:40 +00:00
|
|
|
/* --- SHELVING --- */
|
|
|
|
.shelf-option:disabled > *::after {
|
|
|
|
font-family: "icomoon";
|
|
|
|
content: "\e918";
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
2020-09-28 21:47:53 +00:00
|
|
|
/* --- TOGGLES --- */
|
2021-01-17 16:26:28 +00:00
|
|
|
.toggle-button[aria-pressed=true], .toggle-button[aria-pressed=true]:hover {
|
2021-01-17 03:57:20 +00:00
|
|
|
background-color: hsl(171, 100%, 41%);
|
|
|
|
color: white;
|
|
|
|
}
|
2021-01-17 18:38:34 +00:00
|
|
|
.hide-active[aria-pressed=true], .hide-inactive[aria-pressed=false] {
|
2021-01-17 16:26:28 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2021-01-17 03:57:20 +00:00
|
|
|
|
2020-09-29 01:25:05 +00:00
|
|
|
.hidden {
|
2021-01-18 17:57:44 +00:00
|
|
|
display: none !important;
|
2020-09-28 21:47:53 +00:00
|
|
|
}
|
|
|
|
|
2020-09-28 22:57:31 +00:00
|
|
|
/* --- STARS --- */
|
|
|
|
.rate-stars button.icon {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.rate-stars:hover .icon:before {
|
|
|
|
content: '\e9d9';
|
|
|
|
}
|
|
|
|
.rate-stars form:hover ~ form .icon:before{
|
|
|
|
content: '\e9d7';
|
|
|
|
}
|
2020-09-29 04:08:42 +00:00
|
|
|
|
2020-09-29 18:00:54 +00:00
|
|
|
/* stars in a review form */
|
|
|
|
.form-rate-stars:hover .icon:before {
|
|
|
|
content: '\e9d9';
|
|
|
|
}
|
|
|
|
.form-rate-stars input + .icon:before {
|
|
|
|
content: '\e9d9';
|
|
|
|
}
|
|
|
|
.form-rate-stars input:checked + .icon:before {
|
|
|
|
content: '\e9d9';
|
|
|
|
}
|
|
|
|
.form-rate-stars input:checked + * ~ .icon:before {
|
|
|
|
content: '\e9d7';
|
|
|
|
}
|
|
|
|
.form-rate-stars:hover label.icon:before {
|
|
|
|
content: '\e9d9';
|
|
|
|
}
|
|
|
|
.form-rate-stars label.icon:hover:before {
|
|
|
|
content: '\e9d9';
|
|
|
|
}
|
|
|
|
.form-rate-stars label.icon:hover ~ label.icon:before{
|
|
|
|
content: '\e9d7';
|
|
|
|
}
|
|
|
|
|
2020-09-29 04:08:42 +00:00
|
|
|
|
|
|
|
/* --- BOOK COVERS --- */
|
2020-09-29 20:11:52 +00:00
|
|
|
.cover-container {
|
|
|
|
height: 250px;
|
2020-09-30 16:00:33 +00:00
|
|
|
width: max-content;
|
2020-12-17 20:57:56 +00:00
|
|
|
max-width: 250px;
|
2020-09-29 20:11:52 +00:00
|
|
|
}
|
2021-01-03 19:10:04 +00:00
|
|
|
.cover-container.is-large {
|
2021-01-03 19:24:26 +00:00
|
|
|
height: max-content;
|
2021-01-10 17:50:17 +00:00
|
|
|
max-width: 330px;
|
2021-01-03 19:10:04 +00:00
|
|
|
}
|
2021-01-03 19:24:26 +00:00
|
|
|
.cover-container.is-large img {
|
|
|
|
max-height: 500px;
|
2021-01-10 17:50:17 +00:00
|
|
|
height: auto;
|
2021-01-03 19:24:26 +00:00
|
|
|
}
|
2020-09-30 00:43:30 +00:00
|
|
|
.cover-container.is-medium {
|
2021-01-03 20:53:51 +00:00
|
|
|
height: 150px;
|
2020-09-30 00:43:30 +00:00
|
|
|
}
|
2020-11-05 16:21:00 +00:00
|
|
|
.cover-container.is-small {
|
2021-01-03 20:53:51 +00:00
|
|
|
height: 100px;
|
2020-11-05 16:21:00 +00:00
|
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
.cover-container {
|
|
|
|
height: 200px;
|
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
.cover-container.is-medium {
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-30 00:43:30 +00:00
|
|
|
.cover-container.is-medium .no-cover div {
|
|
|
|
font-size: 0.9em;
|
|
|
|
padding: 0.3em;
|
|
|
|
}
|
|
|
|
.cover-container.is-small .no-cover div {
|
|
|
|
font-size: 0.7em;
|
|
|
|
padding: 0.1em;
|
|
|
|
}
|
2020-09-29 04:08:42 +00:00
|
|
|
.book-cover {
|
2020-09-29 21:11:55 +00:00
|
|
|
height: 100%;
|
2020-09-29 20:11:52 +00:00
|
|
|
object-fit: scale-down;
|
2020-09-29 04:08:42 +00:00
|
|
|
}
|
|
|
|
.no-cover {
|
|
|
|
position: relative;
|
2020-09-30 00:43:30 +00:00
|
|
|
white-space: normal;
|
2020-09-29 04:08:42 +00:00
|
|
|
}
|
|
|
|
.no-cover div {
|
|
|
|
position: absolute;
|
|
|
|
padding: 1em;
|
|
|
|
color: white;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --- AVATAR --- */
|
|
|
|
.avatar {
|
|
|
|
vertical-align: middle;
|
|
|
|
display: inline;
|
|
|
|
}
|
2021-01-12 02:09:12 +00:00
|
|
|
.navbar .avatar {
|
|
|
|
max-height: none;
|
|
|
|
}
|
2020-09-29 21:45:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* --- QUOTES --- */
|
|
|
|
.quote blockquote {
|
|
|
|
position: relative;
|
|
|
|
padding-left: 2em;
|
|
|
|
}
|
|
|
|
.quote blockquote:before, .quote blockquote:after {
|
|
|
|
font-family: 'icomoon';
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.quote blockquote:before {
|
2021-01-16 16:54:16 +00:00
|
|
|
content: "\e906";
|
2020-09-29 21:45:04 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.quote blockquote:after {
|
2021-01-16 16:54:16 +00:00
|
|
|
content: "\e905";
|
2020-09-29 21:45:04 +00:00
|
|
|
right: 0;
|
|
|
|
}
|