Skip to content

Instantly share code, notes, and snippets.

@vipickering
Created August 17, 2013 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vipickering/6256052 to your computer and use it in GitHub Desktop.
Save vipickering/6256052 to your computer and use it in GitHub Desktop.
CSS: Responsive CSS Stub
/* Desktop
-------------------------------------------------- */
/* Tablet (Portrait)
-------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 959px) {
}
/* Phablet (Portrait)
-------------------------------------------------- */
@media only screen and (max-width: 767px) and (min-width: 321px) {
}
/* Mobile (Portrait)
-------------------------------------------------- */
@media only screen and (max-width: 320px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment