Skip to content

Instantly share code, notes, and snippets.

@justinryder
Created December 8, 2014 20:44
Show Gist options
  • Save justinryder/f211314728459b36f935 to your computer and use it in GitHub Desktop.
Save justinryder/f211314728459b36f935 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin media-query {
@media (max-width: 600px){
@content;
}
}
.modernizr-class {
.foo {
color: red;
}
.bar {
color: blue;
}
}
@include media-query {
.modernizr-class {
.foo {
color: green;
}
.bar {
color: black;
}
}
}
.modernizr-class .foo {
color: red;
}
.modernizr-class .bar {
color: blue;
}
@media (max-width: 600px) {
.modernizr-class .foo {
color: green;
}
.modernizr-class .bar {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment