Advertisement
Guest User

Untitled

a guest
Jun 11th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
BOO 1.31 KB | None | 0 0
  1. .password {
  2.     font-family: Verdana, Arial, Helvetica, sans-serif;
  3.     font-size: 10px;
  4.     color: #555;
  5.     background-color: #f6f6f6;
  6.     border: 1px solid #ccc;
  7. }
  8. .password-meter {
  9.     position:relative;
  10.     width: 180px;
  11. }
  12. .password-meter-message {
  13.     text-align: right;
  14.     font-weight: bold;
  15.     color: #676767;
  16. }
  17. .password-meter-bg, .password-meter-bar {
  18.     height: 4px;
  19. }
  20. .password-meter-bg {
  21.     top: 8px;
  22.     background: #e0e0e0;
  23. }
  24.  
  25. .password-meter-message-very-weak {
  26.     color: #aa0033;
  27. }
  28. .password-meter-message-weak {
  29.     color: #f5ac00;
  30. }
  31. .password-meter-message-good {
  32.     color: #6699cc;
  33. }
  34. .password-meter-message-strong {
  35.     color: #008000;
  36. }
  37.  
  38. .password-meter-bg .password-meter-very-weak {
  39.     background: #aa0033;
  40.     width: 30px;
  41. }
  42. .password-meter-bg .password-meter-weak {
  43.     background: #f5ac00;
  44.     width: 60px;
  45. }
  46. .password-meter-bg .password-meter-good {
  47.     background: #6699cc;
  48.     width: 135px;
  49. }
  50. .password-meter-bg .password-meter-strong {
  51.     background: #008000;
  52.     width: 180px;
  53. }
  54. #inputform label.error {
  55.   background:url(../images/unchecked.gif) no-repeat 0px 0px;
  56.   padding-left: 16px;
  57.   padding-bottom: 2px;
  58.   font-weight: bold;
  59.   color: #EA5200;
  60. }
  61. #inputform label.checked {
  62.   background:url(../images/checked.gif) no-repeat 0px 0px;
  63. }
  64. .unavailable {
  65.     font-weight: bold;
  66.     color: red;
  67.     display:inline-block;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement