123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- 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: 3px;
- &:focus {
- color: $color__text-input-focus;
- }
- }
- select {
- border: 1px solid $color__border-input;
- }
- 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"] {
- padding: 3px;
- }
- textarea {
- padding-left: 3px;
- width: 100%;
- }
|