Created
March 13, 2012 19:03
-
-
Save caycefischer/2030808 to your computer and use it in GitHub Desktop.
simple media query reporter
This file contains 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
/* | |
* simple media query reporter | |
* http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/a-basic-responsive-grid-plus-handy-css3-media-query-reporter/ | |
*/ | |
body:after { | |
content: "less than 320px"; | |
font-size: 300%; | |
font-weight: bold; | |
position: fixed; | |
bottom: 60px; | |
width: 100%; | |
text-align: center; | |
background-color: hsla(1,60%,40%,0.7); | |
color: #fff; | |
} | |
@media only screen and (min-width: 320px) { | |
body:after { | |
content: "320 to 480px"; | |
background-color: hsla(90,60%,40%,0.7); | |
} | |
} | |
@media only screen and (min-width: 480px) { | |
body:after { | |
content: "480 to 768px"; | |
background-color: hsla(180,60%,40%,0.7); | |
} | |
} | |
@media only screen and (min-width: 768px) { | |
body:after { | |
content: "768 to 1024px"; | |
background-color: hsla(270,60%,40%,0.7); | |
} | |
} | |
@media only screen and (min-width: 1024px) { | |
body:after { | |
content: "1024 and up"; | |
background-color: hsla(360,60%,40%,0.7); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment