Last active
November 9, 2016 18:17
-
-
Save lelandsmith/e02a004267af1a6bf7d994f1765455e4 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
@mobile-max: ~"only screen and (max-width: 550px)"; | |
@tablet: ~"only screen and (min-width: 768px) and (max-width: 991px)"; | |
@tablet-max: ~"only screen and (max-width: 767px)"; | |
@tablet-min: ~"only screen and (min-width: 768px)"; | |
@desktop: ~"only screen and (min-width: 992px) and (max-width: 1199px)"; | |
@desktop-min: ~"only screen and (min-width: 992px)"; | |
@desktop-max: ~"only screen and (max-width: 991px)"; | |
@desktop-11-min: ~"only screen and (min-width: 1100px)"; | |
@desktop-11-max: ~"only screen and (max-width: 1100px)"; | |
@desktop-xl-min: ~"only screen and (min-width: 1200px)"; | |
@desktop-xl-max: ~"only screen and (max-width: 1200px)"; | |
@desktop-xxl-min: ~"only screen and (min-width: 1400px)"; | |
@desktop-xxl-max: ~"only screen and (max-width: 1400px)"; | |
.left_side { | |
padding-bottom: 30px; | |
@media @desktop-max { | |
// This will activate delcarations within.left_side at max-width: 991px | |
padding-bottom: 15px; | |
margin-bottom: 0; | |
} | |
ul { | |
@media @desktop-max { | |
display: table; | |
} | |
li { | |
margin-bottom: 30px; | |
@media @desktop-max { | |
margin-bottom: 20px; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment