Guest User

Untitled

a guest
Jul 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /* HTML
  2. <div id="strength_indicator" class="no_pass"></div>
  3. */
  4.  
  5. /* CSS */
  6. .no_pass {
  7. border-style: solid;
  8. border-width: 1px;
  9. background-color: white;
  10. }
  11.  
  12. .weak_pass {
  13. border-style: solid;
  14. border-width: 1px;
  15. background-color: red;
  16. }
  17.  
  18. .medium_pass {
  19. border-style: solid;
  20. border-width: 1px;
  21. background-color: yellow;
  22. }
  23.  
  24. .strong_pass {
  25. border-style: solid;
  26. border-width: 1px;
  27. background-color: green;
  28. }
Add Comment
Please, Sign In to add comment