Created
February 19, 2014 14:27
-
-
Save pablolobos/9093161 to your computer and use it in GitHub Desktop.
sass_media-queries.scss
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
@mixin large { | |
@media only screen and (max-width: 60em) { | |
@content; | |
} | |
} | |
@mixin medium { | |
@media only screen and (max-width: 40em) { | |
@content; | |
} | |
} | |
@mixin small { | |
@media only screen and (max-width: 30em) { | |
@content; | |
} | |
} | |
//Usage | |
@include small { | |
width: 100%; | |
float: none; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment