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.8 KiB
82 lines
1.8 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Grid system definition for the content wide layout. |
|
*/ |
|
|
|
/* |
|
* 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. */ |
|
|
|
.layout--content-medium, |
|
.layout--pass--content-medium > * { |
|
-ms-grid-column: 1; |
|
-ms-grid-column-span: 6; |
|
grid-column: 1 / 7; |
|
width: 100% |
|
} |
|
|
|
@media (min-width: 43.75rem) { |
|
|
|
.layout--content-medium, |
|
.layout--pass--content-medium > * { |
|
-ms-grid-column: 2; |
|
-ms-grid-column-span: 12; |
|
grid-column: 2 / 14 |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
|
|
.layout--content-medium, |
|
.layout--pass--content-medium > * { |
|
-ms-grid-column: 3; |
|
-ms-grid-column-span: 10; |
|
grid-column: 3 / 13 |
|
} |
|
} |
|
|
|
/* |
|
If .layout--content-medium is nested within itself, or an element that's inheriting the |
|
layout--content-medium styles from its parent region, go full width within its |
|
parent .grid-full. |
|
*/ |
|
|
|
@media (min-width: 43.75rem) { |
|
|
|
.layout--pass--content-medium > * .layout--content-medium, |
|
.layout--pass--content-medium > * .layout--pass--content-medium > *, |
|
.layout--content-medium .layout--content-medium, |
|
.layout--content-medium .layout--pass--content-medium > * { |
|
-ms-grid-column: 1; |
|
-ms-grid-column-span: 12; |
|
grid-column: 1 / 13 |
|
} |
|
} |
|
|
|
@media (min-width: 62.5rem) { |
|
|
|
.layout--pass--content-medium > * .layout--content-medium, |
|
.layout--pass--content-medium > * .layout--pass--content-medium > *, |
|
.layout--content-medium .layout--content-medium, |
|
.layout--content-medium .layout--pass--content-medium > * { |
|
-ms-grid-column: 1; |
|
-ms-grid-column-span: 10; |
|
grid-column: 1 / 11 |
|
} |
|
}
|
|
|