Skip to content

Instantly share code, notes, and snippets.

@emrekose26
Created October 18, 2015 12:25
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 emrekose26/b1120abcba3ddb589245 to your computer and use it in GitHub Desktop.
Save emrekose26/b1120abcba3ddb589245 to your computer and use it in GitHub Desktop.
/* Large devices */
@media screen and (min-width: 1200px){
}
/* Laptops */
@media screen and (min-width: 992px) and (max-width: 1199px){
}
/* Phablets */
@media screen and (min-width: 768px) and (max-width: 991px){
}
/* Tablets */
@media screen and (max-width: 767px){
}
/* Phones */
@media screen and (max-width: 480px){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment