Skip to content

Instantly share code, notes, and snippets.

@onocom
Created June 27, 2016 02:13
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 onocom/91431f3ad460265f7a7ec91c2a8ed353 to your computer and use it in GitHub Desktop.
Save onocom/91431f3ad460265f7a7ec91c2a8ed353 to your computer and use it in GitHub Desktop.
responsive for bootstrap
@charset "UTF-8";
/**
* responsive.css
*/
/**
* [lg]LARGE DEVICE Desktop
*/
@media (min-width: 1200px) {
}
/**
* [md]MEDIUM DEVICE Desktop
*/
@media (max-width: 1199px) {
}
/**
* [sm]SMALL DEVICE Tablet
*/
@media (max-width: 992px) {
}
/**
* [xs]EXTRA SMALL DEVICE Phone
*/
@media (max-width: 768px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment