Created
April 7, 2012 06:04
-
-
Save bluestrike2/2325768 to your computer and use it in GitHub Desktop.
Example of @media bubbling in sass
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
// 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/[email protected]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment