clone of olivero for island lives
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

236 lines
3.9 KiB

10 months ago
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Book module styling.
*/
10 months ago
/*
* Media query breakpoints.
* Processed by postcss/postcss-custom-media.
*/
/* Navigation related breakpoints */
/* Grid related breakpoints */
/* Grid shifts from 6 to 14 columns. */
/* Width of the entire grid maxes out. */
[dir="ltr"] .book-pager {
margin-left: 0;
}
[dir="rtl"] .book-pager {
margin-right: 0;
}
[dir="ltr"] .book-pager {
margin-right: 0;
}
[dir="rtl"] .book-pager {
margin-left: 0;
}
[dir="ltr"] .book-pager {
padding-left: 0;
}
[dir="rtl"] .book-pager {
padding-right: 0;
}
[dir="ltr"] .book-pager {
padding-right: 0;
}
[dir="rtl"] .book-pager {
padding-left: 0;
}
10 months ago
.book-pager {
display: flex;
flex-wrap: wrap;
10 months ago
margin-top: 0 var(--sp);
padding-top: 0;
padding-bottom: var(--sp);
10 months ago
list-style: none;
10 months ago
border-bottom: solid 1px var(--color--primary-40);
10 months ago
}
.book-pager__item {
10 months ago
display: inline-block
10 months ago
}
@media (min-width: 31.25rem) {
10 months ago
.book-pager__item {
flex: 0 0 33.33%
10 months ago
}
10 months ago
}
10 months ago
@media (min-width: 31.25rem) {
10 months ago
.book-pager__item--center {
text-align: center
10 months ago
}
10 months ago
}
10 months ago
@media (min-width: 31.25rem) {
10 months ago
[dir="ltr"] .book-pager__item--next {
margin-left: auto;
}
[dir="rtl"] .book-pager__item--next {
margin-right: auto;
}
[dir="ltr"] .book-pager__item--next {
text-align: right;
}
[dir="rtl"] .book-pager__item--next {
text-align: left;
}
10 months ago
}
.book-pager__link {
display: inline-flex;
align-items: center;
text-decoration: none;
color: var(--color-text-primary-medium);
font-family: var(--font-serif);
font-size: 1.125rem;
font-weight: 600;
}
10 months ago
[dir="ltr"] .book-pager__link--previous::before {
margin-right: 0.25em;
}
[dir="rtl"] .book-pager__link--previous::before {
margin-left: 0.25em;
}
[dir="ltr"] .book-pager__link--previous::before {
border-left: solid 3px currentColor;
}
[dir="rtl"] .book-pager__link--previous::before {
border-right: solid 3px currentColor;
}
10 months ago
.book-pager__link--previous::before {
10 months ago
display: block;
width: var(--sp0-5);
height: var(--sp0-5);
content: "";
transform: rotate(-45deg);
border-top: solid 3px currentColor;
}
[dir="ltr"] .book-pager__link--next::after {
margin-left: 0.25em;
}
[dir="rtl"] .book-pager__link--next::after {
margin-right: 0.25em;
}
[dir="ltr"] .book-pager__link--next::after {
border-left: solid 3px currentColor;
}
[dir="rtl"] .book-pager__link--next::after {
border-right: solid 3px currentColor;
10 months ago
}
.book-pager__link--next::after {
10 months ago
display: block;
width: var(--sp0-5);
height: var(--sp0-5);
content: "";
transform: rotate(135deg);
border-top: solid 3px currentColor;
}
[dir="ltr"] .book-navigation__menu {
margin-left: 0;
}
[dir="rtl"] .book-navigation__menu {
margin-right: 0;
}
[dir="ltr"] .book-navigation__menu {
margin-right: 0;
}
[dir="rtl"] .book-navigation__menu {
margin-left: 0;
}
[dir="ltr"] .book-navigation__menu {
padding-left: 0;
}
[dir="rtl"] .book-navigation__menu {
padding-right: 0;
}
[dir="ltr"] .book-navigation__menu {
padding-right: 0;
}
[dir="rtl"] .book-navigation__menu {
padding-left: 0;
10 months ago
}
.book-navigation__menu {
10 months ago
margin-top: var(--sp2);
margin-bottom: var(--sp2);
padding-top: 0;
padding-bottom: 0;
10 months ago
list-style: none;
}
10 months ago
[dir="ltr"] .book-navigation__item {
padding-left: 0;
}
[dir="rtl"] .book-navigation__item {
padding-right: 0;
}
[dir="ltr"] .book-navigation__item {
padding-right: 0;
}
[dir="rtl"] .book-navigation__item {
padding-left: 0;
}
10 months ago
.book-navigation__item {
10 months ago
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
10 months ago
list-style: none;
}
[dir="rtl"] .book-pager__link--previous::before {
10 months ago
transform: rotate(45deg);
}
10 months ago
[dir="rtl"] .book-pager__link--next::after {
10 months ago
transform: rotate(-135deg);
}