Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. /* изменение ширины всем стандартным текстовым полям ввода (type="text") */
  2. .registration-form input[type="text"] {
  3. width: 200px;
  4. }
  5. /* изменение ширины поля ввода пароля (type="password") */
  6. .registration-form input[type="password"] {
  7. width: 300px;
  8. }
  9. /* изменение шрифта при вводе электронной почты*/
  10. .registration-form input[type="email"]:focus {
  11. color: rgb(255, 0, 0);
  12. font-family: Geneva, Arial, Helvetica, sans-serif;
  13. }
  14. .registration-form input[type="submit"]:active {
  15. background-color: rgb(5, 143, 0);
  16. }
  17. .registration-form input[type="reset"]:active {
  18. background-color: rgb(255, 0, 0);
  19. }
  20. .gender-radio-select label:hover,
  21. .cousine-checkbox-select label:hover {
  22. border: 1px dashed rgb(240, 14, 14);
  23. }
  24. input[name="surname"],
  25. input[name="name"],
  26. input[name="father_name"] {
  27. text-transform: capitalize;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement