2016-04-06 10:56:43 -04:00
|
|
|
@import "../../colors";
|
|
|
|
|
2016-06-23 07:27:43 -04:00
|
|
|
$base-bg: $ui-light-gray;
|
|
|
|
$focus-bg: lighten($ui-light-gray, 35%);
|
2016-04-06 10:56:43 -04:00
|
|
|
$fail-bg: lighten($ui-orange, 35%);
|
|
|
|
$pass-bg: lighten($ui-aqua, 35%);
|
|
|
|
|
|
|
|
.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;
|
|
|
|
background-color: $base-bg;
|
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;
|
|
|
|
border: 1px solid $active-dark-gray;
|
|
|
|
background-color: $focus-bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.fail {
|
|
|
|
border: 1px solid $active-dark-gray;
|
|
|
|
background-color: $fail-bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.pass {
|
|
|
|
border: 1px solid $active-dark-gray;
|
|
|
|
background-color: $pass-bg;
|
|
|
|
}
|
|
|
|
}
|