Guest User

Untitled

a guest
Dec 11th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. form input[type=text],
  2. form input[type=password],
  3. form input[type=email] {
  4. display: block;
  5. font-size: 12px;
  6. line-height: 42px;
  7. width: 266px;
  8. height: 39px;
  9. background: #e5e5e5;
  10. padding: 0 16px;
  11. border: 1px solid #e5e5e5;
  12. color: #999;
  13. -webkit-appearance: textfield;
  14. font-family: Arial, Helvetica, sans-serif;
  15. -webkit-transition: all .1s ease-in-out;
  16. -moz-transition: all .1s ease-in-out;
  17. transition: all .1s ease-in-out;
  18. }
  19. .isMozilla3-5 form input[type=text],
  20. .isMozilla3-5 form input[type=password],
  21. .isMozilla3-5 form input[type=email] {
  22. height: 27px;
  23. padding-top: 13px;
  24. }
  25. form input[type=text]:hover,
  26. form input[type=password]:hover,
  27. form input[type=email]:hover {
  28. }
  29. form input[type=text]:focus,
  30. form input[type=password]:focus,
  31. form input[type=email]:focus {
  32. color: #333;
  33. border-color: #ccc;
  34. background-color: #f0f0f0;
  35. }
Add Comment
Please, Sign In to add comment