Skip to content

Instantly share code, notes, and snippets.

@webhasan
Forked from EmranAhmed/less-variable.md
Last active May 15, 2016 10:58
Show Gist options
  • Save webhasan/c522a21d5a9b0c216ce8 to your computer and use it in GitHub Desktop.
Save webhasan/c522a21d5a9b0c216ce8 to your computer and use it in GitHub Desktop.
media query
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment