Skip to content

Instantly share code, notes, and snippets.

@julzmon
Created October 17, 2014 12:34
Show Gist options
  • Save julzmon/5804e5fc44e241c4dac8 to your computer and use it in GitHub Desktop.
Save julzmon/5804e5fc44e241c4dac8 to your computer and use it in GitHub Desktop.
Bootstrap 3 custom container
@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