_forms.scss 620 B

1234567891011121314151617181920212223242526272829303132333435
  1. input[type="text"],
  2. input[type="email"],
  3. input[type="url"],
  4. input[type="password"],
  5. input[type="search"],
  6. input[type="number"],
  7. input[type="tel"],
  8. input[type="range"],
  9. input[type="date"],
  10. input[type="month"],
  11. input[type="week"],
  12. input[type="time"],
  13. input[type="datetime"],
  14. input[type="datetime-local"],
  15. input[type="color"],
  16. textarea {
  17. color: $color__text-input;
  18. border: 1px solid $color__border-input;
  19. border-radius: 5px;
  20. padding: .5em;
  21. &:focus {
  22. color: $color__text-input-focus;
  23. border-color: $color__link;
  24. outline: none;
  25. }
  26. }
  27. select {
  28. border: 1px solid $color__border-input;
  29. }
  30. textarea {
  31. width: 100%;
  32. }