Created
November 12, 2014 19:22
-
-
Save adamsir/20d7bb1f59bc760f8afd to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// 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; | |
} | |
} |
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
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