Created
January 28, 2013 17:43
-
-
Save jkosoy/4657510 to your computer and use it in GitHub Desktop.
SCSS Responsive Mixin
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
// breakpoints | |
$break-small: 400px; | |
$break-large: 1024px; | |
@mixin respond-to($media) { | |
@if $media == handhelds { | |
@media only screen and (max-width: $break-small) { @content; } | |
} | |
@else if $media == medium-screens { | |
@media only screen and (min-width: $break-small + 1) and (max-width: $break-large - 1) { @content; } | |
} | |
@else if $media == wide-screens { | |
@media only screen and (min-width: $break-large) { @content; } | |
} | |
} | |
// usage examples: @include respond-to(handle) | |
// @include respond-to(handhelds) { width: 100% ;} | |
// @include respond-to(medium-screens) { width: 125px; } | |
// @include respond-to(wide-screens) { float: none; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment