1234567891011121314151617181920212223242526272829303132333435 |
- 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="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- color: $color__text-input;
- border: 1px solid $color__border-input;
- border-radius: 5px;
- padding: .5em;
- &:focus {
- color: $color__text-input-focus;
- border-color: $color__link;
- outline: none;
- }
- }
- select {
- border: 1px solid $color__border-input;
- }
- textarea {
- width: 100%;
- }
|