Last active
September 11, 2015 17:15
-
-
Save cesarkohl/26c15807ac1d8ce7fa0d to your computer and use it in GitHub Desktop.
css @media bootstrap
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
| /** | |
| * Media: Larger than | |
| */ | |
| @media (min-width: 1200px){ | |
| } | |
| @media (min-width: 992px){ | |
| } | |
| @media (min-width: 768px){ | |
| } | |
| @media (min-width: 480px){ | |
| } | |
| /** | |
| * Media: Smaller than | |
| */ | |
| @media (max-width: 1200px){ | |
| } | |
| @media (max-width: 992px){ | |
| } | |
| @media (max-width: 768px){ | |
| } | |
| @media (max-width: 480px){ | |
| } | |
| /** | |
| * Media: Specific widths | |
| */ | |
| @media screen and (min-width: 993px) and (max-width: 1199px) { | |
| } | |
| @media screen and (min-width: 769px) and (max-width: 992px) { | |
| } | |
| @media screen and (min-width: 481px) and (max-width: 768px) { | |
| } | |
| @media screen and (max-width: 480px) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment