Created
June 13, 2013 21:29
-
-
Save raspo/5777533 to your computer and use it in GitHub Desktop.
Easy media queries 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
@mixin respond-to($media) { | |
@if $media == small { | |
@media only screen and (max-width: 420px) { @content } | |
} | |
@else if $media == medium { | |
@media only screen and (max-width: 768px) { @content } | |
} | |
@else if $media == large { | |
@media only screen and (max-width: 980px) { @content } | |
} | |
} |
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
.some{ | |
margin-top: 20px; | |
@include respond-to(small){ | |
margin-top: 10px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment