-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBase Code
More file actions
113 lines (91 loc) · 2.48 KB
/
Base Code
File metadata and controls
113 lines (91 loc) · 2.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*** MAIN WRAPPER ***/
.gform_wrapper {
}
/*** FIELD STYLING ***/
.gform_wrapper ul.gform_fields li.gfield,
.gform_wrapper .top_label li.gfield.gf_right_half {
padding-right: 0;
}
input[type=text], textarea, input[type=password], [type="search"], [type="date"], [type="tel"], [type="email"] {
background: #ffffff;
border: solid 1px rgba(225,225,225,0.85);
border-radius: 0;
color: #4d4d4d !important;
font-weight: 400 !important;
padding: 15px 12px !important;
font: inherit;
}
.gform_wrapper .gform_body .gform_fields .gfield select {
background: #ffffff;
border: solid 1px rgba(225,225,225,0.85);
border-radius: 0;
color: #4d4d4d !important;
font-weight: 700 !important;
letter-spacing: 1px !important;
padding: 17px 15px !important;
}
/*** FIELD FOCUS STYLING ***/
input:focus,
input[type=text]:focus,
input.text:focus,
input.title:focus,
textarea:focus {
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .2);
border: solid 1px rgba(225,225,225,0.75);
}
/*** MESSAGE BOX TRANSITION ***/
.gform_wrapper textarea.medium {
margin-top: 6px;
height: 10em;
transition: height .3s ease-out;
}
/*** MESSAGE BOX FOCUS HEIGHT ***/
.gform_wrapper textarea.medium:focus {
height: 25em;
}
/*** BUTTON STYLING ***/
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
}
.gform_wrapper input[type=submit] {
cursor: pointer;
text-transform: capitalize;
font: inherit;
font-weight: 300;
padding: 12px 25px;
width: 150px;
border-radius: 0;
background: #137d7d;
color: #f7f7f7;
text-transform: uppercase;
letter-spacing: 1px;
border: none;
border-radius: 3px;
transition: box-shadow .2s ease-in-out;
}
/*** BUTTON HOVER STYLING ***/
.gform_wrapper input[type=submit]:hover {
background: #004D4D;
color: #fff;
box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}
.gform_wrapper .gform_body .gform_page_footer .gform_next_button {
cursor: pointer;
text-transform: capitalize;
font-weight: 300;
padding: 10px 12px;
border-radius: 0;
background: #137d7d;
color: #f7f7f7;
border: none;
border-radius: 3px;
transition: box-shadow .2s ease-in-out;
}
.gform_wrapper .gform_body .gform_page_footer .gform_next_button:hover {
background: #004D4D;
color: #fff;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
}
.gform_wrapper .gf_progressbar_wrapper .gf_progressbar .gf_progressbar_percentage {
background-color: #43b5ac;
}