36 lines
607 B
SCSS
36 lines
607 B
SCSS
|
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;
|
||
|
background-color: $color__background-input;
|
||
|
border: none;
|
||
|
border-radius: 0;
|
||
|
width: 100%;
|
||
|
padding: 0.3rem;
|
||
|
|
||
|
&:focus {
|
||
|
color: $color__text-input-focus;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
select {
|
||
|
border: 1px solid $color__border-input;
|
||
|
}
|
||
|
|
||
|
textarea {
|
||
|
width: 100%;
|
||
|
}
|