D10 theme for Island Lives. This is a clone of drupals core theme Olivero. Notice this theme is named Olivera not Olivero :)
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.

82 lines
1.7 KiB

11 months ago
/*
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/3084859
* @preserve
*/
/**
* @file
* Visual styles for fields.
*/
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. */
11 months ago
.field:not(:last-child) {
10 months ago
margin-bottom: var(--sp2);
11 months ago
}
.node--view-mode-teaser .field {
10 months ago
margin-bottom: var(--sp)
11 months ago
}
.node--view-mode-teaser .field:last-child {
10 months ago
margin-bottom: 0;
}
11 months ago
@media (min-width: 62.5rem) {
10 months ago
.node--view-mode-teaser .field {
margin-bottom: var(--sp2)
11 months ago
}
10 months ago
}
11 months ago
.field__label {
font-weight: bold;
}
.field--label-inline .field__label,
.field--label-inline .field__items {
10 months ago
float: left /* LTR */
11 months ago
/**
* Chromium and Webkit do not yet support flow relative logical properties,
* such as float: inline-end. However, PostCSS Logical does not compile this
* value, so we accommodate by not using these.
*
* @see https://caniuse.com/mdn-css_properties_clear_flow_relative_values
* @see https://github.com/csstools/postcss-plugins/issues/632
*/
}
10 months ago
[dir="rtl"] .field--label-inline .field__label,[dir="rtl"] .field--label-inline .field__items {
float: right;
}
[dir="ltr"] .field--label-inline .field__label,[dir="ltr"]
.field--label-inline > .field__item,[dir="ltr"]
.field--label-inline .field__items {
padding-right: 0.5em;
11 months ago
}
10 months ago
[dir="rtl"] .field--label-inline .field__label,[dir="rtl"]
.field--label-inline > .field__item,[dir="rtl"]
11 months ago
.field--label-inline .field__items {
10 months ago
padding-left: 0.5em;
11 months ago
}
.field--label-inline .field__label::after {
content: ":";
}