scratch-www/src/components/forms/input.scss

39 lines
681 B
SCSS
Raw Normal View History

@import "../../colors";
2016-06-23 07:27:43 -04:00
@import "../../frameless";
2016-06-23 07:27:43 -04:00
$base-bg: $ui-light-gray;
$pass-bg: lighten($ui-aqua, 35%);
.row {
label {
font-weight: 500;
}
}
2015-09-21 09:18:00 -04:00
.input {
2016-06-23 07:27:43 -04:00
transition: all .5s ease;
margin: .75rem 0;
border: 1px solid $active-gray;
2015-09-24 19:27:50 -04:00
border-radius: 5px;
background-color: $base-bg;
2016-06-23 07:27:43 -04:00
padding: 0 1rem;
height: 3rem;
color: $type-gray;
2016-06-23 07:27:43 -04:00
font-size: .875rem;
2015-09-24 19:27:50 -04:00
&:focus {
2016-06-23 07:27:43 -04:00
transition: all .5s ease;
2015-09-24 19:27:50 -04:00
outline: none;
2016-06-23 07:27:43 -04:00
border: 1px solid $ui-blue;
}
2015-09-24 19:27:50 -04:00
&.fail {
2016-06-23 07:27:43 -04:00
border: 1px solid $ui-orange;
}
2015-09-24 19:27:50 -04:00
&.pass {
border: 1px solid $active-dark-gray;
background-color: $pass-bg;
}
2015-09-21 09:18:00 -04:00
}