freeCodeCamp/public/css/lib/bootstrap/grid.less

77 lines
1.3 KiB
Plaintext
Raw Normal View History

//
// Grid system
// --------------------------------------------------
2014-01-31 01:23:56 +00:00
// Container widths
//
// Set the container width, and override it for fixed navbars in media queries.
.container {
.container-fixed();
2014-01-31 01:23:56 +00:00
@media (min-width: @screen-sm-min) {
width: @container-sm;
}
@media (min-width: @screen-md-min) {
width: @container-md;
}
@media (min-width: @screen-lg-min) {
width: @container-lg;
}
}
// Fluid container
//
// Utilizes the mixin meant for fixed width containers, but without any defined
// width for fluid, full width layouts.
.container-fluid {
.container-fixed();
}
2014-01-31 01:23:56 +00:00
// Row
//
// Rows contain and clear the floats of your columns.
.row {
.make-row();
}
2014-01-31 01:23:56 +00:00
// Columns
//
// Common styles for small and large grid columns
2014-01-31 01:23:56 +00:00
.make-grid-columns();
// Extra small grid
//
2014-01-31 01:23:56 +00:00
// Columns, offsets, pushes, and pulls for extra small devices like
// smartphones.
2014-02-15 18:35:27 +00:00
.make-grid(xs);
// Small grid
//
// Columns, offsets, pushes, and pulls for the small device range, from phones
// to tablets.
@media (min-width: @screen-sm-min) {
2014-02-15 18:35:27 +00:00
.make-grid(sm);
}
// Medium grid
//
// Columns, offsets, pushes, and pulls for the desktop device range.
@media (min-width: @screen-md-min) {
2014-02-15 18:35:27 +00:00
.make-grid(md);
}
// Large grid
//
// Columns, offsets, pushes, and pulls for the large desktop device range.
@media (min-width: @screen-lg-min) {
2014-02-15 18:35:27 +00:00
.make-grid(lg);
}