37 lines
667 B
SCSS
37 lines
667 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: $border__line;
|
|
border-radius: 0;
|
|
width: 100%;
|
|
padding: 0.3rem;
|
|
&:focus,&:focus-within,&:focus-visible {
|
|
color: $color__text-input-focus;
|
|
box-shadow: none;
|
|
outline: unset;
|
|
}
|
|
}
|
|
|
|
select {
|
|
border: $border__line;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
}
|