Created
November 19, 2012 18:29
-
-
Save HoundstoothSTL/4112558 to your computer and use it in GitHub Desktop.
Sass Responsive Named Mixins
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
// Variables defined in _variables.scss | |
// Usage @include breakpoint(medium) { width: XXX } | |
@mixin breakpoint($point) { | |
@if $point == massive { | |
@media (min-width: $massiveViewportWidth) { @content; } | |
} | |
@else if $point == xxl { | |
@media (min-width: $xxlargeViewportWidth) { @content; } | |
} | |
@else if $point == xl { | |
@media (min-width: $xlargeViewportWidth) { @content; } | |
} | |
@else if $point == large { | |
@media (min-width: $largeViewportWidth) { @content; } | |
} | |
@else if $point == medium { | |
@media (min-width: $mediumViewportWidth) { @content; } | |
} | |
@else if $point == small { | |
@media (min-width: $smallViewportWidth) { @content; } | |
} | |
@else if $point == mini { | |
@media (max-width: $miniViewportWidth) { @content; } | |
} | |
} | |
// Usage @include between(mediumLarge) { width: XXX } | |
@mixin between($points) { | |
@if $points == largeXlarge { | |
@media (min-width: $largeViewportWidth) and (max-width: $xlargeViewportWidth - 1) { @content; } | |
} | |
@else if $points == mediumLarge { | |
@media (min-width: $mediumViewportWidth) and (max-width: $largeViewportWidth - 1) { @content; } | |
} | |
@else if $points == smallMedium { | |
@media (min-width: $miniViewportWidth) and (max-width: $mediumViewportWidth - 1) { @content; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment