_forms.scss 483 B

1234567891011121314151617181920212223
  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="submit"],
  14. input[type="datetime"],
  15. input[type="datetime-local"],
  16. input[type="color"],
  17. input[type="checkbox"],
  18. textarea {
  19. &:focus {
  20. outline: 1px dotted currentColor;
  21. }
  22. font-size: var(--wp--custom--font-size--normal);
  23. }