Skip to content

Instantly share code, notes, and snippets.

@dvmage
Forked from ChrisTM/block-grid.less
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvmage/e84aef4e7bc095ba90f4 to your computer and use it in GitHub Desktop.
Save dvmage/e84aef4e7bc095ba90f4 to your computer and use it in GitHub Desktop.
// Block Grid
// Technique adapted from Foundation 5 for Bootstrap 3.
// https://github.com/zurb/foundation/blob/f755d8704123f86c281ede0b171881e2672f150d/scss/foundation/components/_block-grid.scss
[class*="block-grid-"] {
display: block;
margin: -(@grid-gutter-width/2);
padding: 0;
.clearfix();
}
.block-grid-item {
display: inline;
margin: 0;
padding: (@grid-gutter-width/2);
height: auto;
float: left;
list-style: none;
}
.block-grid (@per-row) {
& > .block-grid-item {
width: (100%/@per-row);
@nth-equation: ~"@{per-row}n+1";
&:nth-of-type(n) { clear: none; }
&:nth-of-type(@{nth-equation}) { clear: both; }
}
}
.block-grids(@size, @index: @grid-columns) when (@index > 0) {
.block-grid-@{size}-@{index} { .block-grid(@index); }
.block-grids(@size,@index - 1);
}
.block-grids(xs);
@media (min-width: @screen-sm-min) { .block-grids(sm) }
@media (min-width: @screen-md-min) { .block-grids(md) }
@media (min-width: @screen-lg-min) { .block-grids(lg) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment