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 |
|
* Content below region 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. */ |
|
|
|
@media (min-width: 43.75rem) { |
|
|
|
.region--content-below { |
|
display: flex; |
|
flex-wrap: wrap |
|
} |
|
|
|
[dir="ltr"] .region--content-below > * { |
|
margin-right: var(--grid-gap) |
|
} |
|
|
|
[dir="rtl"] .region--content-below > * { |
|
margin-left: var(--grid-gap) |
|
} |
|
|
|
.region--content-below > * { |
|
flex-basis: calc(50% - var(--grid-gap)/2); |
|
flex-grow: 1; |
|
flex-shrink: 0 |
|
} |
|
|
|
[dir="ltr"] .region--content-below > *:nth-child(2n),[dir="ltr"] |
|
.region--content-below > *:last-child { |
|
margin-right: 0 |
|
} |
|
|
|
[dir="rtl"] .region--content-below > *:nth-child(2n),[dir="rtl"] |
|
.region--content-below > *:last-child { |
|
margin-left: 0 |
|
} |
|
} |
|
|
|
@media (min-width: 43.75rem) { |
|
.region--content-below > * { |
|
flex-basis: calc(33.33% - var(--grid-gap)*0.667) |
|
} |
|
|
|
[dir="ltr"] .region--content-below > *:nth-child(2n),[dir="ltr"] |
|
.region--content-below > *:last-child { |
|
margin-right: var(--grid-gap) |
|
} |
|
|
|
[dir="rtl"] .region--content-below > *:nth-child(2n),[dir="rtl"] |
|
.region--content-below > *:last-child { |
|
margin-left: var(--grid-gap) |
|
} |
|
|
|
[dir="ltr"] .region--content-below > *:nth-child(3n),[dir="ltr"] |
|
.region--content-below > *:last-child { |
|
margin-right: 0 |
|
} |
|
|
|
[dir="rtl"] .region--content-below > *:nth-child(3n),[dir="rtl"] |
|
.region--content-below > *:last-child { |
|
margin-left: 0 |
|
} |
|
}
|
|
|