Skip to content

Instantly share code, notes, and snippets.

@adamsir
Created November 12, 2014 19:22
Show Gist options
  • Save adamsir/20d7bb1f59bc760f8afd to your computer and use it in GitHub Desktop.
Save adamsir/20d7bb1f59bc760f8afd to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.0.1)
// ----
// Mixin for placeholders
@mixin placeholder {
&::-moz-placeholder { @content }
&:-ms-input-placeholder { @content }
&::-webkit-input-placeholder { @content }
}
input {
@include placeholder {
font-weight: 400;
}
}
input::-moz-placeholder {
font-weight: 400; }
input:-ms-input-placeholder {
font-weight: 400; }
input::-webkit-input-placeholder {
font-weight: 400; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment