Created
March 10, 2014 16:58
-
-
Save cimmanon/9469073 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.3.0) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin placeholder { | |
::-webkit-input-placeholder {@content} | |
:-moz-placeholder {@content} | |
::-moz-placeholder {@content} | |
:-ms-input-placeholder {@content} | |
} | |
@include placeholder { | |
font-style:italic; | |
color: white; | |
font-weight:100; | |
} |
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
::-webkit-input-placeholder { | |
font-style: italic; | |
color: white; | |
font-weight: 100; | |
} | |
:-moz-placeholder { | |
font-style: italic; | |
color: white; | |
font-weight: 100; | |
} | |
::-moz-placeholder { | |
font-style: italic; | |
color: white; | |
font-weight: 100; | |
} | |
:-ms-input-placeholder { | |
font-style: italic; | |
color: white; | |
font-weight: 100; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment