This repository was archived by the owner on Aug 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathformbuilder.css
More file actions
183 lines (154 loc) · 2.94 KB
/
formbuilder.css
File metadata and controls
183 lines (154 loc) · 2.94 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* Move down content because we have a fixed navbar that is 50px tall */
body {
margin: 0;
font-family: "proxima-nova", "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333333;
background-color: #ededeb;
}
.jumbotron {
margin-top: -20px;
background-color: #fff;
}
#field-list.affix-top {
position: static;
}
@media (min-width: 768px) {
#field-list.affix, #field-list.affix-top {
width:186px;
}
}
@media (min-width: 970px) {
#field-list.affix, #field-list.affix-top {
width:243px;
}
}
@media (min-width: 1200px) {
#field-list.affix, #field-list.affix-top {
width:291px;
}
}
#field-list {
list-style: outside none none;
margin: 0px;
padding: 0px;
}
#field-list .optionTitle {
background: none repeat scroll 0% 0% #FAFAFA;
border-bottom: 2px solid #EEE;
border-top: 1px solid #EEE;
color: #999;
font: 1.2em "jubilat";
padding: 10px;
}
#field-list ul li {
margin: 0px;
padding: 10px;
border-bottom: 1px solid #EEE;
font-size: 1.15em;
cursor: grab;
}
#field-list ul li:hover {
background: none repeat scroll 0% 0% #FAFAFA;
cursor: pointer;
}
#field-list ul {
background: none repeat scroll 0% 0% #FFF;
margin: 0px;
padding: 0px;
list-style: outside none none;
}
#elements li {
cursor: pointer;
}
#form-container, #form-viewer-container {
background: none repeat scroll 0% 0% #FFF;
}
#form-container {
margin: 0;
padding: 0;
}
#form-container header {
background: none repeat scroll 0% 0% #FAFAFA;
border-bottom: 1px solid #EEE;
padding: 15px;
height: 65px;
}
#form-container header a.btn {
margin-right: 5px;
}
#form-editor-elements, #form-viewer-elements {
padding: 15px;
}
#form-viewer-elements {
padding-bottom: 30px;
}
.form-editor-element {
position: relative;
}
.form-editor-element:hover {
background: none repeat scroll 0% 0% #FAFAFA;
cursor: pointer;
}
.form-editor-element .popover {
display: block !important;
min-height: 150px;
top: -40px;
left: -205px;
}
.form-editor-element .row {
padding: 20px;
}
.form-editor-element a.delete-link {
display: none;
}
.form-editor-element:hover .delete-link {
display: inline;
cursor: pointer;
}
.right {
text-align: right;
}
.center {
text-align: center;
}
ol {
list-style-type: none;
}
ol li {
margin: 5px;
}
.spin {
-webkit-animation: spin .5s infinite linear;
-moz-animation: spin .5s infinite linear;
-o-animation: spin .5s infinite linear;
animation: spin .5s infinite linear;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%; /* IE 9 */
}
@-moz-keyframes spin {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}