Skip to content

Instantly share code, notes, and snippets.

@web-crab
Created October 28, 2018 14:37
Show Gist options
  • Save web-crab/598950307aadd41bf0fb880b2db1538b to your computer and use it in GitHub Desktop.
Save web-crab/598950307aadd41bf0fb880b2db1538b to your computer and use it in GitHub Desktop.
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