Created
August 30, 2016 13:13
-
-
Save wwwmarcos/0205e71798b2e9b1057c6166bd85b2d8 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
/** | |
* Slim container based on container of bootstrap | |
*/ | |
.container-slim { | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} | |
@media (min-width: 768px) { | |
.container-slim { | |
width: 600px; | |
} | |
} | |
@media (min-width: 992px) { | |
.container-slim { | |
width: 700px; | |
} | |
} | |
@media (min-width: 1200px) { | |
.container-slim { | |
width: 750px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment