Skip to content

Instantly share code, notes, and snippets.

@jphase
Created October 15, 2014 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jphase/36d6f0d195e0966c7acb to your computer and use it in GitHub Desktop.
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
/* 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