Skip to content

Instantly share code, notes, and snippets.

@ryanemitchell
Created June 2, 2017 16:38
Show Gist options
  • Save ryanemitchell/70447fd073f6f90c6afb4b8ad27b0cc1 to your computer and use it in GitHub Desktop.
Save ryanemitchell/70447fd073f6f90c6afb4b8ad27b0cc1 to your computer and use it in GitHub Desktop.
My Media Queries
@media all and (min-width: 1920px) and (max-width: 2560px) { } //27" imac
@media all and (min-width: 1600px) and (max-width: 1920px) { }
@media all and (min-width: 1366px) and (max-width: 1600px) { }
@media all and (min-width: 1280px) and (max-width: 1366px) { }
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@media all and (min-width: 480px) and (max-width: 768px) { }
@media all and (max-width: 480px) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment