Compile SASS to style.css (considering you already have installed compass I think)
sass --watch style.scss:../style.css
Compile SASS to style.css (considering you already have installed compass I think)
sass --watch style.scss:../style.css
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
Use it like
@include placeholder { color: white }