Created
March 2, 2012 20:33
-
-
Save jcroft/1961085 to your computer and use it in GitHub Desktop.
Example of using Sass media query bubbling
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
div#content-wrapper | |
+container | |
#left-sidebar | |
+column(100%) | |
@media only screen and (min-width : 768px) | |
width: 25% | |
#main-content | |
+column(100%) | |
@media only screen and (min-width : 768px) | |
width: 50% | |
#right-sidebar | |
+column(100%) | |
@media only screen and (min-width : 768px) | |
width: 25% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment