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.
64 lines
1.7 KiB
64 lines
1.7 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Grid system. |
|
*/ |
|
|
|
.grid-full { |
|
display: grid; |
|
grid-template-rows: 1fr; |
|
grid-template-columns: repeat(var(--grid-col-count), minmax(0, 1fr)); |
|
grid-column-gap: var(--grid-gap); |
|
|
|
/* .grid-full classes nested 3 or more deep go full width. */ |
|
} |
|
|
|
.grid-full .grid-full .grid-full { |
|
display: block; |
|
} |
|
|
|
/* |
|
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) { |
|
.layout--content-narrow .grid-full, |
|
.layout--pass--content-narrow > * .grid-full { |
|
grid-template-columns: repeat(calc(var(--grid-col-count) - 2), minmax(0, 1fr)); |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
.layout--content-narrow .grid-full, |
|
.layout--pass--content-narrow > * .grid-full { |
|
grid-template-columns: repeat(calc(var(--grid-col-count) - 6), minmax(0, 1fr)); |
|
} |
|
} |
|
|
|
/* |
|
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) { |
|
.layout--content-medium .grid-full, |
|
.layout--pass--content-medium > * .grid-full { |
|
grid-template-columns: repeat(calc(var(--grid-col-count) - 2), minmax(0, 1fr)); |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
.layout--content-medium .grid-full, |
|
.layout--pass--content-medium > * .grid-full { |
|
grid-template-columns: repeat(calc(var(--grid-col-count) - 4), minmax(0, 1fr)); |
|
} |
|
}
|
|
|