Last active
February 29, 2016 19:39
-
-
Save AllThingsSmitty/4cf3c54b5d54244c760b to your computer and use it in GitHub Desktop.
Mixin for responsive breakpoints
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 breakpoint($class) { | |
@if $class == xs { | |
@media (max-width: 767px) { @content; } | |
} | |
@else if $class == sm { | |
@media (min-width: 768px) { @content; } | |
} | |
@else if $class == md { | |
@media (min-width: 992px) { @content; } | |
} | |
@else if $min == lg { | |
@media (min-width: 1200px) { @content; } | |
} | |
@else { | |
@warn "Breakpoint mixin supports: xs, sm, md, lg"; | |
} | |
} | |
@mixin breakpoint($min: 0, $max: 0) { | |
$type: type-of($min); | |
@if $type == string { | |
@include breakpoint($class); | |
} | |
@else if $type == number { | |
$query: "all" !default; | |
@if $min != 0 and $max != 0 { | |
$query: "(min-width: #{$min}) and (max-width: #{$max})"; | |
} | |
@else if $min != 0 and $max == 0 { | |
$query: "(min-width: #{$min})"; | |
} | |
@else if $min == 0 and $max != 0 { | |
$query: "(max-width: #{$max})"; | |
} | |
@media #{$query} { | |
@content; | |
} | |
} | |
} | |
aside.primary { | |
@include breakpoint(md) { | |
float: right; | |
width: 350px; | |
} | |
@include breakpoint(480px) { | |
display: none; | |
} | |
@include breakpoint($min: 640px, $max: 767px) { | |
text-align: center; | |
font-style: italic; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment