This repository has been archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
jquery-multi-step-form.css
118 lines (115 loc) · 2.35 KB
/
jquery-multi-step-form.css
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
114
115
116
117
#multistepform {
overflow:auto;
width:100%;
height:100%;
}
#multistepform .bg {
width:100%;
height:100%;
background: url(msform_overlay.png);
position: absolute;
z-index:-5;
}
#multistepform .close {
background-image: url(msform_sprite.png);
position: absolute;
top: 10px;
right: 10px;
width: 36px;
height: 36px;
cursor: pointer;
z-index: 10000;
}
#multistepform-container {
max-width: 800px;
top:50px;
margin: 0px auto;
text-align: center;
position: relative;
}
#multistepform-container .form {
background: white;
border: 0 none;
border-radius: 8px;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
padding: 20px 30px;
width: 90%;
margin: 0 5%;
box-sizing: border-box;
position: absolute;
background: #fff url(footer-bg.png) 0px 100% repeat-x;
}
#multistepform-container .form:not(:first-of-type) {
display: none;
}
.fs-title {
font-size: 15px;
text-transform: uppercase;
color: #2C3E50;
margin-bottom: 10px;
}
.fs-subtitle {
font-weight: normal;
font-size: 13px;
color: #666;
margin-bottom: 20px;
}
#multistepform-progressbar {
margin-bottom: 10px;
overflow: hidden;
counter-reset: step;
text-align:center;
}
#multistepform-progressbar li {
list-style-type: none;
color: white;
text-transform: uppercase;
font-size: 11px;
padding: 0 15px;
display:inline-block;
position: relative;
margin: 0 !important;
padding-bottom: 15px;
}
#multistepform-progressbar li:before {
content: counter(step);
counter-increment: step;
width: 24px;
display: block;
font-size: 12px;
color: #333;
background: white;
border-radius: 12px;
margin: 0 auto 5px auto;
line-height: 24px;
}
#multistepform-progressbar li.active:before, #multistepform-progressbar li.active:after{
background: #27AE60;
color: white;
}
#multistepform input, #multistepform textarea {
padding: 15px;
border: 1px solid #ccc;
border-radius: 3px;
margin-bottom: 10px;
width: 100%;
box-sizing: border-box;
font-family: montserrat;
color: #2C3E50;
font-size: 13px;
}
/*buttons*/
#multistepform .button {
width: 100px;
background: #27AE60;
font-weight: bold;
color: white;
border: 0 none;
border-radius: 1px;
cursor: pointer;
padding: 10px 5px;
margin: 10px 5px;
}
#multistepform .button:hover, #msform .button:focus {
box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}