Skip to content

Instantly share code, notes, and snippets.

@RStrydom
Created August 4, 2014 12:32
Show Gist options
  • Save RStrydom/500c8da97d7abe6a4a88 to your computer and use it in GitHub Desktop.
Save RStrydom/500c8da97d7abe6a4a88 to your computer and use it in GitHub Desktop.
Bootstrap Media Queries starter
/**
* Bootstrap Media Queries starter
*
* Move into each respective file
* lg.css, md.css, sm.css, xs.css
*
*/
/* Large devices */
@media (min-width: 1200px) {
}
/* Medium devices */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* Small devices */
@media (min-width: 768px) and (max-width: 991px) {
}
/* Extra small devices */
@media (max-width: 767px) {
}
/* Landscape 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