Skip to content

Instantly share code, notes, and snippets.

@bluestrike2
Created April 7, 2012 06:04
Show Gist options
  • Save bluestrike2/2325768 to your computer and use it in GitHub Desktop.
Save bluestrike2/2325768 to your computer and use it in GitHub Desktop.
Example of @media bubbling in sass
// media query module
// use: responsive style blocks output to @content
=tablet-portrait
@media screen and (min-width: 30em)
@content
=retina
@media screen and (-webkit-min-device-pixel-ratio: 2)
@content
// selector
#header
color $funkypurple
+tablet-portrait
color $nofunkpurple
+retina
background url(../images/awesome-logo@2x.png)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment