Created
June 17, 2014 08:50
-
-
Save Haraldson/48c45d77f3b4d9888083 to your computer and use it in GitHub Desktop.
Easter override with @media queries (Grunt Combine Media Queries example)
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 { | |
background: white; | |
} | |
@media (min-width: 800px) { | |
body { | |
background: black; | |
} | |
} |
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 { | |
background: yellow; | |
} | |
@media (min-width: 800px) { | |
body { | |
background: yellow; | |
} | |
} |
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 { | |
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