Skip to content

Instantly share code, notes, and snippets.

@adparadise
Created July 27, 2012 20:05
Show Gist options
  • Save adparadise/3190190 to your computer and use it in GitHub Desktop.
Save adparadise/3190190 to your computer and use it in GitHub Desktop.
Responsive Layout example
/*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