Last active
August 29, 2015 14:14
-
-
Save hilja/55ceae83548a61746be5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
//--------------------------------------// | |
// Media queries | |
//--------------------------------------// | |
$breakpoints: ( | |
"s": (min-width, 48em), | |
"m": (min-width, 50em), | |
"l": (min-width, 64em), | |
"xl": (min-width, 90em), | |
"xxl": (min-width, 105em) | |
) !default; | |
// Make the breakpoints | |
@mixin bp($breakpoint) { | |
$query: map-get($breakpoints, $breakpoint); | |
@if $query != null { | |
@media (#{nth($query, 1)}: #{nth($query, 2)}) { | |
@content; | |
} | |
} @else { | |
@warn "Unfortunately, no value could be retrieved from #{$breakpoint}. " | |
+ "Please make sure it is defined in `$breakpoints` map."; | |
} | |
} | |
//--------------------------------------// | |
// Here's the sauce, this jugs the BPs | |
// name (key) into an `:after` and the | |
// value to `:before` pseudo elements. | |
// Now, we can read that with JavaScript. | |
//--------------------------------------// | |
@mixin bp2js($default) { | |
// One of the BPs has to be the default, meaning that it's on when | |
// there's no BP affecting. In the min breakpoint mobile first approach, | |
// the default would be the smallest BP. | |
&:before { | |
$foo: map-get($breakpoints, $default); | |
display: none; | |
} | |
&:after { | |
content: '#{$default}'; | |
display: none; | |
} | |
@each $point, $dim in $breakpoints { | |
@if $default != $point { | |
@include bp(#{$point}) { | |
&:after { | |
content: '#{$point}'; | |
} | |
&:before { | |
content: '#{nth($dim, 2)}'; | |
} | |
} | |
} | |
} | |
@content; | |
} | |
// Test it out | |
body { | |
@include bp2js('s'); | |
} |
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
body:before { | |
display: none; | |
} | |
body:after { | |
content: "s"; | |
display: none; | |
} | |
@media (min-width: 50em) { | |
body:after { | |
content: "m"; | |
} | |
body:before { | |
content: "50em"; | |
} | |
} | |
@media (min-width: 64em) { | |
body:after { | |
content: "l"; | |
} | |
body:before { | |
content: "64em"; | |
} | |
} | |
@media (min-width: 90em) { | |
body:after { | |
content: "xl"; | |
} | |
body:before { | |
content: "90em"; | |
} | |
} | |
@media (min-width: 105em) { | |
body:after { | |
content: "xxl"; | |
} | |
body:before { | |
content: "105em"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment