Skip to content

Instantly share code, notes, and snippets.

@joseluisq
Created June 26, 2014 05:39
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 joseluisq/28ef50f227307a8afbe4 to your computer and use it in GitHub Desktop.
Save joseluisq/28ef50f227307a8afbe4 to your computer and use it in GitHub Desktop.
CSS Media Queries Screen
/*
* Default Media Queries Screen
* Based on purecss.io
*/
/* Small Sreen / ≥ 568px */
@media screen and (max-width: 35.5em) {
}
/* Medium Sreen / ≥ 768px */
@media screen and (min-width: 48em) {
}
/* Large Sreen / ≥ 1024px */
@media screen and (min-width: 64em) {
}
/* Extra Large Sreen / ≥ 1280px */
@media screen and (min-width: 80em) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment