Last active
March 16, 2016 18:27
-
-
Save Jhony0311/e980f1185f2f81680b57 to your computer and use it in GitHub Desktop.
An opinionated media query string setting
This file contains hidden or 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
// Media query ranges | |
$small-range: (0em, 40em); | |
$medium-range: (40.063em, 63.938em); | |
$large-range: (64em, 89.938em); | |
$xlarge-range: (90em, 119.938em); | |
$xxlarge-range: (120em, 99999999em); | |
// Media query operators | |
$screen: "only screen"; | |
$landscape: " and (orientation: landscape)"; | |
$portrait: " and (orientation: portrait)"; |
This file contains hidden or 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
import "settings.scss"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment