Last active
June 19, 2017 12:46
-
-
Save VinSpee/0d37600abb183a7bd3f3818bc6492c56 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
.c\:blue { | |
color: blue; | |
} | |
@media (--mq-xxs) { | |
.c\:blue\@xxs { | |
color: blue; | |
} | |
} | |
@media (--mq-xs) { | |
.c\:blue\@xs { | |
color: blue; | |
} | |
} | |
@media (--mq-sm) { | |
.c\:blue\@sm { | |
color: blue; | |
} | |
} | |
@media (--mq-md) { | |
.c\:blue\@md { | |
color: blue; | |
} | |
} | |
@media (--mq-lg) { | |
.c\:blue\@lg { | |
color: blue; | |
} | |
} | |
@media (--mq-xl) { | |
.c\:blue\@xl { | |
color: blue; | |
} | |
} | |
@media (--mq-xxl) { | |
.c\:blue\@xxl { | |
color: blue; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment