Skip to content

Instantly share code, notes, and snippets.

@richlloydmiles
Created September 22, 2014 18:45
Show Gist options
  • Save richlloydmiles/c903a04be3d52f1130d0 to your computer and use it in GitHub Desktop.
Save richlloydmiles/c903a04be3d52f1130d0 to your computer and use it in GitHub Desktop.
Bootstrap Media Queries
/* Large desktop */
@media (min-width: 1200px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }
/* Landscape phones and down */
@media (max-width: 480px) { ... }
@richlloydmiles
Copy link
Author

@media (max-width: $screen-xs-max) { ... }
@media (min-width: $screen-sm-min) { ... }
@media (max-width: $screen-sm-max) { ... }
@media (min-width: $screen-md-min) { ... }
@media (max-width: $screen-md-max) { ... }
@media (min-width: $screen-lg-min) { ... }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment