Skip to content

Instantly share code, notes, and snippets.

@bchetty
Created May 24, 2016 16:49
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 bchetty/ca0ca96b856c32e6fdd3321d8b168da8 to your computer and use it in GitHub Desktop.
Save bchetty/ca0ca96b856c32e6fdd3321d8b168da8 to your computer and use it in GitHub Desktop.
BS3 MediaQueries Template
/* Large desktops and laptops */
@media (min-width: 1200px) {
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
}
/* Portrait phones and smaller */
@media (max-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment