Last active
July 21, 2016 07:43
-
-
Save storkontheroof/54af68dec7c9a3a584ead5e372aef35b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
body { | |
font-size: 1.2em; | |
} | |
@mixin not-really-a-mixin-but-damn-handy { | |
@media (min-screen-width: 20em) and (max-screen-width: 30em) { | |
@content; | |
} | |
@media (min-screen-width: 40em) and (max-screen-width: 50em) { | |
@content; | |
} | |
@media (min-screen-width: 60em) and (max-screen-width: 70em) { | |
@content; | |
} | |
} | |
@include not-really-a-mixin-but-damn-handy { | |
font-size: 1em; | |
} |
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
body { | |
font-size: 1.2em; | |
} | |
@media (min-screen-width: 20em) and (max-screen-width: 30em) { | |
font-size: 1em; | |
} | |
@media (min-screen-width: 40em) and (max-screen-width: 50em) { | |
font-size: 1em; | |
} | |
@media (min-screen-width: 60em) and (max-screen-width: 70em) { | |
font-size: 1em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment