Skip to content

Instantly share code, notes, and snippets.

@maddesigns
Created May 1, 2014 08:25
Show Gist options
  • Save maddesigns/11447026 to your computer and use it in GitHub Desktop.
Save maddesigns/11447026 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.6)
// Compass (v1.0.0.alpha.18)
// Breakpoint (v)
// ----
@import "breakpoint";
$small: 24em;
$middle: 34em;
$pair: 34em 65em;
$large: 65em, 'no-query' true;
.text {
@include breakpoint($pair) {
color: red;
}
}
@media (min-width: 34em) and (max-width: 65em) {
.text {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment