Created
August 28, 2018 19:15
-
-
Save luisfelipe-dev/62fa351228cef75da5f1f0ac058c5a9a to your computer and use it in GitHub Desktop.
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
.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