41 lines
630 B
CSS
41 lines
630 B
CSS
/*
|
|
Layouts
|
|
========================================
|
|
*/
|
|
|
|
/* Container (centered, fixed-width layouts) */
|
|
.container {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
zoom: 1;
|
|
}
|
|
|
|
.container:before,
|
|
.container:after {
|
|
display: table;
|
|
content: "";
|
|
line-height: 0;
|
|
}
|
|
|
|
.container:after {
|
|
clear: both;
|
|
}
|
|
|
|
/* Fluid layouts (left aligned, with sidebar, min- & max-width content) */
|
|
.container-fluid {
|
|
padding-right: var(--grid-gutter-width);
|
|
padding-left: var(--grid-gutter-width);
|
|
zoom: 1;
|
|
}
|
|
|
|
.container-fluid:before,
|
|
.container-fluid:after {
|
|
display: table;
|
|
content: "";
|
|
line-height: 0;
|
|
}
|
|
|
|
.container-fluid:after {
|
|
clear: both;
|
|
}
|