1234567891011121314151617181920212223 |
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="submit"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- input[type="checkbox"],
- textarea {
- &:focus {
- outline: 1px dotted currentColor;
- }
- font-size: var(--wp--custom--font-size--normal);
- }
|