Skip to content

Instantly share code, notes, and snippets.

@jcroft
Created March 2, 2012 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcroft/1961085 to your computer and use it in GitHub Desktop.
Save jcroft/1961085 to your computer and use it in GitHub Desktop.
Example of using Sass media query bubbling
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