Created
September 11, 2012 18:51
-
-
Save kylefox/3700843 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Sass mixins for columns | |
.features div:first-child, | |
.features div:last-child, | |
+column(3) | |
.features div:nth-child(2) | |
+column(6) |
This file contains hidden or 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
<!-- CSS helers for columns --> | |
<div class="features"> | |
<div class="column-3">...</div> | |
<div class="column-6">...</div> | |
<div class="column-3">...</div> | |
</div> |
This file contains hidden or 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
<!-- Sass mixins for columns --> | |
<div class="features"> | |
<div>...</div> | |
<div>...</div> | |
<div>...</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment