Guest User

Untitled

a guest
Jul 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. input[type="text"], input[type="password"] {
  2. background: #eeeeee url('../images/input.png') repeat-x;
  3. border: 1px solid #c0c0c0;
  4. border-radius: 5px;
  5. -moz-border-radius: 5px;
  6. -webkit-border-radius: 5px;
  7. padding: 6px;
  8. font-size: 12pt;
  9. font-weight: bold;
  10. color: #8a8a8a;
  11. margin-bottom: 5px;
  12. }
  13.  
  14. input[type="text"]:hover, input[type="password"]:hover {
  15. background-position: 0 -90px;
  16. border: 1px solid #c2c2c2;
  17. color: #9a9a9a;
  18. }
  19. input[type="text"]:focus, input[type="password"]:focus {
  20. background-position: 0 -45px;
  21. border: 1px solid #acacac;
  22. color: #000;
  23. }
Add Comment
Please, Sign In to add comment