.col
.col
.col x5
.col x4
.col x3
.col s6
.col s6
.col m4
.col m4
.col m4
.col l3
.col l3
.col l3
.col l3
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
.col fit
<div class="container">
<div class="row">
<div class="col"> Full Width column </div>
<div class="col x6">6 columns on all screen sizes</div>
<div class="col s6">6 columns on small and up</div>
<div class="col m6">6 columns on medium and up</div>
<div class="col l6">6 columns on large and up</div>
<div class="col fit">Column will shrink to size of content</div>
</div>
</div>
Whoa.
That's Deep!
Hello!
.col m4
.col x4 offset-1
.col x4 offset-1
.col x6
.col x3 offset-m6
.col x3 offset-l7
I am an element that lives outside of the grid.
.col x4
.col x4
.col x4
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.col x2
.row top
.col x6 l4
.row middle
.col x6 l4
.row bottom
.col x6 l4
Col 1
Col 2
Col 3
Col 4
Col 5
Col 6
1
2
3
4 .first
1 .last
2
3
4
// _variables.scss
// Add, remove, or rename breakpoints here
$bluegrid-breakpoints: (
'x': default,
's': 600px,
'm': 960px,
'l': 1140px
);
$bluegrid-settings: (
// Default grid variables
'num-cols': 12,
'gutter-width': 1rem,
'default-span': 100%, //This can be 'fit', or a unit (1), or fill whole row (100%)
// Defaults for content containers
'container-width': 1280px,
'container-padding': 1rem,
...
// Mixin related variables omitted ...
);