mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-03 12:27:30 -05:00
d8e07ee7f6
so that it can include `label`. Also add some default styling to `label` in `.row`. Thanks @rschamp!
25 lines
502 B
SCSS
25 lines
502 B
SCSS
@import "../../colors";
|
|
|
|
.textarea {
|
|
transition: all 1s ease;
|
|
margin-bottom: .75rem;
|
|
border: 1px solid $active-gray;
|
|
border-radius: 5px;
|
|
background-color: $ui-light-gray;
|
|
padding: .75rem 1rem;
|
|
width: 100%;
|
|
min-height: 15rem;
|
|
line-height: 1.75em;
|
|
color: $type-gray;
|
|
font-size: .875rem;
|
|
|
|
&:focus {
|
|
transition: all 1s ease;
|
|
outline: none;
|
|
border: 1px solid $ui-blue;
|
|
}
|
|
|
|
&.fail {
|
|
border: 1px solid $ui-orange;
|
|
}
|
|
}
|