Skip to content

Instantly share code, notes, and snippets.

@Haraldson
Created June 17, 2014 08:50
Show Gist options
  • Save Haraldson/48c45d77f3b4d9888083 to your computer and use it in GitHub Desktop.
Save Haraldson/48c45d77f3b4d9888083 to your computer and use it in GitHub Desktop.
Easter override with @media queries (Grunt Combine Media Queries example)
body {
background: white;
}
@media (min-width: 800px) {
body {
background: black;
}
}
body {
background: yellow;
}
@media (min-width: 800px) {
body {
background: yellow;
}
}
body {
background: white;
}
body {
background: yellow;
}
@media (min-width: 800px) {
body {
background: black;
}
body {
background: yellow;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment