Created
October 28, 2018 14:37
-
-
Save web-crab/598950307aadd41bf0fb880b2db1538b to your computer and use it in GitHub Desktop.
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
placeholder(color) | |
&::-webkit-input-placeholder | |
color color | |
&:-moz-placeholder | |
color color | |
&::-moz-placeholder | |
color color | |
&:-ms-input-placeholder | |
color color | |
xs() | |
@media screen and (max-width: 567px) | |
{block} | |
sm() | |
@media screen and (max-width: 767px) | |
{block} | |
md() | |
@media screen and (max-width: 991px) | |
{block} | |
lg() | |
@media screen and (max-width: 1299px) | |
{block} | |
xl() | |
@media screen and (min-width: 1300px) | |
{block} | |
max($width) | |
@media (max-width $width) | |
{block} | |
min($width) | |
@media (min-width $width) | |
{block} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment