forked from mirror/_s
32 lines
571 B
SCSS
32 lines
571 B
SCSS
input[type="text"],
|
|
input[type="email"],
|
|
input[type="url"],
|
|
input[type="password"],
|
|
input[type="search"],
|
|
textarea {
|
|
color: $color__text-input;
|
|
border: 1px solid $color__border-input;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
input[type="text"]:focus,
|
|
input[type="email"]:focus,
|
|
input[type="url"]:focus,
|
|
input[type="password"]:focus,
|
|
input[type="search"]:focus,
|
|
textarea:focus {
|
|
color: $color__text-input-focus;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="email"],
|
|
input[type="url"],
|
|
input[type="password"],
|
|
input[type="search"] {
|
|
padding: 3px;
|
|
}
|
|
|
|
textarea {
|
|
padding-left: 3px;
|
|
width: 100%;
|
|
} |