Skip to content

Instantly share code, notes, and snippets.

@sinky
Created December 26, 2015 10:44
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 sinky/0dedb5b2289c6b81447b to your computer and use it in GitHub Desktop.
Save sinky/0dedb5b2289c6b81447b to your computer and use it in GitHub Desktop.
css media query boilerplate
/* Mobile first */
/* --- >= smartphones landscape --- */
@media screen and (min-width: 480px) {
}
/* --- >= tablets portrait --- */
@media screen and (min-width: 768px) {
}
/* --- >= tablets landscape --- */
@media screen and (min-width: 1024px) {
}
/* --- >= desktop --- */
@media screen and (min-width: 1180px) {
}
/* --- >= desktop big --- */
@media screen and (min-width: 1300px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment