Created
July 11, 2012 18:02
-
-
Save criography/3092058 to your computer and use it in GitHub Desktop.
Fuxed Up Media Queries
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
| /** | |
| * Fuxed Up Media Queries | |
| */ | |
| body, | |
| html{ | |
| padding:0; | |
| border:0; | |
| margin:0; | |
| height:300%; | |
| } | |
| #div{ | |
| position:absolute; | |
| width:1024px; | |
| height:100px; | |
| background:#000; | |
| } | |
| @media only screen and (min-width: 320px){ | |
| #div{ | |
| background:#444; | |
| } | |
| } | |
| @media only screen and (min-width: 480px){ | |
| #div{ | |
| background:#888; | |
| } | |
| } | |
| @media only screen and (min-width: 768px){ | |
| #div{ | |
| background:#bbb; | |
| } | |
| } | |
| @media only screen and (min-width: 1024px){ | |
| #div{ | |
| background:#eee; | |
| } | |
| } |
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> --> | |
| <div id="div"></div> |
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":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment