Last active
December 13, 2015 21:58
-
-
Save jrcryer/4980560 to your computer and use it in GitHub Desktop.
Responsive Bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Mobile landscape */ | |
@media screen and (min-width: 480px) { | |
} | |
/* Small tablet portrait */ | |
@media screen and (min-width: 600px) { | |
} | |
/* Tablet portrait */ | |
@media screen and (min-width: 768px) { | |
} | |
/* Small tablet landscape */ | |
@media screen and (min-width: 800px) { | |
} | |
/* Tablet landscape > */ | |
@media screen and (min-width: 1024px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment