Skip to content

Instantly share code, notes, and snippets.

@MuratOrs
Created March 11, 2016 01:46
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 MuratOrs/786c4fe7e116a9580e92 to your computer and use it in GitHub Desktop.
Save MuratOrs/786c4fe7e116a9580e92 to your computer and use it in GitHub Desktop.
Media Queries
/*========== Desktop First Method ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Small Devices, Tablets */
@media screen and (max-width: 800px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment