blob: 259beeb572ff22d9a53f77f66a5572a51e3600fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
@charset 'UTF-8';
.form-horizontal {
.modal-intro {
margin: -10px 0 30px;
}
.form__label {
font-size: 1.1em;
font-weight: 600;
padding-right: 3px;
text-align: left;
&.light {
color: $dark-gray;
font-size: 1.05em;
font-style: italic;
font-weight: normal;
padding-top: 2px;
}
}
.input__help {
@include opacity(.8);
color: inherit;
margin: 10px 0 0 10px;
word-break: break-word;
&.dark {
@include opacity(1);
}
&.error {
color: darken($red, 20%);
}
}
.form-control {
font-weight: normal;
}
.form-group {
margin-bottom: 25px;
&.less {
margin-bottom: 10px;
}
}
}
.help-block {
color: $dark-gray;
font-size: .95em;
margin: 10px 0 0;
}
.form-group {
&.form-group--small {
margin-bottom: 10px;
}
}
|