Created
April 25, 2012 16:51
-
-
Save jcsrb/2491249 to your computer and use it in GitHub Desktop.
Phisicaly size based mediaqueries
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
/** | |
* Phisicaly size based mediaqueries | |
*/ | |
body{ | |
display:block; | |
} | |
body:after{ | |
content:''; | |
font-size: 4em; | |
color: #fff; | |
} | |
@media only screen and (min-width: 33cm) and (max-width: 34cm) { | |
body{ | |
background-color: lightgreen; | |
} | |
body:after{ | |
content: '17inch 4:3 display' | |
} | |
} | |
@media only screen and (min-width: 44cm) and (max-width: 45cm) { | |
body{ | |
background-color: lightblue; | |
} | |
body:after{ | |
content: '23inch 16:10 display' | |
} | |
} | |
@media only screen and (min-width: 7.7in) and (max-width: 7.8in) { | |
body{ | |
background-color: #e24f43; | |
} | |
body:after{ | |
content: '10" tablet landscap'; | |
} | |
} | |
@media only screen and (min-width: 5.7in) and (max-width: 5.9in) { | |
body{ | |
background-color: #e24f43; | |
} | |
body:after{ | |
content: '10" tablet portrait'; | |
} | |
} |
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
<!-- content to be placed inside <body>…</body> --> |
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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment