blob: b49c5b2a358b1bab7c0cd82fd9e3061966a66c6e [file] [log] [blame]
Michael Daviscb8bb192017-02-09 15:45:13 -06001label, legend {
2 font-size:1em;
3 font-weight: 300;
4 margin: 0;
5 &.disabled {
6 color: $lightbg__grey;
7 }
8 .error {
9 font-size: .9em;
10 }
11}
12
13input[type='email'],
14input[type='number'],
15input[type='password'],
16input[type='search'],
17input[type='tel'],
18input[type='url'],
19input[type='text'],
20textarea {
21 border-radius: 0px;
Michael Davise15a9562017-03-03 14:30:24 -060022 border: 1px solid $lightgrey;
Michael Daviscb8bb192017-02-09 15:45:13 -060023 height: 3.1em;
Michael Daviscb8bb192017-02-09 15:45:13 -060024 margin: 0 0 1em 0;
Michael Davise15a9562017-03-03 14:30:24 -060025 background: $white;
26 box-shadow: 0 0 0;
27 transition: none !important;
Michael Daviscb8bb192017-02-09 15:45:13 -060028 &:focus {
29 border-color: $lightbg__accent;
Michael Davise15a9562017-03-03 14:30:24 -060030 border-bottom: 5px solid $lightbg__primary;
Michael Daviscb8bb192017-02-09 15:45:13 -060031 }
32 &:disabled, .disabled {
33 background: $field__disabled;
34 border: 1px solid $lightbg__grey;
35 }
36 &.input__error {
Michael Davis19475752017-02-23 18:30:23 -060037 border-color: $error-color;
Michael Daviscb8bb192017-02-09 15:45:13 -060038 }
39}
40
41textarea { padding: .2em;
42 height: auto;}
Iftekharul Islamf157d372017-03-08 11:11:27 -060043input[type="submit"], .submit {
Michael Daviscb8bb192017-02-09 15:45:13 -060044 margin: 1em 0;
45 width: 100%;
46}
47
48//Custom select
49select{
50 border-radius: 0px;
51 height:auto;
52 @include fastTransition-all;
53 @include bgImage__arrowDown-primary;
54 &:focus {
55 border-color: $lightbg__accent;
56 @include bgImage__arrowDown-accent;
57 box-shadow: 0 0 0;
58 }
59}