Created
December 24, 2015 14:04
-
-
Save nandomoreirame/99a967fe13503460d5fe to your computer and use it in GitHub Desktop.
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
/* | |
Usage | |
.container { | |
width: 1200px; | |
@include media(min-width 480px) { | |
font-size: 1.2rem; | |
} | |
@include media(max-width 1200px) { | |
width: 700px; | |
} | |
} | |
*/ | |
$default-feature: max-width; | |
@mixin media($query: $feature $value) { | |
@if length($query) == 1 { | |
@media screen and ($default-feature: nth($query, 1)) { | |
@content; | |
} | |
} | |
@else { | |
$loop-to: length($query); | |
$media-query: 'screen and '; | |
@if length($query) % 2 != 0 { | |
$loop-to: $loop-to - 1; | |
} | |
$i: 1; | |
@while $i <= $loop-to { | |
$media-query: $media-query + '(' + nth($query, $i) + ': ' + nth($query, $i + 1) + ') '; | |
@if ($i + 1) != $loop-to { | |
$media-query: $media-query + 'and '; | |
} | |
$i: $i + 2; | |
} | |
@media #{$media-query} { | |
@content; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment