
| Current Path : /var/www/html/konvbav/web/core/themes/olivero/css/layout/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/konvbav/web/core/themes/olivero/css/layout/layout-builder-threecol-section.pcss.css |
/*
* @file
* Provides the layout styles for three-column layout section.
*/
@import "../base/media-queries.pcss.css";
.layout--threecol-section {
display: grid;
gap: var(--grid-gap);
grid-template-columns: var(--layout-threecol-grid);
& > .layout__region--first {
grid-column: var(--layout-threecol-grid__first);
}
& > .layout__region--second {
grid-column: var(--layout-threecol-grid__second);
}
& > .layout__region--third {
grid-column: var(--layout-threecol-grid__third);
}
}
@media (--lg) {
.layout--threecol-section--25-50-25 {
--layout-threecol-grid: repeat(4, minmax(0, 1fr));
--layout-threecol-grid__second: span 2;
}
.layout--threecol-section--25-25-50 {
--layout-threecol-grid: repeat(4, minmax(0, 1fr));
--layout-threecol-grid__third: span 2;
}
.layout--threecol-section--50-25-25 {
--layout-threecol-grid: repeat(4, minmax(0, 1fr));
--layout-threecol-grid__first: span 2;
}
.layout--threecol-section--33-34-33 {
--layout-threecol-grid: repeat(3, minmax(0, 1fr));
}
}