Skip to content

Instantly share code, notes, and snippets.

@bloqhead
Created September 19, 2013 16:02
Show Gist options
  • Save bloqhead/6625661 to your computer and use it in GitHub Desktop.
Save bloqhead/6625661 to your computer and use it in GitHub Desktop.
Grid resizing with Bourbon Neat and selectors. Requires http://bourbon.io and http://neat.bourbon.io
// 481 and up
.gallery {
li {
@include span-columns(6);
&:nth-child(2n) {
margin-right: 0;
}
}
}
// 768 and up
.gallery {
li {
@include span-columns(4);
&:nth-child(2n) {
margin-right: 2.35765% !important;
}
&:nth-child(3n) {
margin-right: 0 !important;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment