Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created August 28, 2018 19:15
Show Gist options
  • Save luisfelipe-dev/62fa351228cef75da5f1f0ac058c5a9a to your computer and use it in GitHub Desktop.
Save luisfelipe-dev/62fa351228cef75da5f1f0ac058c5a9a to your computer and use it in GitHub Desktop.
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
/* BREAKPOINT 576px */
@media (min-width: 36em) {
.container {
max-width: 540px;
}
}
/* BREAKPOINT 768px */
@media (min-width: 48em) {
.container {
max-width: 720px;
}
}
/* BREAKPOINT 992px */
@media (min-width: 62em) {
.container {
max-width: 960px;
}
}
/* BREAKPOINT 1200px */
@media (min-width: 75em) {
.container {
max-width: 1140px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment