Created
September 19, 2013 16:02
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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