85 lines
2.0 KiB
CSS
85 lines
2.0 KiB
CSS
/*
|
|
* 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: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-rows: 1fr;
|
|
grid-template-rows: 1fr;
|
|
-ms-grid-columns: (minmax(0, 1fr))[6];
|
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
grid-column-gap: 18px
|
|
|
|
/* .grid-full classes nested 3 or more deep go full width. */
|
|
}
|
|
|
|
.grid-full .grid-full .grid-full {
|
|
display: block;
|
|
}
|
|
|
|
@media (min-width: 700px) {
|
|
|
|
.grid-full {
|
|
-ms-grid-columns: (minmax(0, 1fr))[14];
|
|
grid-template-columns: repeat(14, minmax(0, 1fr));
|
|
grid-column-gap: 36px
|
|
}
|
|
}
|
|
|
|
/*
|
|
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: 700px) {
|
|
|
|
.layout--content-narrow .grid-full,
|
|
.layout--pass--content-narrow > * .grid-full {
|
|
-ms-grid-columns: (minmax(0, 1fr))12];
|
|
grid-template-columns: repeat(12, minmax(0, 1fr))
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
.layout--content-narrow .grid-full,
|
|
.layout--pass--content-narrow > * .grid-full {
|
|
-ms-grid-columns: (minmax(0, 1fr))8];
|
|
grid-template-columns: repeat(8, 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: 700px) {
|
|
|
|
.layout--content-medium .grid-full,
|
|
.layout--pass--content-medium > * .grid-full {
|
|
-ms-grid-columns: (minmax(0, 1fr))12];
|
|
grid-template-columns: repeat(12, minmax(0, 1fr))
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
|
|
.layout--content-medium .grid-full,
|
|
.layout--pass--content-medium > * .grid-full {
|
|
-ms-grid-columns: (minmax(0, 1fr))10];
|
|
grid-template-columns: repeat(10, minmax(0, 1fr))
|
|
}
|
|
}
|