Last active
August 29, 2015 14:09
-
-
Save chanified/b7b3c6e0369f4be65cb3 to your computer and use it in GitHub Desktop.
Twitter Bootstrap 3.2 - CSS Media Queries
This file contains hidden or 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
/* Extra Small Devices, .visible-xs-* */ | |
@media (max-width: 767px) {} | |
/* Small Devices, .visible-sm-* */ | |
@media (min-width: 768px) and (max-width: 991px) {} | |
/* Medium Devices, .visible-md-* */ | |
@media (min-width: 992px) and (max-width: 1199px) {} | |
/* Large Devices, .visible-lg-* */ | |
@media (min-width: 1200px) {} | |
/* Min Widths*/ | |
/* Extra Small Devices + */ | |
@media (min-width: 767px) {} | |
/* Small Devices + */ | |
@media (min-width: 991px) {} | |
/* Medium Devices + */ | |
@media (min-width: 1199px) {} | |
/* Large Devices + */ | |
@media (min-width: 1200px) {} | |
/* Max Widths*/ | |
/* Extra Small Devices */ | |
@media (max-width: 767px) {} | |
/* Small Devices */ | |
@media (max-width: 991px) {} | |
/* Medium Devices */ | |
@media (max-width: 1199px) {} | |
/* Large Devices */ | |
@media (min-width: 1200px) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment