Skip to content

Instantly share code, notes, and snippets.

@storkontheroof
Last active July 21, 2016 07:43
Show Gist options
  • Save storkontheroof/54af68dec7c9a3a584ead5e372aef35b to your computer and use it in GitHub Desktop.
Save storkontheroof/54af68dec7c9a3a584ead5e372aef35b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
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