Last active
August 7, 2016 20:07
-
-
Save andyford/4328a1df48b0b311cbe85b99b31c54cb to your computer and use it in GitHub Desktop.
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[type="password"] { | |
| font-family: Verdana, Impact, serif; | |
| font-weight: bolder; | |
| letter-spacing: 0.1em; | |
| // reset for placeholders (if using them) | |
| // assumes '$font-sans' is the default font for your inputs | |
| &::-webkit-input-placeholder { | |
| font-family: $font-sans; | |
| font-weight: normal; | |
| letter-spacing: 0; | |
| } | |
| &::-moz-placeholder { | |
| font-family: $font-sans; | |
| font-weight: normal; | |
| letter-spacing: 0; | |
| } | |
| &:-ms-input-placeholder { | |
| font-family: $font-sans; | |
| font-weight: normal; | |
| letter-spacing: 0; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment