bookwyrm-mastodon/bookwyrm/static/css/format.css

235 lines
3.9 KiB
CSS
Raw Normal View History

html {
scroll-behavior: smooth;
scroll-padding-top: 20%;
}
2020-10-01 16:53:52 -04:00
/* --- --- */
2020-11-24 15:07:00 -05:00
.image {
overflow: hidden;
}
2020-10-01 16:53:52 -04:00
.navbar .logo {
max-height: 50px;
}
.card {
overflow: visible;
}
2021-03-26 13:32:42 -04:00
.scroll-x {
overflow: hidden;
overflow-x: auto;
}
2021-03-31 16:56:26 -04:00
.modal-card.is-fullwidth {
min-width: 75% !important;
}
2021-01-30 14:43:40 -05:00
/* --- SHELVING --- */
/** @todo Replace icons with SVG symbols.
@see https://www.youtube.com/watch?v=9xXBYcWgCHA */
2021-01-30 14:43:40 -05:00
.shelf-option:disabled > *::after {
font-family: "icomoon"; /* stylelint-disable font-family-no-missing-generic-family-keyword */
2021-01-30 14:43:40 -05:00
content: "\e918";
margin-left: 0.5em;
}
2020-09-28 17:47:53 -04:00
/* --- TOGGLES --- */
.toggle-button[aria-pressed=true],
.toggle-button[aria-pressed=true]:hover {
2021-01-16 22:57:20 -05:00
background-color: hsl(171, 100%, 41%);
color: white;
}
.hide-active[aria-pressed=true],
.hide-inactive[aria-pressed=false] {
display: none;
}
2021-01-16 22:57:20 -05:00
2020-09-28 21:25:05 -04:00
.hidden {
2021-01-18 12:57:44 -05:00
display: none !important;
2020-09-28 17:47:53 -04:00
}
.hidden.transition-y,
.hidden.transition-x {
display: block !important;
visibility: hidden !important;
height: 0;
width: 0;
margin: 0;
padding: 0;
}
.transition-y {
transition-property: height, margin-top, margin-bottom, padding-top, padding-bottom;
transition-duration: 0.5s;
transition-timing-function: ease;
}
.transition-x {
transition-property: width, margin-left, margin-right, padding-left, padding-right;
transition-duration: 0.5s;
transition-timing-function: ease;
}
@media (prefers-reduced-motion: reduce) {
.transition-x,
.transition-y {
transition-duration: 0.001ms !important;
}
}
2020-09-28 17:47:53 -04:00
2020-09-28 18:57:31 -04:00
/* --- STARS --- */
.rate-stars button.icon {
background: none;
border: none;
padding: 0;
margin: 0;
display: inline;
}
.rate-stars:hover .icon::before {
2020-09-28 18:57:31 -04:00
content: '\e9d9';
}
.rate-stars form:hover ~ form .icon::before {
2020-09-28 18:57:31 -04:00
content: '\e9d7';
}
2020-09-29 00:08:42 -04:00
/** stars in a review form
*
* @todo Simplify the logic for those icons.
*/
.form-rate-stars input + .icon.icon::before {
2020-09-29 14:00:54 -04:00
content: '\e9d9';
}
.form-rate-stars:hover .icon.icon::before {
2020-09-29 14:00:54 -04:00
content: '\e9d9';
}
.form-rate-stars input:checked + .icon.icon::before {
2020-09-29 14:00:54 -04:00
content: '\e9d9';
}
.form-rate-stars input:checked + * ~ .icon.icon::before {
2020-09-29 14:00:54 -04:00
content: '\e9d7';
}
.form-rate-stars:hover label.icon.icon::before {
2020-09-29 14:00:54 -04:00
content: '\e9d9';
}
.form-rate-stars label.icon:hover::before {
2021-03-04 13:27:03 -05:00
content: '\e9d9';
}
.form-rate-stars label.icon:hover ~ label.icon.icon::before {
2020-09-29 14:00:54 -04:00
content: '\e9d7';
}
2020-09-29 00:08:42 -04:00
/* --- BOOK COVERS --- */
2020-09-29 16:11:52 -04:00
.cover-container {
height: 250px;
2020-09-30 12:00:33 -04:00
width: max-content;
2020-12-17 15:57:56 -05:00
max-width: 250px;
2020-09-29 16:11:52 -04:00
}
2021-01-03 14:10:04 -05:00
.cover-container.is-large {
height: max-content;
2021-01-10 12:50:17 -05:00
max-width: 330px;
2021-01-03 14:10:04 -05:00
}
.cover-container.is-large img {
max-height: 500px;
2021-01-10 12:50:17 -05:00
height: auto;
}
2020-09-29 20:43:30 -04:00
.cover-container.is-medium {
2021-01-03 15:53:51 -05:00
height: 150px;
2020-09-29 20:43:30 -04:00
}
2020-11-05 11:21:00 -05:00
.cover-container.is-small {
2021-01-03 15:53:51 -05:00
height: 100px;
2020-11-05 11:21:00 -05:00
}
2020-11-05 11:21:00 -05:00
@media only screen and (max-width: 768px) {
.cover-container {
height: 200px;
width: max-content;
}
2020-11-05 11:21:00 -05:00
.cover-container.is-medium {
height: 100px;
}
}
2020-09-29 00:08:42 -04:00
.book-cover {
2020-09-29 17:11:55 -04:00
height: 100%;
2020-09-29 16:11:52 -04:00
object-fit: scale-down;
2020-09-29 00:08:42 -04:00
}
2020-09-29 00:08:42 -04:00
.no-cover {
position: relative;
2020-09-29 20:43:30 -04:00
white-space: normal;
2020-09-29 00:08:42 -04:00
}
2020-09-29 00:08:42 -04:00
.no-cover div {
position: absolute;
padding: 1em;
color: white;
top: 0;
left: 0;
text-align: center;
}
.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 00:08:42 -04:00
/* --- AVATAR --- */
.avatar {
vertical-align: middle;
display: inline;
}
.is-32x32 {
min-width: 32px;
min-height: 32px;
2021-01-11 21:09:12 -05:00
}
.is-96x96 {
min-width: 96px;
min-height: 96px;
}
2020-09-29 17:45:04 -04:00
/* --- QUOTES --- */
.quote blockquote {
position: relative;
padding-left: 2em;
}
.quote blockquote::before,
.quote blockquote::after {
2020-09-29 17:45:04 -04:00
font-family: 'icomoon';
position: absolute;
}
.quote blockquote::before {
2021-01-16 11:54:16 -05:00
content: "\e906";
2020-09-29 17:45:04 -04:00
top: 0;
left: 0;
}
.quote blockquote::after {
2021-01-16 11:54:16 -05:00
content: "\e905";
2020-09-29 17:45:04 -04:00
right: 0;
}