Created
October 17, 2014 12:34
-
-
Save julzmon/5804e5fc44e241c4dac8 to your computer and use it in GitHub Desktop.
Bootstrap 3 custom container
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 (min-width: 768px) { | |
.container-small { | |
width: 300px; | |
} | |
.container-large { | |
width: 970px; | |
} | |
} | |
@media (min-width: 992px) { | |
.container-small { | |
width: 500px; | |
} | |
.container-large { | |
width: 1170px; | |
} | |
} | |
@media (min-width: 1200px) { | |
.container-small { | |
width: 700px; | |
} | |
.container-large { | |
width: 1500px; | |
} | |
} | |
.container-small, .container-large { | |
max-width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment