Skip to content

Instantly share code, notes, and snippets.

@gubi
Created May 16, 2016 08:36
Show Gist options
  • Save gubi/f7b70eaf0a5e97d96c970a2840bdc486 to your computer and use it in GitHub Desktop.
Save gubi/f7b70eaf0a5e97d96c970a2840bdc486 to your computer and use it in GitHub Desktop.
Bootstrap 3 Media Queries
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
/* Less than mobile (col-xs) */
@media only screen and (min-width: 0px){
}
/* Custom, iPhone Retina (col-xs) */
@media only screen and (min-width: 320px){
}
/* Extra Small Devices, Phones (col-md) */
@media only screen and (min-width: 480px){
}
/* Small Devices, Tablets (col-sm) */
@media only screen and (min-width: 768px){
}
/* Medium Devices, Desktops (col-md) */
@media only screen and (min-width: 992px){
}
/* Large Devices, Wide Screens (col-lg) */
@media only screen and (min-width: 1200px){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment