frontend.css
1.3 KB
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
.fl-input-group {
margin-bottom: 10px;
position: relative;
}
.fl-contact-form textarea,
.fl-contact-form input[type=text],
.fl-contact-form input[type=tel],
.fl-contact-form input[type=email] {
display: inline-block;
width: 100%;
}
.fl-contact-form textarea {
min-height: 130px;
}
.fl-contact-form .fl-contact-required {
font-style: italic;
font-size: 12px;
}
.fl-contact-form label {
display: inline-block;
margin-right: 10px;
}
.fl-contact-form .fl-contact-error {
color: #DD4420;
display: none;
font-size: 12px;
font-weight: lighter;
margin-top: 2px;
}
.fl-contact-form .fl-email .fl-contact-error {
margin-right: 10%;
}
.fl-contact-form .fl-error textarea,
.fl-contact-form .fl-error input[type=text],
.fl-contact-form .fl-error input[type=tel],
.fl-contact-form .fl-error input[type=email] {
border-color: #DD4420;
}
.fl-contact-form .fl-error .fl-contact-error {
display: inline-block;
}
.fl-contact-form .fl-send-error,
.fl-contact-form .fl-success,
.fl-contact-form .fl-success-none,
.fl-contact-form .fl-success-msg {
position: relative;
top: 5px;
}
.fl-contact-form .fl-success,
.fl-contact-form .fl-success-none,
.fl-contact-form .fl-success-msg {
color: #29BB41;
}
.fl-contact-form .fl-send-error {
color: #DD6420;
}
.fl-disabled {
opacity: 0.5;
}