This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-07-28 13:35:53 +00:00
|
|
|
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;
|
2014-09-14 17:26:29 +00:00
|
|
|
border-radius: 3px;
|
2014-07-28 13:35:53 +00:00
|
|
|
|
2015-02-10 05:11:59 +00:00
|
|
|
&:focus {
|
|
|
|
color: $color__text-input-focus;
|
|
|
|
}
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"],
|
|
|
|
input[type="email"],
|
|
|
|
input[type="url"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="search"] {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
padding-left: 3px;
|
|
|
|
width: 100%;
|
|
|
|
}
|