Created
June 24, 2017 18:01
-
-
Save LoyEgor/638f016f807694df4132dc0818359855 to your computer and use it in GitHub Desktop.
media with nubers
This file contains 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
@max1200: ~"(max-width: 1199px)"; | |
@max992: ~"(max-width: 991px)"; | |
@max768: ~"(max-width: 767px)"; | |
@max320: ~"(max-width: 320px)"; | |
@min1200: ~"(min-width: 1200px)"; | |
@min992: ~"(min-width: 992px)"; | |
@min768: ~"(min-width: 768px)"; | |
@min320: ~"(min-width: 321px)"; | |
@992to1200: @min992 and @max1200; | |
@768to992: @min768 and @max992; | |
@768to1200: @min768 and @max1200; | |
@320to768: @min320 and @max768; | |
@320to992: @min320 and @max992; | |
@320to1200: @min320 and @max1200; | |
// @media @maxxs { | |
// param: val; | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment