2016-04-06 10:56:43 -04:00
|
|
|
@import "../../colors";
|
|
|
|
|
|
|
|
.textarea {
|
|
|
|
transition: all 1s ease;
|
2016-06-23 07:27:43 -04:00
|
|
|
margin: .75rem 0;
|
2016-04-06 10:56:43 -04:00
|
|
|
border: 1px solid $active-gray;
|
|
|
|
border-radius: 5px;
|
2016-06-23 14:06:36 -04:00
|
|
|
background-color: $ui-light-gray;
|
2016-06-23 07:27:43 -04:00
|
|
|
padding: .75rem 1rem;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 15rem;
|
|
|
|
line-height: 1.75em;
|
2016-04-06 10:56:43 -04:00
|
|
|
color: $type-gray;
|
2016-06-23 07:27:43 -04:00
|
|
|
font-size: .875rem;
|
2016-04-06 10:56:43 -04:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
transition: all 1s ease;
|
|
|
|
outline: none;
|
2016-06-23 14:06:36 -04:00
|
|
|
border: 1px solid $ui-blue;
|
2016-04-06 10:56:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.fail {
|
2016-06-23 14:06:36 -04:00
|
|
|
border: 1px solid $ui-orange;
|
2016-04-06 10:56:43 -04:00
|
|
|
}
|
|
|
|
}
|