Skip to content

Instantly share code, notes, and snippets.

@juddlyon
Created June 18, 2015 23:15
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 juddlyon/dbeddc79d9711cde8e33 to your computer and use it in GitHub Desktop.
Save juddlyon/dbeddc79d9711cde8e33 to your computer and use it in GitHub Desktop.
PureCSS RWD Default Breakpoints
/* small (568px) */
@media screen and (min-width: 35.5em) {
}
/* medium (768px) */
@media screen and (min-width: 48em) {
}
/* large (1024px) */
@media screen and (min-width: 64em) {
}
/* extra large (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