Created
February 6, 2014 22:59
-
-
Save cjdsie/8854239 to your computer and use it in GitHub Desktop.
Wirefy Grid Nested Columns
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
article { | |
@include column(8); | |
ul { | |
@include row(8); | |
li { | |
@include column(4, 8); | |
} | |
} | |
} | |
aside { | |
@include column(4); | |
} |
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
<article> | |
<ul> | |
<li>List item</li> | |
<li>List item</li> | |
<li>List item</li> | |
<li>List item</li> | |
</ul> | |
</article> | |
<aside> | |
</aside> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment