2014-07-28 13:35:53 +00:00
|
|
|
input[type="text"],
|
|
|
|
input[type="email"],
|
|
|
|
input[type="url"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="search"],
|
2015-12-08 16:28:48 +00:00
|
|
|
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"],
|
2014-07-28 13:35:53 +00:00
|
|
|
textarea {
|
|
|
|
color: $color__text-input;
|
|
|
|
border: 1px solid $color__border-input;
|
2014-09-14 17:26:29 +00:00
|
|
|
border-radius: 3px;
|
2016-05-26 18:46:59 +00:00
|
|
|
padding: 3px;
|
2016-07-11 04:25:11 +00:00
|
|
|
|
2015-02-10 05:11:59 +00:00
|
|
|
&:focus {
|
|
|
|
color: $color__text-input-focus;
|
|
|
|
}
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
2015-12-08 16:28:48 +00:00
|
|
|
select {
|
2015-12-09 15:54:16 +00:00
|
|
|
border: 1px solid $color__border-input;
|
2015-12-08 16:28:48 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 13:35:53 +00:00
|
|
|
textarea {
|
|
|
|
width: 100%;
|
2016-05-26 18:46:59 +00:00
|
|
|
}
|