Created
October 15, 2014 19:34
-
-
Save jphase/36d6f0d195e0966c7acb to your computer and use it in GitHub Desktop.
Example CSS for registration form on https://github.com/jphase/wordpress-custom-login-register
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
/* Registration Form */ | |
#registerform p { | |
margin: 10px 0; | |
} | |
#password-strength, | |
#username-check { | |
color: #fff; | |
display: block; | |
text-align: center; | |
margin: 0 0 20px; | |
} | |
#registerform .bad, | |
#registerform .good, | |
#registerform .strong, | |
#registerform .short { | |
padding: 4px; | |
} | |
#registerform .short { | |
background: #A02D00; | |
} | |
#registerform .bad { | |
background: #A07A00; | |
} | |
#registerform .good { | |
background: #86A000; | |
} | |
#registerform .strong { | |
background: #00a084; | |
} | |
#wp-submit.disabled { | |
background: #ddd; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment