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

42 lines
711 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;
.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-bottom: .75rem;
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 $ui-aqua;
}
/* IE10/11-specific style resets */
&::-ms-reveal, &::-ms-clear {
display: none;
}
2015-09-21 09:18:00 -04:00
}