Created
July 27, 2012 20:05
-
-
Save adparadise/3190190 to your computer and use it in GitHub Desktop.
Responsive Layout 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
/*Mobile first:*/ | |
.container { width: 16em; } | |
/*Tablet in Portrait Orientation:*/ | |
.container { width: 32em; } | |
@media (max-width: 33em) { | |
.container { width: 16em; } | |
} | |
/*Full Experience:*/ | |
.container { width: 48em; } | |
@media (max-width: 43em) { | |
.container { width: 32em; } | |
} | |
@media (max-width: 33em) { | |
.container { width: 16em; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment