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.

89 lines
2.3 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
* Grid system.
*/
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. */
10 months ago
.grid-full {
10 months ago
display: -ms-grid;
10 months ago
display: grid;
10 months ago
-ms-grid-rows: 1fr;
10 months ago
grid-template-rows: 1fr;
10 months ago
-ms-grid-columns: (minmax(0, 1fr))[var(--grid-col-count)];
10 months ago
grid-template-columns: repeat(var(--grid-col-count), minmax(0, 1fr));
10 months ago
grid-column-gap: var(--grid-gap)
10 months ago
/* .grid-full classes nested 3 or more deep go full width. */
}
.grid-full .grid-full .grid-full {
10 months ago
display: block;
}
10 months ago
/*
If the .grid-full is nested within the following, apply the appropriate number of columns.
- .layout--content-narrow class.
- Element that's inheriting the layout--content-narrow styles from its parent region.
*/
@media (min-width: 43.75rem) {
10 months ago
.layout--content-narrow .grid-full,
.layout--pass--content-narrow > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))[calc(var(--grid-col-count) - 2)];
grid-template-columns: repeat(calc(var(--grid-col-count) - 2), minmax(0, 1fr))
10 months ago
}
10 months ago
}
10 months ago
@media (min-width: 62.5rem) {
10 months ago
.layout--content-narrow .grid-full,
.layout--pass--content-narrow > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))[calc(var(--grid-col-count) - 6)];
grid-template-columns: repeat(calc(var(--grid-col-count) - 6), minmax(0, 1fr))
10 months ago
}
10 months ago
}
10 months ago
/*
If the .grid-full is nested within the following, apply the appropriate number of columns.
- .layout--content-medium class.
- Element that's inheriting the layout--content-medium styles from its parent region.
*/
@media (min-width: 43.75rem) {
10 months ago
.layout--content-medium .grid-full,
.layout--pass--content-medium > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))[calc(var(--grid-col-count) - 2)];
grid-template-columns: repeat(calc(var(--grid-col-count) - 2), minmax(0, 1fr))
10 months ago
}
10 months ago
}
10 months ago
@media (min-width: 62.5rem) {
10 months ago
.layout--content-medium .grid-full,
.layout--pass--content-medium > * .grid-full {
-ms-grid-columns: (minmax(0, 1fr))[calc(var(--grid-col-count) - 4)];
grid-template-columns: repeat(calc(var(--grid-col-count) - 4), minmax(0, 1fr))
10 months ago
}
10 months ago
}