zitgit 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +94 -0
- data/Guardfile +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/bin/zitgit +4 -0
- data/lib/zitgit/version.rb +3 -0
- data/lib/zitgit.rb +57 -0
- data/public/coffee/application.coffee +54 -0
- data/public/css/app.css +4071 -0
- data/public/images/loader.gif +0 -0
- data/public/js/application.js +69 -0
- data/public/js/jquery.js +5 -0
- data/public/js/jquery.nicescroll.js +111 -0
- data/public/scss/app.scss +155 -0
- data/public/scss/foundation/foundation/_variables.scss +1037 -0
- data/public/scss/foundation/foundation/components/_alert-boxes.scss +106 -0
- data/public/scss/foundation/foundation/components/_block-grid.scss +70 -0
- data/public/scss/foundation/foundation/components/_breadcrumbs.scss +124 -0
- data/public/scss/foundation/foundation/components/_button-groups.scss +88 -0
- data/public/scss/foundation/foundation/components/_buttons.scss +226 -0
- data/public/scss/foundation/foundation/components/_clearing.scss +211 -0
- data/public/scss/foundation/foundation/components/_custom-forms.scss +240 -0
- data/public/scss/foundation/foundation/components/_dropdown-buttons.scss +114 -0
- data/public/scss/foundation/foundation/components/_dropdown.scss +149 -0
- data/public/scss/foundation/foundation/components/_flex-video.scss +45 -0
- data/public/scss/foundation/foundation/components/_forms.scss +348 -0
- data/public/scss/foundation/foundation/components/_global.scss +267 -0
- data/public/scss/foundation/foundation/components/_grid.scss +184 -0
- data/public/scss/foundation/foundation/components/_inline-lists.scss +52 -0
- data/public/scss/foundation/foundation/components/_joyride.scss +208 -0
- data/public/scss/foundation/foundation/components/_keystrokes.scss +56 -0
- data/public/scss/foundation/foundation/components/_labels.scss +84 -0
- data/public/scss/foundation/foundation/components/_magellan.scss +21 -0
- data/public/scss/foundation/foundation/components/_orbit.scss +207 -0
- data/public/scss/foundation/foundation/components/_pagination.scss +99 -0
- data/public/scss/foundation/foundation/components/_panels.scss +76 -0
- data/public/scss/foundation/foundation/components/_pricing-tables.scss +130 -0
- data/public/scss/foundation/foundation/components/_progress-bars.scss +70 -0
- data/public/scss/foundation/foundation/components/_reveal.scss +131 -0
- data/public/scss/foundation/foundation/components/_section.scss +303 -0
- data/public/scss/foundation/foundation/components/_side-nav.scss +68 -0
- data/public/scss/foundation/foundation/components/_split-buttons.scss +159 -0
- data/public/scss/foundation/foundation/components/_sub-nav.scss +67 -0
- data/public/scss/foundation/foundation/components/_switch.scss +249 -0
- data/public/scss/foundation/foundation/components/_tables.scss +80 -0
- data/public/scss/foundation/foundation/components/_thumbs.scss +47 -0
- data/public/scss/foundation/foundation/components/_tooltips.scss +113 -0
- data/public/scss/foundation/foundation/components/_top-bar.scss +462 -0
- data/public/scss/foundation/foundation/components/_type.scss +422 -0
- data/public/scss/foundation/foundation/components/_visibility.scss +320 -0
- data/public/scss/foundation/foundation.scss +46 -0
- data/public/scss/foundation/normalize.scss +402 -0
- data/views/branch.slim +1 -0
- data/views/commits/detail.slim +12 -0
- data/views/commits/labels.slim +9 -0
- data/views/commits/list.slim +22 -0
- data/views/diffs/list.slim +39 -0
- data/views/index.slim +36 -0
- data/views/layout.slim +9 -0
- data/views/refs/dropdown.slim +3 -0
- data/zitgit.gemspec +30 -0
- metadata +239 -0
data/public/css/app.css
ADDED
@@ -0,0 +1,4071 @@
|
|
1
|
+
*,
|
2
|
+
*:before,
|
3
|
+
*:after {
|
4
|
+
-moz-box-sizing: border-box;
|
5
|
+
-webkit-box-sizing: border-box;
|
6
|
+
box-sizing: border-box; }
|
7
|
+
|
8
|
+
html,
|
9
|
+
body {
|
10
|
+
font-size: 100%; }
|
11
|
+
|
12
|
+
body {
|
13
|
+
background: white;
|
14
|
+
color: #222222;
|
15
|
+
padding: 0;
|
16
|
+
margin: 0;
|
17
|
+
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
18
|
+
font-weight: normal;
|
19
|
+
font-style: normal;
|
20
|
+
line-height: 1;
|
21
|
+
position: relative; }
|
22
|
+
|
23
|
+
a:focus {
|
24
|
+
outline: none; }
|
25
|
+
|
26
|
+
img,
|
27
|
+
object,
|
28
|
+
embed {
|
29
|
+
max-width: 100%;
|
30
|
+
height: auto; }
|
31
|
+
|
32
|
+
object,
|
33
|
+
embed {
|
34
|
+
height: 100%; }
|
35
|
+
|
36
|
+
img {
|
37
|
+
-ms-interpolation-mode: bicubic; }
|
38
|
+
|
39
|
+
#map_canvas img,
|
40
|
+
#map_canvas embed,
|
41
|
+
#map_canvas object,
|
42
|
+
.map_canvas img,
|
43
|
+
.map_canvas embed,
|
44
|
+
.map_canvas object {
|
45
|
+
max-width: none !important; }
|
46
|
+
|
47
|
+
.left {
|
48
|
+
float: left !important; }
|
49
|
+
|
50
|
+
.right {
|
51
|
+
float: right !important; }
|
52
|
+
|
53
|
+
.text-left {
|
54
|
+
text-align: left !important; }
|
55
|
+
|
56
|
+
.text-right {
|
57
|
+
text-align: right !important; }
|
58
|
+
|
59
|
+
.text-center {
|
60
|
+
text-align: center !important; }
|
61
|
+
|
62
|
+
.text-justify {
|
63
|
+
text-align: justify !important; }
|
64
|
+
|
65
|
+
.hide {
|
66
|
+
display: none; }
|
67
|
+
|
68
|
+
.antialiased {
|
69
|
+
-webkit-font-smoothing: antialiased; }
|
70
|
+
|
71
|
+
img {
|
72
|
+
display: inline-block; }
|
73
|
+
|
74
|
+
textarea {
|
75
|
+
height: auto;
|
76
|
+
min-height: 50px; }
|
77
|
+
|
78
|
+
select {
|
79
|
+
width: 100%; }
|
80
|
+
|
81
|
+
/* Grid HTML Classes */
|
82
|
+
.row {
|
83
|
+
width: 100%;
|
84
|
+
margin-left: auto;
|
85
|
+
margin-right: auto;
|
86
|
+
margin-top: 0;
|
87
|
+
margin-bottom: 0;
|
88
|
+
max-width: 62.5em;
|
89
|
+
*zoom: 1; }
|
90
|
+
.row:before, .row:after {
|
91
|
+
content: " ";
|
92
|
+
display: table; }
|
93
|
+
.row:after {
|
94
|
+
clear: both; }
|
95
|
+
.row.collapse .column,
|
96
|
+
.row.collapse .columns {
|
97
|
+
position: relative;
|
98
|
+
padding-left: 0;
|
99
|
+
padding-right: 0;
|
100
|
+
float: left; }
|
101
|
+
.row .row {
|
102
|
+
width: auto;
|
103
|
+
margin-left: -0.9375em;
|
104
|
+
margin-right: -0.9375em;
|
105
|
+
margin-top: 0;
|
106
|
+
margin-bottom: 0;
|
107
|
+
max-width: none;
|
108
|
+
*zoom: 1; }
|
109
|
+
.row .row:before, .row .row:after {
|
110
|
+
content: " ";
|
111
|
+
display: table; }
|
112
|
+
.row .row:after {
|
113
|
+
clear: both; }
|
114
|
+
.row .row.collapse {
|
115
|
+
width: auto;
|
116
|
+
margin: 0;
|
117
|
+
max-width: none;
|
118
|
+
*zoom: 1; }
|
119
|
+
.row .row.collapse:before, .row .row.collapse:after {
|
120
|
+
content: " ";
|
121
|
+
display: table; }
|
122
|
+
.row .row.collapse:after {
|
123
|
+
clear: both; }
|
124
|
+
|
125
|
+
.column,
|
126
|
+
.columns {
|
127
|
+
position: relative;
|
128
|
+
padding-left: 0.9375em;
|
129
|
+
padding-right: 0.9375em;
|
130
|
+
width: 100%;
|
131
|
+
float: left; }
|
132
|
+
|
133
|
+
@media only screen {
|
134
|
+
.column,
|
135
|
+
.columns {
|
136
|
+
position: relative;
|
137
|
+
padding-left: 0.9375em;
|
138
|
+
padding-right: 0.9375em;
|
139
|
+
float: left; }
|
140
|
+
|
141
|
+
.small-1 {
|
142
|
+
position: relative;
|
143
|
+
width: 8.33333%; }
|
144
|
+
|
145
|
+
.small-2 {
|
146
|
+
position: relative;
|
147
|
+
width: 16.66667%; }
|
148
|
+
|
149
|
+
.small-3 {
|
150
|
+
position: relative;
|
151
|
+
width: 25%; }
|
152
|
+
|
153
|
+
.small-4 {
|
154
|
+
position: relative;
|
155
|
+
width: 33.33333%; }
|
156
|
+
|
157
|
+
.small-5 {
|
158
|
+
position: relative;
|
159
|
+
width: 41.66667%; }
|
160
|
+
|
161
|
+
.small-6 {
|
162
|
+
position: relative;
|
163
|
+
width: 50%; }
|
164
|
+
|
165
|
+
.small-7 {
|
166
|
+
position: relative;
|
167
|
+
width: 58.33333%; }
|
168
|
+
|
169
|
+
.small-8 {
|
170
|
+
position: relative;
|
171
|
+
width: 66.66667%; }
|
172
|
+
|
173
|
+
.small-9 {
|
174
|
+
position: relative;
|
175
|
+
width: 75%; }
|
176
|
+
|
177
|
+
.small-10 {
|
178
|
+
position: relative;
|
179
|
+
width: 83.33333%; }
|
180
|
+
|
181
|
+
.small-11 {
|
182
|
+
position: relative;
|
183
|
+
width: 91.66667%; }
|
184
|
+
|
185
|
+
.small-12 {
|
186
|
+
position: relative;
|
187
|
+
width: 100%; }
|
188
|
+
|
189
|
+
.small-offset-1 {
|
190
|
+
position: relative;
|
191
|
+
margin-left: 8.33333%; }
|
192
|
+
|
193
|
+
.small-offset-2 {
|
194
|
+
position: relative;
|
195
|
+
margin-left: 16.66667%; }
|
196
|
+
|
197
|
+
.small-offset-3 {
|
198
|
+
position: relative;
|
199
|
+
margin-left: 25%; }
|
200
|
+
|
201
|
+
.small-offset-4 {
|
202
|
+
position: relative;
|
203
|
+
margin-left: 33.33333%; }
|
204
|
+
|
205
|
+
.small-offset-5 {
|
206
|
+
position: relative;
|
207
|
+
margin-left: 41.66667%; }
|
208
|
+
|
209
|
+
.small-offset-6 {
|
210
|
+
position: relative;
|
211
|
+
margin-left: 50%; }
|
212
|
+
|
213
|
+
.small-offset-7 {
|
214
|
+
position: relative;
|
215
|
+
margin-left: 58.33333%; }
|
216
|
+
|
217
|
+
.small-offset-8 {
|
218
|
+
position: relative;
|
219
|
+
margin-left: 66.66667%; }
|
220
|
+
|
221
|
+
.small-offset-9 {
|
222
|
+
position: relative;
|
223
|
+
margin-left: 75%; }
|
224
|
+
|
225
|
+
.small-offset-10 {
|
226
|
+
position: relative;
|
227
|
+
margin-left: 83.33333%; }
|
228
|
+
|
229
|
+
[class*="column"] + [class*="column"]:last-child {
|
230
|
+
float: right; }
|
231
|
+
|
232
|
+
[class*="column"] + [class*="column"].end {
|
233
|
+
float: left; }
|
234
|
+
|
235
|
+
.column.small-centered,
|
236
|
+
.columns.small-centered {
|
237
|
+
position: relative;
|
238
|
+
margin-left: auto;
|
239
|
+
margin-right: auto;
|
240
|
+
float: none !important; } }
|
241
|
+
/* Styles for screens that are atleast 768px; */
|
242
|
+
@media only screen and (min-width: 48em) {
|
243
|
+
.large-1 {
|
244
|
+
position: relative;
|
245
|
+
width: 8.33333%; }
|
246
|
+
|
247
|
+
.large-2 {
|
248
|
+
position: relative;
|
249
|
+
width: 16.66667%; }
|
250
|
+
|
251
|
+
.large-3 {
|
252
|
+
position: relative;
|
253
|
+
width: 25%; }
|
254
|
+
|
255
|
+
.large-4 {
|
256
|
+
position: relative;
|
257
|
+
width: 33.33333%; }
|
258
|
+
|
259
|
+
.large-5 {
|
260
|
+
position: relative;
|
261
|
+
width: 41.66667%; }
|
262
|
+
|
263
|
+
.large-6 {
|
264
|
+
position: relative;
|
265
|
+
width: 50%; }
|
266
|
+
|
267
|
+
.large-7 {
|
268
|
+
position: relative;
|
269
|
+
width: 58.33333%; }
|
270
|
+
|
271
|
+
.large-8 {
|
272
|
+
position: relative;
|
273
|
+
width: 66.66667%; }
|
274
|
+
|
275
|
+
.large-9 {
|
276
|
+
position: relative;
|
277
|
+
width: 75%; }
|
278
|
+
|
279
|
+
.large-10 {
|
280
|
+
position: relative;
|
281
|
+
width: 83.33333%; }
|
282
|
+
|
283
|
+
.large-11 {
|
284
|
+
position: relative;
|
285
|
+
width: 91.66667%; }
|
286
|
+
|
287
|
+
.large-12 {
|
288
|
+
position: relative;
|
289
|
+
width: 100%; }
|
290
|
+
|
291
|
+
.row .large-offset-1 {
|
292
|
+
position: relative;
|
293
|
+
margin-left: 8.33333%; }
|
294
|
+
|
295
|
+
.row .large-offset-2 {
|
296
|
+
position: relative;
|
297
|
+
margin-left: 16.66667%; }
|
298
|
+
|
299
|
+
.row .large-offset-3 {
|
300
|
+
position: relative;
|
301
|
+
margin-left: 25%; }
|
302
|
+
|
303
|
+
.row .large-offset-4 {
|
304
|
+
position: relative;
|
305
|
+
margin-left: 33.33333%; }
|
306
|
+
|
307
|
+
.row .large-offset-5 {
|
308
|
+
position: relative;
|
309
|
+
margin-left: 41.66667%; }
|
310
|
+
|
311
|
+
.row .large-offset-6 {
|
312
|
+
position: relative;
|
313
|
+
margin-left: 50%; }
|
314
|
+
|
315
|
+
.row .large-offset-7 {
|
316
|
+
position: relative;
|
317
|
+
margin-left: 58.33333%; }
|
318
|
+
|
319
|
+
.row .large-offset-8 {
|
320
|
+
position: relative;
|
321
|
+
margin-left: 66.66667%; }
|
322
|
+
|
323
|
+
.row .large-offset-9 {
|
324
|
+
position: relative;
|
325
|
+
margin-left: 75%; }
|
326
|
+
|
327
|
+
.row .large-offset-10 {
|
328
|
+
position: relative;
|
329
|
+
margin-left: 83.33333%; }
|
330
|
+
|
331
|
+
.row .large-offset-11 {
|
332
|
+
position: relative;
|
333
|
+
margin-left: 91.66667%; }
|
334
|
+
|
335
|
+
.push-1 {
|
336
|
+
position: relative;
|
337
|
+
left: 8.33333%;
|
338
|
+
right: auto; }
|
339
|
+
|
340
|
+
.pull-1 {
|
341
|
+
position: relative;
|
342
|
+
right: 8.33333%;
|
343
|
+
left: auto; }
|
344
|
+
|
345
|
+
.push-2 {
|
346
|
+
position: relative;
|
347
|
+
left: 16.66667%;
|
348
|
+
right: auto; }
|
349
|
+
|
350
|
+
.pull-2 {
|
351
|
+
position: relative;
|
352
|
+
right: 16.66667%;
|
353
|
+
left: auto; }
|
354
|
+
|
355
|
+
.push-3 {
|
356
|
+
position: relative;
|
357
|
+
left: 25%;
|
358
|
+
right: auto; }
|
359
|
+
|
360
|
+
.pull-3 {
|
361
|
+
position: relative;
|
362
|
+
right: 25%;
|
363
|
+
left: auto; }
|
364
|
+
|
365
|
+
.push-4 {
|
366
|
+
position: relative;
|
367
|
+
left: 33.33333%;
|
368
|
+
right: auto; }
|
369
|
+
|
370
|
+
.pull-4 {
|
371
|
+
position: relative;
|
372
|
+
right: 33.33333%;
|
373
|
+
left: auto; }
|
374
|
+
|
375
|
+
.push-5 {
|
376
|
+
position: relative;
|
377
|
+
left: 41.66667%;
|
378
|
+
right: auto; }
|
379
|
+
|
380
|
+
.pull-5 {
|
381
|
+
position: relative;
|
382
|
+
right: 41.66667%;
|
383
|
+
left: auto; }
|
384
|
+
|
385
|
+
.push-6 {
|
386
|
+
position: relative;
|
387
|
+
left: 50%;
|
388
|
+
right: auto; }
|
389
|
+
|
390
|
+
.pull-6 {
|
391
|
+
position: relative;
|
392
|
+
right: 50%;
|
393
|
+
left: auto; }
|
394
|
+
|
395
|
+
.push-7 {
|
396
|
+
position: relative;
|
397
|
+
left: 58.33333%;
|
398
|
+
right: auto; }
|
399
|
+
|
400
|
+
.pull-7 {
|
401
|
+
position: relative;
|
402
|
+
right: 58.33333%;
|
403
|
+
left: auto; }
|
404
|
+
|
405
|
+
.push-8 {
|
406
|
+
position: relative;
|
407
|
+
left: 66.66667%;
|
408
|
+
right: auto; }
|
409
|
+
|
410
|
+
.pull-8 {
|
411
|
+
position: relative;
|
412
|
+
right: 66.66667%;
|
413
|
+
left: auto; }
|
414
|
+
|
415
|
+
.push-9 {
|
416
|
+
position: relative;
|
417
|
+
left: 75%;
|
418
|
+
right: auto; }
|
419
|
+
|
420
|
+
.pull-9 {
|
421
|
+
position: relative;
|
422
|
+
right: 75%;
|
423
|
+
left: auto; }
|
424
|
+
|
425
|
+
.push-10 {
|
426
|
+
position: relative;
|
427
|
+
left: 83.33333%;
|
428
|
+
right: auto; }
|
429
|
+
|
430
|
+
.pull-10 {
|
431
|
+
position: relative;
|
432
|
+
right: 83.33333%;
|
433
|
+
left: auto; }
|
434
|
+
|
435
|
+
.push-11 {
|
436
|
+
position: relative;
|
437
|
+
left: 91.66667%;
|
438
|
+
right: auto; }
|
439
|
+
|
440
|
+
.pull-11 {
|
441
|
+
position: relative;
|
442
|
+
right: 91.66667%;
|
443
|
+
left: auto; }
|
444
|
+
|
445
|
+
.small-push-1 {
|
446
|
+
left: inherit; }
|
447
|
+
|
448
|
+
.small-pull-1 {
|
449
|
+
right: inherit; }
|
450
|
+
|
451
|
+
.small-push-2 {
|
452
|
+
left: inherit; }
|
453
|
+
|
454
|
+
.small-pull-2 {
|
455
|
+
right: inherit; }
|
456
|
+
|
457
|
+
.small-push-3 {
|
458
|
+
left: inherit; }
|
459
|
+
|
460
|
+
.small-pull-3 {
|
461
|
+
right: inherit; }
|
462
|
+
|
463
|
+
.small-push-4 {
|
464
|
+
left: inherit; }
|
465
|
+
|
466
|
+
.small-pull-4 {
|
467
|
+
right: inherit; }
|
468
|
+
|
469
|
+
.small-push-5 {
|
470
|
+
left: inherit; }
|
471
|
+
|
472
|
+
.small-pull-5 {
|
473
|
+
right: inherit; }
|
474
|
+
|
475
|
+
.small-push-6 {
|
476
|
+
left: inherit; }
|
477
|
+
|
478
|
+
.small-pull-6 {
|
479
|
+
right: inherit; }
|
480
|
+
|
481
|
+
.small-push-7 {
|
482
|
+
left: inherit; }
|
483
|
+
|
484
|
+
.small-pull-7 {
|
485
|
+
right: inherit; }
|
486
|
+
|
487
|
+
.small-push-8 {
|
488
|
+
left: inherit; }
|
489
|
+
|
490
|
+
.small-pull-8 {
|
491
|
+
right: inherit; }
|
492
|
+
|
493
|
+
.small-push-9 {
|
494
|
+
left: inherit; }
|
495
|
+
|
496
|
+
.small-pull-9 {
|
497
|
+
right: inherit; }
|
498
|
+
|
499
|
+
.small-push-10 {
|
500
|
+
left: inherit; }
|
501
|
+
|
502
|
+
.small-pull-10 {
|
503
|
+
right: inherit; }
|
504
|
+
|
505
|
+
.small-push-11 {
|
506
|
+
left: inherit; }
|
507
|
+
|
508
|
+
.small-pull-11 {
|
509
|
+
right: inherit; }
|
510
|
+
|
511
|
+
.column.small-centered,
|
512
|
+
.columns.small-centered {
|
513
|
+
margin-left: 0;
|
514
|
+
margin-right: 0;
|
515
|
+
float: left !important; }
|
516
|
+
|
517
|
+
.column.large-centered,
|
518
|
+
.columns.large-centered {
|
519
|
+
position: relative;
|
520
|
+
margin-left: auto;
|
521
|
+
margin-right: auto;
|
522
|
+
float: none !important; } }
|
523
|
+
/* Foundation Visibility HTML Classes */
|
524
|
+
.show-for-small,
|
525
|
+
.show-for-medium-down,
|
526
|
+
.show-for-large-down {
|
527
|
+
display: inherit !important; }
|
528
|
+
|
529
|
+
.show-for-medium,
|
530
|
+
.show-for-medium-up,
|
531
|
+
.show-for-large,
|
532
|
+
.show-for-large-up,
|
533
|
+
.show-for-xlarge {
|
534
|
+
display: none !important; }
|
535
|
+
|
536
|
+
.hide-for-medium,
|
537
|
+
.hide-for-medium-up,
|
538
|
+
.hide-for-large,
|
539
|
+
.hide-for-large-up,
|
540
|
+
.hide-for-xlarge {
|
541
|
+
display: inherit !important; }
|
542
|
+
|
543
|
+
.hide-for-small,
|
544
|
+
.hide-for-medium-down,
|
545
|
+
.hide-for-large-down {
|
546
|
+
display: none !important; }
|
547
|
+
|
548
|
+
/* Specific visilbity for tables */
|
549
|
+
table.show-for-small, table.show-for-medium-down, table.show-for-large-down, table.hide-for-medium, table.hide-for-medium-up, table.hide-for-large, table.hide-for-large-up, table.hide-for-xlarge {
|
550
|
+
display: table; }
|
551
|
+
|
552
|
+
thead.show-for-small, thead.show-for-medium-down, thead.show-for-large-down, thead.hide-for-medium, thead.hide-for-medium-up, thead.hide-for-large, thead.hide-for-large-up, thead.hide-for-xlarge {
|
553
|
+
display: table-header-group !important; }
|
554
|
+
|
555
|
+
tbody.show-for-small, tbody.show-for-medium-down, tbody.show-for-large-down, tbody.hide-for-medium, tbody.hide-for-medium-up, tbody.hide-for-large, tbody.hide-for-large-up, tbody.hide-for-xlarge {
|
556
|
+
display: table-row-group !important; }
|
557
|
+
|
558
|
+
tr.show-for-small, tr.show-for-medium-down, tr.show-for-large-down, tr.hide-for-medium, tr.hide-for-medium-up, tr.hide-for-large, tr.hide-for-large-up, tr.hide-for-xlarge {
|
559
|
+
display: table-row !important; }
|
560
|
+
|
561
|
+
td.show-for-small, td.show-for-medium-down, td.show-for-large-down, td.hide-for-medium, td.hide-for-medium-up, td.hide-for-large, td.hide-for-large-up, td.hide-for-xlarge,
|
562
|
+
th.show-for-small,
|
563
|
+
th.show-for-medium-down,
|
564
|
+
th.show-for-large-down,
|
565
|
+
th.hide-for-medium,
|
566
|
+
th.hide-for-medium-up,
|
567
|
+
th.hide-for-large,
|
568
|
+
th.hide-for-large-up,
|
569
|
+
th.hide-for-xlarge {
|
570
|
+
display: table-cell !important; }
|
571
|
+
|
572
|
+
/* Medium Displays: 768px - 1279px */
|
573
|
+
@media only screen and (min-width: 48em) {
|
574
|
+
.show-for-medium,
|
575
|
+
.show-for-medium-up {
|
576
|
+
display: inherit !important; }
|
577
|
+
|
578
|
+
.show-for-small {
|
579
|
+
display: none !important; }
|
580
|
+
|
581
|
+
.hide-for-small {
|
582
|
+
display: inherit !important; }
|
583
|
+
|
584
|
+
.hide-for-medium,
|
585
|
+
.hide-for-medium-up {
|
586
|
+
display: none !important; }
|
587
|
+
|
588
|
+
/* Specific visilbity for tables */
|
589
|
+
table.show-for-medium, table.show-for-medium-up, table.hide-for-small {
|
590
|
+
display: table; }
|
591
|
+
|
592
|
+
thead.show-for-medium, thead.show-for-medium-up, thead.hide-for-small {
|
593
|
+
display: table-header-group !important; }
|
594
|
+
|
595
|
+
tbody.show-for-medium, tbody.show-for-medium-up, tbody.hide-for-small {
|
596
|
+
display: table-row-group !important; }
|
597
|
+
|
598
|
+
tr.show-for-medium, tr.show-for-medium-up, tr.hide-for-small {
|
599
|
+
display: table-row !important; }
|
600
|
+
|
601
|
+
td.show-for-medium, td.show-for-medium-up, td.hide-for-small,
|
602
|
+
th.show-for-medium,
|
603
|
+
th.show-for-medium-up,
|
604
|
+
th.hide-for-small {
|
605
|
+
display: table-cell !important; } }
|
606
|
+
/* Large Displays: 1280px - 1440px */
|
607
|
+
@media only screen and (min-width: 80em) {
|
608
|
+
.show-for-large,
|
609
|
+
.show-for-large-up {
|
610
|
+
display: inherit !important; }
|
611
|
+
|
612
|
+
.show-for-medium,
|
613
|
+
.show-for-medium-down {
|
614
|
+
display: none !important; }
|
615
|
+
|
616
|
+
.hide-for-medium,
|
617
|
+
.hide-for-medium-down {
|
618
|
+
display: inherit !important; }
|
619
|
+
|
620
|
+
.hide-for-large,
|
621
|
+
.hide-for-large-up {
|
622
|
+
display: none !important; }
|
623
|
+
|
624
|
+
/* Specific visilbity for tables */
|
625
|
+
table.show-for-large, table.show-for-large-up, table.hide-for-medium, table.hide-for-medium-down {
|
626
|
+
display: table; }
|
627
|
+
|
628
|
+
thead.show-for-large, thead.show-for-large-up, thead.hide-for-medium, thead.hide-for-medium-down {
|
629
|
+
display: table-header-group !important; }
|
630
|
+
|
631
|
+
tbody.show-for-large, tbody.show-for-large-up, tbody.hide-for-medium, tbody.hide-for-medium-down {
|
632
|
+
display: table-row-group !important; }
|
633
|
+
|
634
|
+
tr.show-for-large, tr.show-for-large-up, tr.hide-for-medium, tr.hide-for-medium-down {
|
635
|
+
display: table-row !important; }
|
636
|
+
|
637
|
+
td.show-for-large, td.show-for-large-up, td.hide-for-medium, td.hide-for-medium-down,
|
638
|
+
th.show-for-large,
|
639
|
+
th.show-for-large-up,
|
640
|
+
th.hide-for-medium,
|
641
|
+
th.hide-for-medium-down {
|
642
|
+
display: table-cell !important; } }
|
643
|
+
/* X-Large Displays: 1400px and up */
|
644
|
+
@media only screen and (min-width: 90em) {
|
645
|
+
.show-for-xlarge {
|
646
|
+
display: inherit !important; }
|
647
|
+
|
648
|
+
.show-for-large,
|
649
|
+
.show-for-large-down {
|
650
|
+
display: none !important; }
|
651
|
+
|
652
|
+
.hide-for-large,
|
653
|
+
.hide-for-large-down {
|
654
|
+
display: inherit !important; }
|
655
|
+
|
656
|
+
.hide-for-xlarge {
|
657
|
+
display: none !important; }
|
658
|
+
|
659
|
+
/* Specific visilbity for tables */
|
660
|
+
table.show-for-xlarge, table.hide-for-large, table.hide-for-large-down {
|
661
|
+
display: table; }
|
662
|
+
|
663
|
+
thead.show-for-xlarge, thead.hide-for-large, thead.hide-for-large-down {
|
664
|
+
display: table-header-group !important; }
|
665
|
+
|
666
|
+
tbody.show-for-xlarge, tbody.hide-for-large, tbody.hide-for-large-down {
|
667
|
+
display: table-row-group !important; }
|
668
|
+
|
669
|
+
tr.show-for-xlarge, tr.hide-for-large, tr.hide-for-large-down {
|
670
|
+
display: table-row !important; }
|
671
|
+
|
672
|
+
td.show-for-xlarge, td.hide-for-large, td.hide-for-large-down,
|
673
|
+
th.show-for-xlarge,
|
674
|
+
th.hide-for-large,
|
675
|
+
th.hide-for-large-down {
|
676
|
+
display: table-cell !important; } }
|
677
|
+
/* Orientation targeting */
|
678
|
+
.show-for-landscape,
|
679
|
+
.hide-for-portrait {
|
680
|
+
display: inherit !important; }
|
681
|
+
|
682
|
+
.hide-for-landscape,
|
683
|
+
.show-for-portrait {
|
684
|
+
display: none !important; }
|
685
|
+
|
686
|
+
/* Specific visilbity for tables */
|
687
|
+
table.hide-for-landscape, table.show-for-portrait {
|
688
|
+
display: table; }
|
689
|
+
|
690
|
+
thead.hide-for-landscape, thead.show-for-portrait {
|
691
|
+
display: table-header-group !important; }
|
692
|
+
|
693
|
+
tbody.hide-for-landscape, tbody.show-for-portrait {
|
694
|
+
display: table-row-group !important; }
|
695
|
+
|
696
|
+
tr.hide-for-landscape, tr.show-for-portrait {
|
697
|
+
display: table-row !important; }
|
698
|
+
|
699
|
+
td.hide-for-landscape, td.show-for-portrait,
|
700
|
+
th.hide-for-landscape,
|
701
|
+
th.show-for-portrait {
|
702
|
+
display: table-cell !important; }
|
703
|
+
|
704
|
+
@media only screen and (orientation: landscape) {
|
705
|
+
.show-for-landscape,
|
706
|
+
.hide-for-portrait {
|
707
|
+
display: inherit !important; }
|
708
|
+
|
709
|
+
.hide-for-landscape,
|
710
|
+
.show-for-portrait {
|
711
|
+
display: none !important; }
|
712
|
+
|
713
|
+
/* Specific visilbity for tables */
|
714
|
+
table.show-for-landscape, table.hide-for-portrait {
|
715
|
+
display: table; }
|
716
|
+
|
717
|
+
thead.show-for-landscape, thead.hide-for-portrait {
|
718
|
+
display: table-header-group !important; }
|
719
|
+
|
720
|
+
tbody.show-for-landscape, tbody.hide-for-portrait {
|
721
|
+
display: table-row-group !important; }
|
722
|
+
|
723
|
+
tr.show-for-landscape, tr.hide-for-portrait {
|
724
|
+
display: table-row !important; }
|
725
|
+
|
726
|
+
td.show-for-landscape, td.hide-for-portrait,
|
727
|
+
th.show-for-landscape,
|
728
|
+
th.hide-for-portrait {
|
729
|
+
display: table-cell !important; } }
|
730
|
+
@media only screen and (orientation: portrait) {
|
731
|
+
.show-for-portrait,
|
732
|
+
.hide-for-landscape {
|
733
|
+
display: inherit !important; }
|
734
|
+
|
735
|
+
.hide-for-portrait,
|
736
|
+
.show-for-landscape {
|
737
|
+
display: none !important; }
|
738
|
+
|
739
|
+
/* Specific visilbity for tables */
|
740
|
+
table.show-for-portrait, table.hide-for-landscape {
|
741
|
+
display: table; }
|
742
|
+
|
743
|
+
thead.show-for-portrait, thead.hide-for-landscape {
|
744
|
+
display: table-header-group !important; }
|
745
|
+
|
746
|
+
tbody.show-for-portrait, tbody.hide-for-landscape {
|
747
|
+
display: table-row-group !important; }
|
748
|
+
|
749
|
+
tr.show-for-portrait, tr.hide-for-landscape {
|
750
|
+
display: table-row !important; }
|
751
|
+
|
752
|
+
td.show-for-portrait, td.hide-for-landscape,
|
753
|
+
th.show-for-portrait,
|
754
|
+
th.hide-for-landscape {
|
755
|
+
display: table-cell !important; } }
|
756
|
+
/* Touch-enabled device targeting */
|
757
|
+
.show-for-touch {
|
758
|
+
display: none !important; }
|
759
|
+
|
760
|
+
.hide-for-touch {
|
761
|
+
display: inherit !important; }
|
762
|
+
|
763
|
+
.touch .show-for-touch {
|
764
|
+
display: inherit !important; }
|
765
|
+
|
766
|
+
.touch .hide-for-touch {
|
767
|
+
display: none !important; }
|
768
|
+
|
769
|
+
/* Specific visilbity for tables */
|
770
|
+
table.hide-for-touch {
|
771
|
+
display: table; }
|
772
|
+
|
773
|
+
.touch table.show-for-touch {
|
774
|
+
display: table; }
|
775
|
+
|
776
|
+
thead.hide-for-touch {
|
777
|
+
display: table-header-group !important; }
|
778
|
+
|
779
|
+
.touch thead.show-for-touch {
|
780
|
+
display: table-header-group !important; }
|
781
|
+
|
782
|
+
tbody.hide-for-touch {
|
783
|
+
display: table-row-group !important; }
|
784
|
+
|
785
|
+
.touch tbody.show-for-touch {
|
786
|
+
display: table-row-group !important; }
|
787
|
+
|
788
|
+
tr.hide-for-touch {
|
789
|
+
display: table-row !important; }
|
790
|
+
|
791
|
+
.touch tr.show-for-touch {
|
792
|
+
display: table-row !important; }
|
793
|
+
|
794
|
+
td.hide-for-touch {
|
795
|
+
display: table-cell !important; }
|
796
|
+
|
797
|
+
.touch td.show-for-touch {
|
798
|
+
display: table-cell !important; }
|
799
|
+
|
800
|
+
th.hide-for-touch {
|
801
|
+
display: table-cell !important; }
|
802
|
+
|
803
|
+
.touch th.show-for-touch {
|
804
|
+
display: table-cell !important; }
|
805
|
+
|
806
|
+
/* Foundation Block Grids for below small breakpoint */
|
807
|
+
@media only screen {
|
808
|
+
[class*="block-grid-"] {
|
809
|
+
display: block;
|
810
|
+
padding: 0;
|
811
|
+
margin: 0 -10px;
|
812
|
+
*zoom: 1; }
|
813
|
+
[class*="block-grid-"]:before, [class*="block-grid-"]:after {
|
814
|
+
content: " ";
|
815
|
+
display: table; }
|
816
|
+
[class*="block-grid-"]:after {
|
817
|
+
clear: both; }
|
818
|
+
[class*="block-grid-"] > li {
|
819
|
+
display: block;
|
820
|
+
height: auto;
|
821
|
+
float: left;
|
822
|
+
padding: 0 10px 10px; }
|
823
|
+
|
824
|
+
.small-block-grid-1 > li {
|
825
|
+
width: 100%;
|
826
|
+
padding: 0 10px 10px; }
|
827
|
+
.small-block-grid-1 > li:nth-of-type(n) {
|
828
|
+
clear: none; }
|
829
|
+
.small-block-grid-1 > li:nth-of-type(1n+1) {
|
830
|
+
clear: both; }
|
831
|
+
|
832
|
+
.small-block-grid-2 > li {
|
833
|
+
width: 50%;
|
834
|
+
padding: 0 10px 10px; }
|
835
|
+
.small-block-grid-2 > li:nth-of-type(n) {
|
836
|
+
clear: none; }
|
837
|
+
.small-block-grid-2 > li:nth-of-type(2n+1) {
|
838
|
+
clear: both; }
|
839
|
+
|
840
|
+
.small-block-grid-3 > li {
|
841
|
+
width: 33.33333%;
|
842
|
+
padding: 0 10px 10px; }
|
843
|
+
.small-block-grid-3 > li:nth-of-type(n) {
|
844
|
+
clear: none; }
|
845
|
+
.small-block-grid-3 > li:nth-of-type(3n+1) {
|
846
|
+
clear: both; }
|
847
|
+
|
848
|
+
.small-block-grid-4 > li {
|
849
|
+
width: 25%;
|
850
|
+
padding: 0 10px 10px; }
|
851
|
+
.small-block-grid-4 > li:nth-of-type(n) {
|
852
|
+
clear: none; }
|
853
|
+
.small-block-grid-4 > li:nth-of-type(4n+1) {
|
854
|
+
clear: both; }
|
855
|
+
|
856
|
+
.small-block-grid-5 > li {
|
857
|
+
width: 20%;
|
858
|
+
padding: 0 10px 10px; }
|
859
|
+
.small-block-grid-5 > li:nth-of-type(n) {
|
860
|
+
clear: none; }
|
861
|
+
.small-block-grid-5 > li:nth-of-type(5n+1) {
|
862
|
+
clear: both; }
|
863
|
+
|
864
|
+
.small-block-grid-6 > li {
|
865
|
+
width: 16.66667%;
|
866
|
+
padding: 0 10px 10px; }
|
867
|
+
.small-block-grid-6 > li:nth-of-type(n) {
|
868
|
+
clear: none; }
|
869
|
+
.small-block-grid-6 > li:nth-of-type(6n+1) {
|
870
|
+
clear: both; }
|
871
|
+
|
872
|
+
.small-block-grid-7 > li {
|
873
|
+
width: 14.28571%;
|
874
|
+
padding: 0 10px 10px; }
|
875
|
+
.small-block-grid-7 > li:nth-of-type(n) {
|
876
|
+
clear: none; }
|
877
|
+
.small-block-grid-7 > li:nth-of-type(7n+1) {
|
878
|
+
clear: both; }
|
879
|
+
|
880
|
+
.small-block-grid-8 > li {
|
881
|
+
width: 12.5%;
|
882
|
+
padding: 0 10px 10px; }
|
883
|
+
.small-block-grid-8 > li:nth-of-type(n) {
|
884
|
+
clear: none; }
|
885
|
+
.small-block-grid-8 > li:nth-of-type(8n+1) {
|
886
|
+
clear: both; }
|
887
|
+
|
888
|
+
.small-block-grid-9 > li {
|
889
|
+
width: 11.11111%;
|
890
|
+
padding: 0 10px 10px; }
|
891
|
+
.small-block-grid-9 > li:nth-of-type(n) {
|
892
|
+
clear: none; }
|
893
|
+
.small-block-grid-9 > li:nth-of-type(9n+1) {
|
894
|
+
clear: both; }
|
895
|
+
|
896
|
+
.small-block-grid-10 > li {
|
897
|
+
width: 10%;
|
898
|
+
padding: 0 10px 10px; }
|
899
|
+
.small-block-grid-10 > li:nth-of-type(n) {
|
900
|
+
clear: none; }
|
901
|
+
.small-block-grid-10 > li:nth-of-type(10n+1) {
|
902
|
+
clear: both; }
|
903
|
+
|
904
|
+
.small-block-grid-11 > li {
|
905
|
+
width: 9.09091%;
|
906
|
+
padding: 0 10px 10px; }
|
907
|
+
.small-block-grid-11 > li:nth-of-type(n) {
|
908
|
+
clear: none; }
|
909
|
+
.small-block-grid-11 > li:nth-of-type(11n+1) {
|
910
|
+
clear: both; }
|
911
|
+
|
912
|
+
.small-block-grid-12 > li {
|
913
|
+
width: 8.33333%;
|
914
|
+
padding: 0 10px 10px; }
|
915
|
+
.small-block-grid-12 > li:nth-of-type(n) {
|
916
|
+
clear: none; }
|
917
|
+
.small-block-grid-12 > li:nth-of-type(12n+1) {
|
918
|
+
clear: both; } }
|
919
|
+
/* Foundation Block Grids for above small breakpoint */
|
920
|
+
@media only screen and (min-width: 48em) {
|
921
|
+
/* Remove small grid clearing */
|
922
|
+
.small-block-grid-1 > li:nth-of-type(1n+1) {
|
923
|
+
clear: none; }
|
924
|
+
|
925
|
+
.small-block-grid-2 > li:nth-of-type(2n+1) {
|
926
|
+
clear: none; }
|
927
|
+
|
928
|
+
.small-block-grid-3 > li:nth-of-type(3n+1) {
|
929
|
+
clear: none; }
|
930
|
+
|
931
|
+
.small-block-grid-4 > li:nth-of-type(4n+1) {
|
932
|
+
clear: none; }
|
933
|
+
|
934
|
+
.small-block-grid-5 > li:nth-of-type(5n+1) {
|
935
|
+
clear: none; }
|
936
|
+
|
937
|
+
.small-block-grid-6 > li:nth-of-type(6n+1) {
|
938
|
+
clear: none; }
|
939
|
+
|
940
|
+
.small-block-grid-7 > li:nth-of-type(7n+1) {
|
941
|
+
clear: none; }
|
942
|
+
|
943
|
+
.small-block-grid-8 > li:nth-of-type(8n+1) {
|
944
|
+
clear: none; }
|
945
|
+
|
946
|
+
.small-block-grid-9 > li:nth-of-type(9n+1) {
|
947
|
+
clear: none; }
|
948
|
+
|
949
|
+
.small-block-grid-10 > li:nth-of-type(10n+1) {
|
950
|
+
clear: none; }
|
951
|
+
|
952
|
+
.small-block-grid-11 > li:nth-of-type(11n+1) {
|
953
|
+
clear: none; }
|
954
|
+
|
955
|
+
.small-block-grid-12 > li:nth-of-type(12n+1) {
|
956
|
+
clear: none; }
|
957
|
+
|
958
|
+
.large-block-grid-1 > li {
|
959
|
+
width: 100%;
|
960
|
+
padding: 0 10px 10px; }
|
961
|
+
.large-block-grid-1 > li:nth-of-type(n) {
|
962
|
+
clear: none; }
|
963
|
+
.large-block-grid-1 > li:nth-of-type(1n+1) {
|
964
|
+
clear: both; }
|
965
|
+
|
966
|
+
.large-block-grid-2 > li {
|
967
|
+
width: 50%;
|
968
|
+
padding: 0 10px 10px; }
|
969
|
+
.large-block-grid-2 > li:nth-of-type(n) {
|
970
|
+
clear: none; }
|
971
|
+
.large-block-grid-2 > li:nth-of-type(2n+1) {
|
972
|
+
clear: both; }
|
973
|
+
|
974
|
+
.large-block-grid-3 > li {
|
975
|
+
width: 33.33333%;
|
976
|
+
padding: 0 10px 10px; }
|
977
|
+
.large-block-grid-3 > li:nth-of-type(n) {
|
978
|
+
clear: none; }
|
979
|
+
.large-block-grid-3 > li:nth-of-type(3n+1) {
|
980
|
+
clear: both; }
|
981
|
+
|
982
|
+
.large-block-grid-4 > li {
|
983
|
+
width: 25%;
|
984
|
+
padding: 0 10px 10px; }
|
985
|
+
.large-block-grid-4 > li:nth-of-type(n) {
|
986
|
+
clear: none; }
|
987
|
+
.large-block-grid-4 > li:nth-of-type(4n+1) {
|
988
|
+
clear: both; }
|
989
|
+
|
990
|
+
.large-block-grid-5 > li {
|
991
|
+
width: 20%;
|
992
|
+
padding: 0 10px 10px; }
|
993
|
+
.large-block-grid-5 > li:nth-of-type(n) {
|
994
|
+
clear: none; }
|
995
|
+
.large-block-grid-5 > li:nth-of-type(5n+1) {
|
996
|
+
clear: both; }
|
997
|
+
|
998
|
+
.large-block-grid-6 > li {
|
999
|
+
width: 16.66667%;
|
1000
|
+
padding: 0 10px 10px; }
|
1001
|
+
.large-block-grid-6 > li:nth-of-type(n) {
|
1002
|
+
clear: none; }
|
1003
|
+
.large-block-grid-6 > li:nth-of-type(6n+1) {
|
1004
|
+
clear: both; }
|
1005
|
+
|
1006
|
+
.large-block-grid-7 > li {
|
1007
|
+
width: 14.28571%;
|
1008
|
+
padding: 0 10px 10px; }
|
1009
|
+
.large-block-grid-7 > li:nth-of-type(n) {
|
1010
|
+
clear: none; }
|
1011
|
+
.large-block-grid-7 > li:nth-of-type(7n+1) {
|
1012
|
+
clear: both; }
|
1013
|
+
|
1014
|
+
.large-block-grid-8 > li {
|
1015
|
+
width: 12.5%;
|
1016
|
+
padding: 0 10px 10px; }
|
1017
|
+
.large-block-grid-8 > li:nth-of-type(n) {
|
1018
|
+
clear: none; }
|
1019
|
+
.large-block-grid-8 > li:nth-of-type(8n+1) {
|
1020
|
+
clear: both; }
|
1021
|
+
|
1022
|
+
.large-block-grid-9 > li {
|
1023
|
+
width: 11.11111%;
|
1024
|
+
padding: 0 10px 10px; }
|
1025
|
+
.large-block-grid-9 > li:nth-of-type(n) {
|
1026
|
+
clear: none; }
|
1027
|
+
.large-block-grid-9 > li:nth-of-type(9n+1) {
|
1028
|
+
clear: both; }
|
1029
|
+
|
1030
|
+
.large-block-grid-10 > li {
|
1031
|
+
width: 10%;
|
1032
|
+
padding: 0 10px 10px; }
|
1033
|
+
.large-block-grid-10 > li:nth-of-type(n) {
|
1034
|
+
clear: none; }
|
1035
|
+
.large-block-grid-10 > li:nth-of-type(10n+1) {
|
1036
|
+
clear: both; }
|
1037
|
+
|
1038
|
+
.large-block-grid-11 > li {
|
1039
|
+
width: 9.09091%;
|
1040
|
+
padding: 0 10px 10px; }
|
1041
|
+
.large-block-grid-11 > li:nth-of-type(n) {
|
1042
|
+
clear: none; }
|
1043
|
+
.large-block-grid-11 > li:nth-of-type(11n+1) {
|
1044
|
+
clear: both; }
|
1045
|
+
|
1046
|
+
.large-block-grid-12 > li {
|
1047
|
+
width: 8.33333%;
|
1048
|
+
padding: 0 10px 10px; }
|
1049
|
+
.large-block-grid-12 > li:nth-of-type(n) {
|
1050
|
+
clear: none; }
|
1051
|
+
.large-block-grid-12 > li:nth-of-type(12n+1) {
|
1052
|
+
clear: both; } }
|
1053
|
+
p.lead {
|
1054
|
+
font-size: 1.21875em;
|
1055
|
+
line-height: 1.6; }
|
1056
|
+
|
1057
|
+
.subheader {
|
1058
|
+
line-height: 1.4;
|
1059
|
+
color: #6f6f6f;
|
1060
|
+
font-weight: 300;
|
1061
|
+
margin-top: 0.2em;
|
1062
|
+
margin-bottom: 0.5em; }
|
1063
|
+
|
1064
|
+
/* Typography resets */
|
1065
|
+
div,
|
1066
|
+
dl,
|
1067
|
+
dt,
|
1068
|
+
dd,
|
1069
|
+
ul,
|
1070
|
+
ol,
|
1071
|
+
li,
|
1072
|
+
h1,
|
1073
|
+
h2,
|
1074
|
+
h3,
|
1075
|
+
h4,
|
1076
|
+
h5,
|
1077
|
+
h6,
|
1078
|
+
pre,
|
1079
|
+
form,
|
1080
|
+
p,
|
1081
|
+
blockquote,
|
1082
|
+
th,
|
1083
|
+
td {
|
1084
|
+
margin: 0;
|
1085
|
+
padding: 0;
|
1086
|
+
direction: ltr; }
|
1087
|
+
|
1088
|
+
/* Default Link Styles */
|
1089
|
+
a {
|
1090
|
+
color: #2ba6cb;
|
1091
|
+
text-decoration: none;
|
1092
|
+
line-height: inherit; }
|
1093
|
+
a:hover, a:focus {
|
1094
|
+
color: #2795b6; }
|
1095
|
+
a img {
|
1096
|
+
border: none; }
|
1097
|
+
|
1098
|
+
/* Default paragraph styles */
|
1099
|
+
p {
|
1100
|
+
font-family: inherit;
|
1101
|
+
font-weight: normal;
|
1102
|
+
font-size: 1em;
|
1103
|
+
line-height: 1.6;
|
1104
|
+
margin-bottom: 1.25em;
|
1105
|
+
text-rendering: optimizeLegibility; }
|
1106
|
+
p aside {
|
1107
|
+
font-size: 0.875em;
|
1108
|
+
line-height: 1.35;
|
1109
|
+
font-style: italic; }
|
1110
|
+
|
1111
|
+
/* Default header styles */
|
1112
|
+
h1, h2, h3, h4, h5, h6 {
|
1113
|
+
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
1114
|
+
font-weight: bold;
|
1115
|
+
font-style: normal;
|
1116
|
+
color: #222222;
|
1117
|
+
text-rendering: optimizeLegibility;
|
1118
|
+
margin-top: 0.2em;
|
1119
|
+
margin-bottom: 0.5em;
|
1120
|
+
line-height: 1.2125em; }
|
1121
|
+
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
|
1122
|
+
font-size: 60%;
|
1123
|
+
color: #6f6f6f;
|
1124
|
+
line-height: 0; }
|
1125
|
+
|
1126
|
+
h1 {
|
1127
|
+
font-size: 2.125em; }
|
1128
|
+
|
1129
|
+
h2 {
|
1130
|
+
font-size: 1.6875em; }
|
1131
|
+
|
1132
|
+
h3 {
|
1133
|
+
font-size: 1.375em; }
|
1134
|
+
|
1135
|
+
h4 {
|
1136
|
+
font-size: 1.125em; }
|
1137
|
+
|
1138
|
+
h5 {
|
1139
|
+
font-size: 1.125em; }
|
1140
|
+
|
1141
|
+
h6 {
|
1142
|
+
font-size: 1em; }
|
1143
|
+
|
1144
|
+
hr {
|
1145
|
+
border: solid #dddddd;
|
1146
|
+
border-width: 1px 0 0;
|
1147
|
+
clear: both;
|
1148
|
+
margin: 1.25em 0 1.1875em;
|
1149
|
+
height: 0; }
|
1150
|
+
|
1151
|
+
/* Helpful Typography Defaults */
|
1152
|
+
em,
|
1153
|
+
i {
|
1154
|
+
font-style: italic;
|
1155
|
+
line-height: inherit; }
|
1156
|
+
|
1157
|
+
strong,
|
1158
|
+
b {
|
1159
|
+
font-weight: bold;
|
1160
|
+
line-height: inherit; }
|
1161
|
+
|
1162
|
+
small {
|
1163
|
+
font-size: 60%;
|
1164
|
+
line-height: inherit; }
|
1165
|
+
|
1166
|
+
code {
|
1167
|
+
font-family: Consolas, "Liberation Mono", Courier, monospace;
|
1168
|
+
font-weight: bold;
|
1169
|
+
color: #7f0a0c; }
|
1170
|
+
|
1171
|
+
/* Lists */
|
1172
|
+
ul,
|
1173
|
+
ol,
|
1174
|
+
dl {
|
1175
|
+
font-size: 1em;
|
1176
|
+
line-height: 1.6;
|
1177
|
+
margin-bottom: 1.25em;
|
1178
|
+
list-style-position: outside;
|
1179
|
+
font-family: inherit; }
|
1180
|
+
|
1181
|
+
/* Unordered Lists */
|
1182
|
+
ul li ul,
|
1183
|
+
ul li ol {
|
1184
|
+
margin-left: 1.25em;
|
1185
|
+
margin-bottom: 0;
|
1186
|
+
font-size: 1em;
|
1187
|
+
/* Override nested font-size change */ }
|
1188
|
+
ul.square li ul, ul.circle li ul, ul.disc li ul {
|
1189
|
+
list-style: inherit; }
|
1190
|
+
ul.square {
|
1191
|
+
list-style-type: square; }
|
1192
|
+
ul.circle {
|
1193
|
+
list-style-type: circle; }
|
1194
|
+
ul.disc {
|
1195
|
+
list-style-type: disc; }
|
1196
|
+
ul.no-bullet {
|
1197
|
+
list-style: none; }
|
1198
|
+
|
1199
|
+
/* Ordered Lists */
|
1200
|
+
ol li ul,
|
1201
|
+
ol li ol {
|
1202
|
+
margin-left: 1.25em;
|
1203
|
+
margin-bottom: 0; }
|
1204
|
+
|
1205
|
+
/* Definition Lists */
|
1206
|
+
dl dt {
|
1207
|
+
margin-bottom: 0.3em;
|
1208
|
+
font-weight: bold; }
|
1209
|
+
dl dd {
|
1210
|
+
margin-bottom: 0.75em; }
|
1211
|
+
|
1212
|
+
/* Abbreviations */
|
1213
|
+
abbr,
|
1214
|
+
acronym {
|
1215
|
+
text-transform: uppercase;
|
1216
|
+
font-size: 90%;
|
1217
|
+
color: #222222;
|
1218
|
+
border-bottom: 1px dotted #dddddd;
|
1219
|
+
cursor: help; }
|
1220
|
+
|
1221
|
+
abbr {
|
1222
|
+
text-transform: none; }
|
1223
|
+
|
1224
|
+
/* Blockquotes */
|
1225
|
+
blockquote {
|
1226
|
+
margin: 0 0 1.25em;
|
1227
|
+
padding: 0.5625em 1.25em 0 1.1875em;
|
1228
|
+
border-left: 1px solid #dddddd; }
|
1229
|
+
blockquote cite {
|
1230
|
+
display: block;
|
1231
|
+
font-size: 0.8125em;
|
1232
|
+
color: #555555; }
|
1233
|
+
blockquote cite:before {
|
1234
|
+
content: "\2014 \0020"; }
|
1235
|
+
blockquote cite a,
|
1236
|
+
blockquote cite a:visited {
|
1237
|
+
color: #555555; }
|
1238
|
+
|
1239
|
+
blockquote,
|
1240
|
+
blockquote p {
|
1241
|
+
line-height: 1.6;
|
1242
|
+
color: #6f6f6f; }
|
1243
|
+
|
1244
|
+
/* Microformats */
|
1245
|
+
.vcard {
|
1246
|
+
display: inline-block;
|
1247
|
+
margin: 0 0 1.25em 0;
|
1248
|
+
border: 1px solid #dddddd;
|
1249
|
+
padding: 0.625em 0.75em; }
|
1250
|
+
.vcard li {
|
1251
|
+
margin: 0;
|
1252
|
+
display: block; }
|
1253
|
+
.vcard .fn {
|
1254
|
+
font-weight: bold;
|
1255
|
+
font-size: 0.9375em; }
|
1256
|
+
|
1257
|
+
.vevent .summary {
|
1258
|
+
font-weight: bold; }
|
1259
|
+
.vevent abbr {
|
1260
|
+
cursor: default;
|
1261
|
+
text-decoration: none;
|
1262
|
+
font-weight: bold;
|
1263
|
+
border: none;
|
1264
|
+
padding: 0 0.0625em; }
|
1265
|
+
|
1266
|
+
@media only screen and (min-width: 48em) {
|
1267
|
+
h1, h2, h3, h4, h5, h6 {
|
1268
|
+
line-height: 1.4; }
|
1269
|
+
|
1270
|
+
h1 {
|
1271
|
+
font-size: 2.75em; }
|
1272
|
+
|
1273
|
+
h2 {
|
1274
|
+
font-size: 2.3125em; }
|
1275
|
+
|
1276
|
+
h3 {
|
1277
|
+
font-size: 1.6875em; }
|
1278
|
+
|
1279
|
+
h4 {
|
1280
|
+
font-size: 1.4375em; } }
|
1281
|
+
/*
|
1282
|
+
* Print styles.
|
1283
|
+
*
|
1284
|
+
* Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
|
1285
|
+
* Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
|
1286
|
+
*/
|
1287
|
+
.print-only {
|
1288
|
+
display: none !important; }
|
1289
|
+
|
1290
|
+
@media print {
|
1291
|
+
* {
|
1292
|
+
background: transparent !important;
|
1293
|
+
color: #000 !important;
|
1294
|
+
/* Black prints faster: h5bp.com/s */
|
1295
|
+
box-shadow: none !important;
|
1296
|
+
text-shadow: none !important; }
|
1297
|
+
|
1298
|
+
a,
|
1299
|
+
a:visited {
|
1300
|
+
text-decoration: underline; }
|
1301
|
+
|
1302
|
+
a[href]:after {
|
1303
|
+
content: " (" attr(href) ")"; }
|
1304
|
+
|
1305
|
+
abbr[title]:after {
|
1306
|
+
content: " (" attr(title) ")"; }
|
1307
|
+
|
1308
|
+
.ir a:after,
|
1309
|
+
a[href^="javascript:"]:after,
|
1310
|
+
a[href^="#"]:after {
|
1311
|
+
content: ""; }
|
1312
|
+
|
1313
|
+
pre,
|
1314
|
+
blockquote {
|
1315
|
+
border: 1px solid #999;
|
1316
|
+
page-break-inside: avoid; }
|
1317
|
+
|
1318
|
+
thead {
|
1319
|
+
display: table-header-group;
|
1320
|
+
/* h5bp.com/t */ }
|
1321
|
+
|
1322
|
+
tr,
|
1323
|
+
img {
|
1324
|
+
page-break-inside: avoid; }
|
1325
|
+
|
1326
|
+
img {
|
1327
|
+
max-width: 100% !important; }
|
1328
|
+
|
1329
|
+
@page {
|
1330
|
+
margin: 0.5cm; }
|
1331
|
+
|
1332
|
+
p,
|
1333
|
+
h2,
|
1334
|
+
h3 {
|
1335
|
+
orphans: 3;
|
1336
|
+
widows: 3; }
|
1337
|
+
|
1338
|
+
h2,
|
1339
|
+
h3 {
|
1340
|
+
page-break-after: avoid; }
|
1341
|
+
|
1342
|
+
.hide-on-print {
|
1343
|
+
display: none !important; }
|
1344
|
+
|
1345
|
+
.print-only {
|
1346
|
+
display: block !important; }
|
1347
|
+
|
1348
|
+
.hide-for-print {
|
1349
|
+
display: none !important; }
|
1350
|
+
|
1351
|
+
.show-for-print {
|
1352
|
+
display: inherit !important; } }
|
1353
|
+
button, .button {
|
1354
|
+
border-style: solid;
|
1355
|
+
border-width: 1px;
|
1356
|
+
cursor: pointer;
|
1357
|
+
font-family: inherit;
|
1358
|
+
font-weight: bold;
|
1359
|
+
line-height: 1;
|
1360
|
+
margin: 0 0 1.25em;
|
1361
|
+
position: relative;
|
1362
|
+
text-decoration: none;
|
1363
|
+
text-align: center;
|
1364
|
+
display: inline-block;
|
1365
|
+
padding-top: 0.75em;
|
1366
|
+
padding-right: 1.5em;
|
1367
|
+
padding-bottom: 0.8125em;
|
1368
|
+
padding-left: 1.5em;
|
1369
|
+
font-size: 1em;
|
1370
|
+
background-color: #2ba6cb;
|
1371
|
+
border-color: #2284a1;
|
1372
|
+
color: white; }
|
1373
|
+
button:hover, button:focus, .button:hover, .button:focus {
|
1374
|
+
background-color: #2284a1; }
|
1375
|
+
button:hover, button:focus, .button:hover, .button:focus {
|
1376
|
+
color: white; }
|
1377
|
+
button.secondary, .button.secondary {
|
1378
|
+
background-color: #e9e9e9;
|
1379
|
+
border-color: #d0d0d0;
|
1380
|
+
color: #333333; }
|
1381
|
+
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
|
1382
|
+
background-color: #d0d0d0; }
|
1383
|
+
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
|
1384
|
+
color: #333333; }
|
1385
|
+
button.success, .button.success {
|
1386
|
+
background-color: #5da423;
|
1387
|
+
border-color: #457a1a;
|
1388
|
+
color: white; }
|
1389
|
+
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
|
1390
|
+
background-color: #457a1a; }
|
1391
|
+
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
|
1392
|
+
color: white; }
|
1393
|
+
button.alert, .button.alert {
|
1394
|
+
background-color: #c60f13;
|
1395
|
+
border-color: #970b0e;
|
1396
|
+
color: white; }
|
1397
|
+
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
|
1398
|
+
background-color: #970b0e; }
|
1399
|
+
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
|
1400
|
+
color: white; }
|
1401
|
+
button.large, .button.large {
|
1402
|
+
padding-top: 1em;
|
1403
|
+
padding-right: 2em;
|
1404
|
+
padding-bottom: 1.0625em;
|
1405
|
+
padding-left: 2em;
|
1406
|
+
font-size: 1.25em; }
|
1407
|
+
button.small, .button.small {
|
1408
|
+
padding-top: 0.5625em;
|
1409
|
+
padding-right: 1.125em;
|
1410
|
+
padding-bottom: 0.625em;
|
1411
|
+
padding-left: 1.125em;
|
1412
|
+
font-size: 0.8125em; }
|
1413
|
+
button.tiny, .button.tiny {
|
1414
|
+
padding-top: 0.4375em;
|
1415
|
+
padding-right: 0.875em;
|
1416
|
+
padding-bottom: 0.5em;
|
1417
|
+
padding-left: 0.875em;
|
1418
|
+
font-size: 0.6875em; }
|
1419
|
+
button.expand, .button.expand {
|
1420
|
+
padding-right: 0px;
|
1421
|
+
padding-left: 0px;
|
1422
|
+
width: 100%; }
|
1423
|
+
button.left-align, .button.left-align {
|
1424
|
+
text-align: left;
|
1425
|
+
text-indent: 0.75em; }
|
1426
|
+
button.right-align, .button.right-align {
|
1427
|
+
text-align: right;
|
1428
|
+
padding-right: 0.75em; }
|
1429
|
+
button.disabled, button[disabled], .button.disabled, .button[disabled] {
|
1430
|
+
background-color: #2ba6cb;
|
1431
|
+
border-color: #2284a1;
|
1432
|
+
color: white;
|
1433
|
+
cursor: default;
|
1434
|
+
opacity: 0.6;
|
1435
|
+
-webkit-box-shadow: none;
|
1436
|
+
box-shadow: none; }
|
1437
|
+
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
|
1438
|
+
background-color: #2284a1; }
|
1439
|
+
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
|
1440
|
+
color: white; }
|
1441
|
+
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
|
1442
|
+
background-color: #2ba6cb; }
|
1443
|
+
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
|
1444
|
+
background-color: #e9e9e9;
|
1445
|
+
border-color: #d0d0d0;
|
1446
|
+
color: #333333;
|
1447
|
+
cursor: default;
|
1448
|
+
opacity: 0.6;
|
1449
|
+
-webkit-box-shadow: none;
|
1450
|
+
box-shadow: none; }
|
1451
|
+
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
|
1452
|
+
background-color: #d0d0d0; }
|
1453
|
+
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
|
1454
|
+
color: #333333; }
|
1455
|
+
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
|
1456
|
+
background-color: #e9e9e9; }
|
1457
|
+
button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
|
1458
|
+
background-color: #5da423;
|
1459
|
+
border-color: #457a1a;
|
1460
|
+
color: white;
|
1461
|
+
cursor: default;
|
1462
|
+
opacity: 0.6;
|
1463
|
+
-webkit-box-shadow: none;
|
1464
|
+
box-shadow: none; }
|
1465
|
+
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
|
1466
|
+
background-color: #457a1a; }
|
1467
|
+
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
|
1468
|
+
color: white; }
|
1469
|
+
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
|
1470
|
+
background-color: #5da423; }
|
1471
|
+
button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
|
1472
|
+
background-color: #c60f13;
|
1473
|
+
border-color: #970b0e;
|
1474
|
+
color: white;
|
1475
|
+
cursor: default;
|
1476
|
+
opacity: 0.6;
|
1477
|
+
-webkit-box-shadow: none;
|
1478
|
+
box-shadow: none; }
|
1479
|
+
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
|
1480
|
+
background-color: #970b0e; }
|
1481
|
+
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
|
1482
|
+
color: white; }
|
1483
|
+
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
|
1484
|
+
background-color: #c60f13; }
|
1485
|
+
|
1486
|
+
button, .button {
|
1487
|
+
padding-top: 0.8125em;
|
1488
|
+
padding-bottom: 0.75em; }
|
1489
|
+
button.tiny, .button.tiny {
|
1490
|
+
padding-top: 0.5em;
|
1491
|
+
padding-bottom: 0.4375em; }
|
1492
|
+
button.small, .button.small {
|
1493
|
+
padding-top: 0.625em;
|
1494
|
+
padding-bottom: 0.5625em; }
|
1495
|
+
button.large, .button.large {
|
1496
|
+
padding-top: 1.03125em;
|
1497
|
+
padding-bottom: 1.03125em; }
|
1498
|
+
|
1499
|
+
@media only screen {
|
1500
|
+
button, .button {
|
1501
|
+
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
|
1502
|
+
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
|
1503
|
+
-webkit-transition: background-color 300ms ease-out;
|
1504
|
+
-moz-transition: background-color 300ms ease-out;
|
1505
|
+
transition: background-color 300ms ease-out; }
|
1506
|
+
button:active, .button:active {
|
1507
|
+
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
|
1508
|
+
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
|
1509
|
+
button.radius, .button.radius {
|
1510
|
+
-webkit-border-radius: 3px;
|
1511
|
+
border-radius: 3px; }
|
1512
|
+
button.round, .button.round {
|
1513
|
+
-webkit-border-radius: 1000px;
|
1514
|
+
border-radius: 1000px; } }
|
1515
|
+
@media only screen and (min-width: 48em) {
|
1516
|
+
button, .button {
|
1517
|
+
display: inline-block; } }
|
1518
|
+
/* Standard Forms */
|
1519
|
+
form {
|
1520
|
+
margin: 0 0 1em; }
|
1521
|
+
|
1522
|
+
/* Using forms within rows, we need to set some defaults */
|
1523
|
+
form .row .row {
|
1524
|
+
margin: -0.5em; }
|
1525
|
+
form .row .row .column,
|
1526
|
+
form .row .row .columns {
|
1527
|
+
padding: 0 0.5em; }
|
1528
|
+
form .row .row.collapse {
|
1529
|
+
margin: 0; }
|
1530
|
+
form .row .row.collapse .column,
|
1531
|
+
form .row .row.collapse .columns {
|
1532
|
+
padding: 0; }
|
1533
|
+
form .row input.column,
|
1534
|
+
form .row input.columns,
|
1535
|
+
form .row textarea.column,
|
1536
|
+
form .row textarea.columns {
|
1537
|
+
padding-left: 0.5em; }
|
1538
|
+
|
1539
|
+
/* Label Styles */
|
1540
|
+
label {
|
1541
|
+
font-size: 0.875em;
|
1542
|
+
color: #4d4d4d;
|
1543
|
+
cursor: pointer;
|
1544
|
+
display: block;
|
1545
|
+
font-weight: 500;
|
1546
|
+
margin-bottom: 0.1875em; }
|
1547
|
+
label.right {
|
1548
|
+
float: none;
|
1549
|
+
text-align: right; }
|
1550
|
+
label.inline {
|
1551
|
+
margin: 0 0 1em 0;
|
1552
|
+
padding: 0.625em 0; }
|
1553
|
+
|
1554
|
+
/* Attach elements to the beginning or end of an input */
|
1555
|
+
.prefix,
|
1556
|
+
.postfix {
|
1557
|
+
display: block;
|
1558
|
+
position: relative;
|
1559
|
+
z-index: 2;
|
1560
|
+
text-align: center;
|
1561
|
+
width: 100%;
|
1562
|
+
padding-top: 0;
|
1563
|
+
padding-bottom: 0;
|
1564
|
+
border-style: solid;
|
1565
|
+
border-width: 1px;
|
1566
|
+
overflow: hidden;
|
1567
|
+
font-size: 0.875em;
|
1568
|
+
height: 2.3125em;
|
1569
|
+
line-height: 2.3125em; }
|
1570
|
+
|
1571
|
+
/* Adjust padding, alignment and radius if pre/post element is a button */
|
1572
|
+
.postfix.button {
|
1573
|
+
padding-left: 0;
|
1574
|
+
padding-right: 0;
|
1575
|
+
padding-top: 0;
|
1576
|
+
padding-bottom: 0;
|
1577
|
+
text-align: center;
|
1578
|
+
line-height: 2.125em; }
|
1579
|
+
|
1580
|
+
.prefix.button {
|
1581
|
+
padding-left: 0;
|
1582
|
+
padding-right: 0;
|
1583
|
+
padding-top: 0;
|
1584
|
+
padding-bottom: 0;
|
1585
|
+
text-align: center;
|
1586
|
+
line-height: 2.125em; }
|
1587
|
+
|
1588
|
+
.prefix.button.radius {
|
1589
|
+
-webkit-border-radius: 0;
|
1590
|
+
border-radius: 0;
|
1591
|
+
-moz-border-radius-bottomleft: 3px;
|
1592
|
+
-moz-border-radius-topleft: 3px;
|
1593
|
+
-webkit-border-bottom-left-radius: 3px;
|
1594
|
+
-webkit-border-top-left-radius: 3px;
|
1595
|
+
border-bottom-left-radius: 3px;
|
1596
|
+
border-top-left-radius: 3px; }
|
1597
|
+
|
1598
|
+
.postfix.button.radius {
|
1599
|
+
-webkit-border-radius: 0;
|
1600
|
+
border-radius: 0;
|
1601
|
+
-moz-border-radius-topright: 3px;
|
1602
|
+
-moz-border-radius-bottomright: 3px;
|
1603
|
+
-webkit-border-top-right-radius: 3px;
|
1604
|
+
-webkit-border-bottom-right-radius: 3px;
|
1605
|
+
border-top-right-radius: 3px;
|
1606
|
+
border-bottom-right-radius: 3px; }
|
1607
|
+
|
1608
|
+
.prefix.button.round {
|
1609
|
+
-webkit-border-radius: 0;
|
1610
|
+
border-radius: 0;
|
1611
|
+
-moz-border-radius-bottomleft: 1000px;
|
1612
|
+
-moz-border-radius-topleft: 1000px;
|
1613
|
+
-webkit-border-bottom-left-radius: 1000px;
|
1614
|
+
-webkit-border-top-left-radius: 1000px;
|
1615
|
+
border-bottom-left-radius: 1000px;
|
1616
|
+
border-top-left-radius: 1000px; }
|
1617
|
+
|
1618
|
+
.postfix.button.round {
|
1619
|
+
-webkit-border-radius: 0;
|
1620
|
+
border-radius: 0;
|
1621
|
+
-moz-border-radius-topright: 1000px;
|
1622
|
+
-moz-border-radius-bottomright: 1000px;
|
1623
|
+
-webkit-border-top-right-radius: 1000px;
|
1624
|
+
-webkit-border-bottom-right-radius: 1000px;
|
1625
|
+
border-top-right-radius: 1000px;
|
1626
|
+
border-bottom-right-radius: 1000px; }
|
1627
|
+
|
1628
|
+
/* Separate prefix and postfix styles when on span so buttons keep their own */
|
1629
|
+
span.prefix {
|
1630
|
+
background: #f2f2f2;
|
1631
|
+
border-color: #d9d9d9;
|
1632
|
+
border-right: none;
|
1633
|
+
color: #333333; }
|
1634
|
+
span.prefix.radius {
|
1635
|
+
-webkit-border-radius: 0;
|
1636
|
+
border-radius: 0;
|
1637
|
+
-moz-border-radius-bottomleft: 3px;
|
1638
|
+
-moz-border-radius-topleft: 3px;
|
1639
|
+
-webkit-border-bottom-left-radius: 3px;
|
1640
|
+
-webkit-border-top-left-radius: 3px;
|
1641
|
+
border-bottom-left-radius: 3px;
|
1642
|
+
border-top-left-radius: 3px; }
|
1643
|
+
|
1644
|
+
span.postfix {
|
1645
|
+
background: #f2f2f2;
|
1646
|
+
border-color: #cccccc;
|
1647
|
+
border-left: none;
|
1648
|
+
color: #333333; }
|
1649
|
+
span.postfix.radius {
|
1650
|
+
-webkit-border-radius: 0;
|
1651
|
+
border-radius: 0;
|
1652
|
+
-moz-border-radius-topright: 3px;
|
1653
|
+
-moz-border-radius-bottomright: 3px;
|
1654
|
+
-webkit-border-top-right-radius: 3px;
|
1655
|
+
-webkit-border-bottom-right-radius: 3px;
|
1656
|
+
border-top-right-radius: 3px;
|
1657
|
+
border-bottom-right-radius: 3px; }
|
1658
|
+
|
1659
|
+
/* Input groups will automatically style first and last elements of the group */
|
1660
|
+
.input-group.radius > *:first-child, .input-group.radius > *:first-child * {
|
1661
|
+
-moz-border-radius-bottomleft: 3px;
|
1662
|
+
-moz-border-radius-topleft: 3px;
|
1663
|
+
-webkit-border-bottom-left-radius: 3px;
|
1664
|
+
-webkit-border-top-left-radius: 3px;
|
1665
|
+
border-bottom-left-radius: 3px;
|
1666
|
+
border-top-left-radius: 3px; }
|
1667
|
+
.input-group.radius > *:last-child, .input-group.radius > *:last-child * {
|
1668
|
+
-moz-border-radius-topright: 3px;
|
1669
|
+
-moz-border-radius-bottomright: 3px;
|
1670
|
+
-webkit-border-top-right-radius: 3px;
|
1671
|
+
-webkit-border-bottom-right-radius: 3px;
|
1672
|
+
border-top-right-radius: 3px;
|
1673
|
+
border-bottom-right-radius: 3px; }
|
1674
|
+
.input-group.round > *:first-child, .input-group.round > *:first-child * {
|
1675
|
+
-moz-border-radius-bottomleft: 1000px;
|
1676
|
+
-moz-border-radius-topleft: 1000px;
|
1677
|
+
-webkit-border-bottom-left-radius: 1000px;
|
1678
|
+
-webkit-border-top-left-radius: 1000px;
|
1679
|
+
border-bottom-left-radius: 1000px;
|
1680
|
+
border-top-left-radius: 1000px; }
|
1681
|
+
.input-group.round > *:last-child, .input-group.round > *:last-child * {
|
1682
|
+
-moz-border-radius-topright: 1000px;
|
1683
|
+
-moz-border-radius-bottomright: 1000px;
|
1684
|
+
-webkit-border-top-right-radius: 1000px;
|
1685
|
+
-webkit-border-bottom-right-radius: 1000px;
|
1686
|
+
border-top-right-radius: 1000px;
|
1687
|
+
border-bottom-right-radius: 1000px; }
|
1688
|
+
|
1689
|
+
/* We use this to get basic styling on all basic form elements */
|
1690
|
+
input[type="text"],
|
1691
|
+
input[type="password"],
|
1692
|
+
input[type="date"],
|
1693
|
+
input[type="datetime"],
|
1694
|
+
input[type="datetime-local"],
|
1695
|
+
input[type="month"],
|
1696
|
+
input[type="week"],
|
1697
|
+
input[type="email"],
|
1698
|
+
input[type="number"],
|
1699
|
+
input[type="search"],
|
1700
|
+
input[type="tel"],
|
1701
|
+
input[type="time"],
|
1702
|
+
input[type="url"],
|
1703
|
+
textarea {
|
1704
|
+
background-color: white;
|
1705
|
+
font-family: inherit;
|
1706
|
+
border: 1px solid #cccccc;
|
1707
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
1708
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
1709
|
+
color: rgba(0, 0, 0, 0.75);
|
1710
|
+
display: block;
|
1711
|
+
font-size: 0.875em;
|
1712
|
+
margin: 0 0 1em 0;
|
1713
|
+
padding: 0.5em;
|
1714
|
+
height: 2.3125em;
|
1715
|
+
width: 100%;
|
1716
|
+
-moz-box-sizing: border-box;
|
1717
|
+
-webkit-box-sizing: border-box;
|
1718
|
+
box-sizing: border-box;
|
1719
|
+
-webkit-transition: all 0.15s linear;
|
1720
|
+
-moz-transition: all 0.15s linear;
|
1721
|
+
transition: all 0.15s linear; }
|
1722
|
+
input[type="text"]:focus,
|
1723
|
+
input[type="password"]:focus,
|
1724
|
+
input[type="date"]:focus,
|
1725
|
+
input[type="datetime"]:focus,
|
1726
|
+
input[type="datetime-local"]:focus,
|
1727
|
+
input[type="month"]:focus,
|
1728
|
+
input[type="week"]:focus,
|
1729
|
+
input[type="email"]:focus,
|
1730
|
+
input[type="number"]:focus,
|
1731
|
+
input[type="search"]:focus,
|
1732
|
+
input[type="tel"]:focus,
|
1733
|
+
input[type="time"]:focus,
|
1734
|
+
input[type="url"]:focus,
|
1735
|
+
textarea:focus {
|
1736
|
+
background: #fafafa;
|
1737
|
+
border-color: #999999;
|
1738
|
+
outline: none; }
|
1739
|
+
input[type="text"][disabled],
|
1740
|
+
input[type="password"][disabled],
|
1741
|
+
input[type="date"][disabled],
|
1742
|
+
input[type="datetime"][disabled],
|
1743
|
+
input[type="datetime-local"][disabled],
|
1744
|
+
input[type="month"][disabled],
|
1745
|
+
input[type="week"][disabled],
|
1746
|
+
input[type="email"][disabled],
|
1747
|
+
input[type="number"][disabled],
|
1748
|
+
input[type="search"][disabled],
|
1749
|
+
input[type="tel"][disabled],
|
1750
|
+
input[type="time"][disabled],
|
1751
|
+
input[type="url"][disabled],
|
1752
|
+
textarea[disabled] {
|
1753
|
+
background-color: #dddddd; }
|
1754
|
+
|
1755
|
+
/* Adjust margin for form elements below */
|
1756
|
+
input[type="file"],
|
1757
|
+
input[type="checkbox"],
|
1758
|
+
input[type="radio"],
|
1759
|
+
select {
|
1760
|
+
margin: 0 0 1em 0; }
|
1761
|
+
|
1762
|
+
/* We add basic fieldset styling */
|
1763
|
+
fieldset {
|
1764
|
+
border: solid 1px #dddddd;
|
1765
|
+
padding: 1.25em;
|
1766
|
+
margin: 1.125em 0; }
|
1767
|
+
fieldset legend {
|
1768
|
+
font-weight: bold;
|
1769
|
+
background: white;
|
1770
|
+
padding: 0 0.1875em;
|
1771
|
+
margin: 0;
|
1772
|
+
margin-left: -0.1875em; }
|
1773
|
+
|
1774
|
+
/* Error Handling */
|
1775
|
+
.error input,
|
1776
|
+
input.error,
|
1777
|
+
.error textarea,
|
1778
|
+
textarea.error {
|
1779
|
+
border-color: #c60f13;
|
1780
|
+
background-color: rgba(198, 15, 19, 0.1); }
|
1781
|
+
.error input:focus,
|
1782
|
+
input.error:focus,
|
1783
|
+
.error textarea:focus,
|
1784
|
+
textarea.error:focus {
|
1785
|
+
background: #fafafa;
|
1786
|
+
border-color: #999999; }
|
1787
|
+
|
1788
|
+
.error label,
|
1789
|
+
label.error {
|
1790
|
+
color: #c60f13; }
|
1791
|
+
|
1792
|
+
.error small,
|
1793
|
+
small.error {
|
1794
|
+
display: block;
|
1795
|
+
padding: 0.375em 0.25em;
|
1796
|
+
margin-top: -1.3125em;
|
1797
|
+
margin-bottom: 1em;
|
1798
|
+
font-size: 0.75em;
|
1799
|
+
font-weight: bold;
|
1800
|
+
background: #c60f13;
|
1801
|
+
color: white; }
|
1802
|
+
|
1803
|
+
/* Custom Checkbox and Radio Inputs */
|
1804
|
+
form.custom .custom {
|
1805
|
+
display: inline-block;
|
1806
|
+
width: 16px;
|
1807
|
+
height: 16px;
|
1808
|
+
position: relative;
|
1809
|
+
top: 2px;
|
1810
|
+
border: solid 1px #cccccc;
|
1811
|
+
background: white; }
|
1812
|
+
form.custom .custom.radio {
|
1813
|
+
-webkit-border-radius: 1000px;
|
1814
|
+
border-radius: 1000px; }
|
1815
|
+
form.custom .custom.checkbox:before {
|
1816
|
+
content: "";
|
1817
|
+
display: block;
|
1818
|
+
line-height: 0.8;
|
1819
|
+
height: 14px;
|
1820
|
+
width: 14px;
|
1821
|
+
text-align: center;
|
1822
|
+
position: absolute;
|
1823
|
+
top: 0;
|
1824
|
+
left: 0;
|
1825
|
+
font-size: 14px;
|
1826
|
+
color: #fff; }
|
1827
|
+
form.custom .custom.radio.checked:before {
|
1828
|
+
content: "";
|
1829
|
+
display: block;
|
1830
|
+
width: 8px;
|
1831
|
+
height: 8px;
|
1832
|
+
-webkit-border-radius: 1000px;
|
1833
|
+
border-radius: 1000px;
|
1834
|
+
background: #222222;
|
1835
|
+
position: relative;
|
1836
|
+
top: 3px;
|
1837
|
+
left: 3px; }
|
1838
|
+
form.custom .custom.checkbox.checked:before {
|
1839
|
+
content: "\00d7";
|
1840
|
+
color: #222222; }
|
1841
|
+
|
1842
|
+
/* Custom Select Options and Dropdowns */
|
1843
|
+
form.custom {
|
1844
|
+
/* Custom input, disabled */ }
|
1845
|
+
form.custom .custom.dropdown {
|
1846
|
+
display: block;
|
1847
|
+
position: relative;
|
1848
|
+
top: 0;
|
1849
|
+
height: 2.3125em;
|
1850
|
+
margin-bottom: 1.25em;
|
1851
|
+
margin-top: 0px;
|
1852
|
+
padding: 0px;
|
1853
|
+
width: 100%;
|
1854
|
+
background: white;
|
1855
|
+
background: -moz-linear-gradient(top, white 0%, #f3f3f3 100%);
|
1856
|
+
background: -webkit-linear-gradient(top, white 0%, #f3f3f3 100%);
|
1857
|
+
background: linear-gradient(to bottom, white 0%, #f3f3f3 100%);
|
1858
|
+
-webkit-box-shadow: none;
|
1859
|
+
box-shadow: none;
|
1860
|
+
font-size: 0.875em;
|
1861
|
+
vertical-align: top; }
|
1862
|
+
form.custom .custom.dropdown ul {
|
1863
|
+
overflow-y: auto;
|
1864
|
+
max-height: 200px; }
|
1865
|
+
form.custom .custom.dropdown .current {
|
1866
|
+
cursor: default;
|
1867
|
+
white-space: nowrap;
|
1868
|
+
line-height: 2.25em;
|
1869
|
+
color: rgba(0, 0, 0, 0.75);
|
1870
|
+
text-decoration: none;
|
1871
|
+
overflow: hidden;
|
1872
|
+
display: block;
|
1873
|
+
margin-left: 0.5em;
|
1874
|
+
margin-right: 2.3125em; }
|
1875
|
+
form.custom .custom.dropdown .selector {
|
1876
|
+
cursor: default;
|
1877
|
+
position: absolute;
|
1878
|
+
width: 2.5em;
|
1879
|
+
height: 2.3125em;
|
1880
|
+
display: block;
|
1881
|
+
right: 0;
|
1882
|
+
top: 0; }
|
1883
|
+
form.custom .custom.dropdown .selector:after {
|
1884
|
+
content: "";
|
1885
|
+
display: block;
|
1886
|
+
content: "";
|
1887
|
+
display: block;
|
1888
|
+
width: 0;
|
1889
|
+
height: 0;
|
1890
|
+
border: solid 5px;
|
1891
|
+
border-color: #aaaaaa transparent transparent transparent;
|
1892
|
+
position: absolute;
|
1893
|
+
left: 0.9375em;
|
1894
|
+
top: 50%;
|
1895
|
+
margin-top: -3px; }
|
1896
|
+
form.custom .custom.dropdown:hover a.selector:after, form.custom .custom.dropdown.open a.selector:after {
|
1897
|
+
content: "";
|
1898
|
+
display: block;
|
1899
|
+
width: 0;
|
1900
|
+
height: 0;
|
1901
|
+
border: solid 5px;
|
1902
|
+
border-color: #222222 transparent transparent transparent; }
|
1903
|
+
form.custom .custom.dropdown .disabled {
|
1904
|
+
color: #888888; }
|
1905
|
+
form.custom .custom.dropdown .disabled:hover {
|
1906
|
+
background: transparent;
|
1907
|
+
color: #888888; }
|
1908
|
+
form.custom .custom.dropdown .disabled:hover:after {
|
1909
|
+
display: none; }
|
1910
|
+
form.custom .custom.dropdown.open ul {
|
1911
|
+
display: block;
|
1912
|
+
z-index: 10;
|
1913
|
+
min-width: 100%;
|
1914
|
+
-moz-box-sizing: content-box;
|
1915
|
+
-webkit-box-sizing: content-box;
|
1916
|
+
box-sizing: content-box; }
|
1917
|
+
form.custom .custom.dropdown.small {
|
1918
|
+
max-width: 134px; }
|
1919
|
+
form.custom .custom.dropdown.medium {
|
1920
|
+
max-width: 254px; }
|
1921
|
+
form.custom .custom.dropdown.large {
|
1922
|
+
max-width: 434px; }
|
1923
|
+
form.custom .custom.dropdown.expand {
|
1924
|
+
width: 100% !important; }
|
1925
|
+
form.custom .custom.dropdown.open.small ul {
|
1926
|
+
min-width: 134px;
|
1927
|
+
-moz-box-sizing: border-box;
|
1928
|
+
-webkit-box-sizing: border-box;
|
1929
|
+
box-sizing: border-box; }
|
1930
|
+
form.custom .custom.dropdown.open.medium ul {
|
1931
|
+
min-width: 254px;
|
1932
|
+
-moz-box-sizing: border-box;
|
1933
|
+
-webkit-box-sizing: border-box;
|
1934
|
+
box-sizing: border-box; }
|
1935
|
+
form.custom .custom.dropdown.open.large ul {
|
1936
|
+
min-width: 434px;
|
1937
|
+
-moz-box-sizing: border-box;
|
1938
|
+
-webkit-box-sizing: border-box;
|
1939
|
+
box-sizing: border-box; }
|
1940
|
+
form.custom .custom.dropdown ul {
|
1941
|
+
position: absolute;
|
1942
|
+
width: auto;
|
1943
|
+
display: none;
|
1944
|
+
margin: 0;
|
1945
|
+
left: -1px;
|
1946
|
+
top: auto;
|
1947
|
+
-webkit-box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
|
1948
|
+
box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
|
1949
|
+
margin: 0;
|
1950
|
+
padding: 0;
|
1951
|
+
background: white;
|
1952
|
+
border: solid 1px #cccccc;
|
1953
|
+
font-size: 16px; }
|
1954
|
+
form.custom .custom.dropdown ul li {
|
1955
|
+
color: #555555;
|
1956
|
+
font-size: 0.875em;
|
1957
|
+
cursor: default;
|
1958
|
+
padding-top: 0.25em;
|
1959
|
+
padding-bottom: 0.25em;
|
1960
|
+
padding-left: 0.375em;
|
1961
|
+
padding-right: 2.375em;
|
1962
|
+
min-height: 1.5em;
|
1963
|
+
line-height: 1.5em;
|
1964
|
+
margin: 0;
|
1965
|
+
white-space: nowrap;
|
1966
|
+
list-style: none; }
|
1967
|
+
form.custom .custom.dropdown ul li.selected {
|
1968
|
+
background: #eeeeee;
|
1969
|
+
color: black; }
|
1970
|
+
form.custom .custom.dropdown ul li:hover {
|
1971
|
+
background-color: #e4e4e4;
|
1972
|
+
color: black; }
|
1973
|
+
form.custom .custom.dropdown ul li.selected:hover {
|
1974
|
+
background: #eeeeee;
|
1975
|
+
cursor: default;
|
1976
|
+
color: black; }
|
1977
|
+
form.custom .custom.dropdown ul.show {
|
1978
|
+
display: block; }
|
1979
|
+
form.custom .custom.disabled {
|
1980
|
+
background-color: #dddddd; }
|
1981
|
+
|
1982
|
+
/* Button Groups */
|
1983
|
+
.button-group {
|
1984
|
+
list-style: none;
|
1985
|
+
margin: 0;
|
1986
|
+
*zoom: 1; }
|
1987
|
+
.button-group:before, .button-group:after {
|
1988
|
+
content: " ";
|
1989
|
+
display: table; }
|
1990
|
+
.button-group:after {
|
1991
|
+
clear: both; }
|
1992
|
+
.button-group > * {
|
1993
|
+
margin: 0 0 0 -1px;
|
1994
|
+
float: left; }
|
1995
|
+
.button-group > *:first-child {
|
1996
|
+
margin-left: 0; }
|
1997
|
+
.button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
|
1998
|
+
-moz-border-radius-bottomleft: 3px;
|
1999
|
+
-moz-border-radius-topleft: 3px;
|
2000
|
+
-webkit-border-bottom-left-radius: 3px;
|
2001
|
+
-webkit-border-top-left-radius: 3px;
|
2002
|
+
border-bottom-left-radius: 3px;
|
2003
|
+
border-top-left-radius: 3px; }
|
2004
|
+
.button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
|
2005
|
+
-moz-border-radius-topright: 3px;
|
2006
|
+
-moz-border-radius-bottomright: 3px;
|
2007
|
+
-webkit-border-top-right-radius: 3px;
|
2008
|
+
-webkit-border-bottom-right-radius: 3px;
|
2009
|
+
border-top-right-radius: 3px;
|
2010
|
+
border-bottom-right-radius: 3px; }
|
2011
|
+
.button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
|
2012
|
+
-moz-border-radius-bottomleft: 1000px;
|
2013
|
+
-moz-border-radius-topleft: 1000px;
|
2014
|
+
-webkit-border-bottom-left-radius: 1000px;
|
2015
|
+
-webkit-border-top-left-radius: 1000px;
|
2016
|
+
border-bottom-left-radius: 1000px;
|
2017
|
+
border-top-left-radius: 1000px; }
|
2018
|
+
.button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
|
2019
|
+
-moz-border-radius-topright: 1000px;
|
2020
|
+
-moz-border-radius-bottomright: 1000px;
|
2021
|
+
-webkit-border-top-right-radius: 1000px;
|
2022
|
+
-webkit-border-bottom-right-radius: 1000px;
|
2023
|
+
border-top-right-radius: 1000px;
|
2024
|
+
border-bottom-right-radius: 1000px; }
|
2025
|
+
.button-group.even-2 li {
|
2026
|
+
width: 50%; }
|
2027
|
+
.button-group.even-2 li button, .button-group.even-2 li .button {
|
2028
|
+
width: 100%; }
|
2029
|
+
.button-group.even-3 li {
|
2030
|
+
width: 33.33333%; }
|
2031
|
+
.button-group.even-3 li button, .button-group.even-3 li .button {
|
2032
|
+
width: 100%; }
|
2033
|
+
.button-group.even-4 li {
|
2034
|
+
width: 25%; }
|
2035
|
+
.button-group.even-4 li button, .button-group.even-4 li .button {
|
2036
|
+
width: 100%; }
|
2037
|
+
.button-group.even-5 li {
|
2038
|
+
width: 20%; }
|
2039
|
+
.button-group.even-5 li button, .button-group.even-5 li .button {
|
2040
|
+
width: 100%; }
|
2041
|
+
.button-group.even-6 li {
|
2042
|
+
width: 16.66667%; }
|
2043
|
+
.button-group.even-6 li button, .button-group.even-6 li .button {
|
2044
|
+
width: 100%; }
|
2045
|
+
.button-group.even-7 li {
|
2046
|
+
width: 14.28571%; }
|
2047
|
+
.button-group.even-7 li button, .button-group.even-7 li .button {
|
2048
|
+
width: 100%; }
|
2049
|
+
.button-group.even-8 li {
|
2050
|
+
width: 12.5%; }
|
2051
|
+
.button-group.even-8 li button, .button-group.even-8 li .button {
|
2052
|
+
width: 100%; }
|
2053
|
+
|
2054
|
+
.button-bar {
|
2055
|
+
*zoom: 1; }
|
2056
|
+
.button-bar:before, .button-bar:after {
|
2057
|
+
content: " ";
|
2058
|
+
display: table; }
|
2059
|
+
.button-bar:after {
|
2060
|
+
clear: both; }
|
2061
|
+
.button-bar .button-group {
|
2062
|
+
float: left;
|
2063
|
+
margin-right: 0.625em; }
|
2064
|
+
.button-bar .button-group div {
|
2065
|
+
overflow: hidden; }
|
2066
|
+
|
2067
|
+
/* Dropdown Button */
|
2068
|
+
.dropdown.button {
|
2069
|
+
position: relative;
|
2070
|
+
padding-right: 3.1875em; }
|
2071
|
+
.dropdown.button:before {
|
2072
|
+
position: absolute;
|
2073
|
+
content: "";
|
2074
|
+
width: 0;
|
2075
|
+
height: 0;
|
2076
|
+
display: block;
|
2077
|
+
border-style: solid;
|
2078
|
+
border-color: white transparent transparent transparent;
|
2079
|
+
top: 50%; }
|
2080
|
+
.dropdown.button:before {
|
2081
|
+
border-width: 0.5625em;
|
2082
|
+
right: 1.5em;
|
2083
|
+
margin-top: -0.25em; }
|
2084
|
+
.dropdown.button:before {
|
2085
|
+
border-color: white transparent transparent transparent; }
|
2086
|
+
.dropdown.button.tiny {
|
2087
|
+
padding-right: 2.1875em; }
|
2088
|
+
.dropdown.button.tiny:before {
|
2089
|
+
border-width: 0.4375em;
|
2090
|
+
right: 0.875em;
|
2091
|
+
margin-top: -0.15625em; }
|
2092
|
+
.dropdown.button.tiny:before {
|
2093
|
+
border-color: white transparent transparent transparent; }
|
2094
|
+
.dropdown.button.small {
|
2095
|
+
padding-right: 2.8125em; }
|
2096
|
+
.dropdown.button.small:before {
|
2097
|
+
border-width: 0.5625em;
|
2098
|
+
right: 1.125em;
|
2099
|
+
margin-top: -0.21875em; }
|
2100
|
+
.dropdown.button.small:before {
|
2101
|
+
border-color: white transparent transparent transparent; }
|
2102
|
+
.dropdown.button.large {
|
2103
|
+
padding-right: 4em; }
|
2104
|
+
.dropdown.button.large:before {
|
2105
|
+
border-width: 0.625em;
|
2106
|
+
right: 1.75em;
|
2107
|
+
margin-top: -0.3125em; }
|
2108
|
+
.dropdown.button.large:before {
|
2109
|
+
border-color: white transparent transparent transparent; }
|
2110
|
+
.dropdown.button.secondary:before {
|
2111
|
+
border-color: #333333 transparent transparent transparent; }
|
2112
|
+
|
2113
|
+
/* Split Buttons */
|
2114
|
+
.split.button {
|
2115
|
+
position: relative;
|
2116
|
+
padding-right: 4.8em; }
|
2117
|
+
.split.button span {
|
2118
|
+
display: block;
|
2119
|
+
height: 100%;
|
2120
|
+
position: absolute;
|
2121
|
+
right: 0;
|
2122
|
+
top: 0;
|
2123
|
+
border-left: solid 1px; }
|
2124
|
+
.split.button span:before {
|
2125
|
+
position: absolute;
|
2126
|
+
content: "";
|
2127
|
+
width: 0;
|
2128
|
+
height: 0;
|
2129
|
+
display: block;
|
2130
|
+
border-style: solid;
|
2131
|
+
left: 50%; }
|
2132
|
+
.split.button span:active {
|
2133
|
+
background-color: rgba(0, 0, 0, 0.1); }
|
2134
|
+
.split.button span {
|
2135
|
+
border-left-color: #1e728c; }
|
2136
|
+
.split.button span {
|
2137
|
+
width: 3em; }
|
2138
|
+
.split.button span:before {
|
2139
|
+
border-width: 0.5625em;
|
2140
|
+
top: 1.125em;
|
2141
|
+
margin-left: -0.5625em; }
|
2142
|
+
.split.button span:before {
|
2143
|
+
border-color: white transparent transparent transparent; }
|
2144
|
+
.split.button.secondary span {
|
2145
|
+
border-left-color: #c3c3c3; }
|
2146
|
+
.split.button.secondary span:before {
|
2147
|
+
border-color: white transparent transparent transparent; }
|
2148
|
+
.split.button.alert span {
|
2149
|
+
border-left-color: #7f0a0c; }
|
2150
|
+
.split.button.success span {
|
2151
|
+
border-left-color: #396516; }
|
2152
|
+
.split.button.tiny {
|
2153
|
+
padding-right: 3.9375em; }
|
2154
|
+
.split.button.tiny span {
|
2155
|
+
width: 2.84375em; }
|
2156
|
+
.split.button.tiny span:before {
|
2157
|
+
border-width: 0.4375em;
|
2158
|
+
top: 0.875em;
|
2159
|
+
margin-left: -0.3125em; }
|
2160
|
+
.split.button.small {
|
2161
|
+
padding-right: 3.9375em; }
|
2162
|
+
.split.button.small span {
|
2163
|
+
width: 2.8125em; }
|
2164
|
+
.split.button.small span:before {
|
2165
|
+
border-width: 0.5625em;
|
2166
|
+
top: 0.84375em;
|
2167
|
+
margin-left: -0.5625em; }
|
2168
|
+
.split.button.large {
|
2169
|
+
padding-right: 6em; }
|
2170
|
+
.split.button.large span {
|
2171
|
+
width: 3.75em; }
|
2172
|
+
.split.button.large span:before {
|
2173
|
+
border-width: 0.625em;
|
2174
|
+
top: 1.3125em;
|
2175
|
+
margin-left: -0.5625em; }
|
2176
|
+
.split.button.secondary span:before {
|
2177
|
+
border-color: #333333 transparent transparent transparent; }
|
2178
|
+
.split.button.radius span {
|
2179
|
+
-moz-border-radius-topright: 3px;
|
2180
|
+
-moz-border-radius-bottomright: 3px;
|
2181
|
+
-webkit-border-top-right-radius: 3px;
|
2182
|
+
-webkit-border-bottom-right-radius: 3px;
|
2183
|
+
border-top-right-radius: 3px;
|
2184
|
+
border-bottom-right-radius: 3px; }
|
2185
|
+
.split.button.round span {
|
2186
|
+
-moz-border-radius-topright: 1000px;
|
2187
|
+
-moz-border-radius-bottomright: 1000px;
|
2188
|
+
-webkit-border-top-right-radius: 1000px;
|
2189
|
+
-webkit-border-bottom-right-radius: 1000px;
|
2190
|
+
border-top-right-radius: 1000px;
|
2191
|
+
border-bottom-right-radius: 1000px; }
|
2192
|
+
|
2193
|
+
/* Flex Video */
|
2194
|
+
.flex-video {
|
2195
|
+
position: relative;
|
2196
|
+
padding-top: 1.5625em;
|
2197
|
+
padding-bottom: 67.5%;
|
2198
|
+
height: 0;
|
2199
|
+
margin-bottom: 1em;
|
2200
|
+
overflow: hidden; }
|
2201
|
+
.flex-video.widescreen {
|
2202
|
+
padding-bottom: 57.25%; }
|
2203
|
+
.flex-video.vimeo {
|
2204
|
+
padding-top: 0; }
|
2205
|
+
.flex-video iframe,
|
2206
|
+
.flex-video object,
|
2207
|
+
.flex-video embed,
|
2208
|
+
.flex-video video {
|
2209
|
+
position: absolute;
|
2210
|
+
top: 0;
|
2211
|
+
left: 0;
|
2212
|
+
width: 100%;
|
2213
|
+
height: 100%; }
|
2214
|
+
|
2215
|
+
/* Sections */
|
2216
|
+
.section-container, .section-container.auto {
|
2217
|
+
width: 100%;
|
2218
|
+
display: block;
|
2219
|
+
margin-bottom: 1.25em;
|
2220
|
+
border: 1px solid #cccccc;
|
2221
|
+
border-top: none; }
|
2222
|
+
.section-container > section, .section-container > .section, .section-container.auto > section, .section-container.auto > .section {
|
2223
|
+
border-top: 1px solid #cccccc;
|
2224
|
+
position: relative; }
|
2225
|
+
.section-container > section .title, .section-container > .section .title, .section-container.auto > section .title, .section-container.auto > .section .title {
|
2226
|
+
top: 0;
|
2227
|
+
cursor: pointer;
|
2228
|
+
width: 100%;
|
2229
|
+
margin: 0;
|
2230
|
+
background-color: #efefef; }
|
2231
|
+
.section-container > section .title a, .section-container > .section .title a, .section-container.auto > section .title a, .section-container.auto > .section .title a {
|
2232
|
+
padding: 0.9375em;
|
2233
|
+
display: inline-block;
|
2234
|
+
color: #333333;
|
2235
|
+
font-size: 0.875em;
|
2236
|
+
white-space: nowrap;
|
2237
|
+
width: 100%; }
|
2238
|
+
.section-container > section .title:hover, .section-container > .section .title:hover, .section-container.auto > section .title:hover, .section-container.auto > .section .title:hover {
|
2239
|
+
background-color: #e2e2e2; }
|
2240
|
+
.section-container > section .content, .section-container > .section .content, .section-container.auto > section .content, .section-container.auto > .section .content {
|
2241
|
+
display: none;
|
2242
|
+
padding: 0.9375em;
|
2243
|
+
background-color: white; }
|
2244
|
+
.section-container > section .content > *:last-child, .section-container > .section .content > *:last-child, .section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child {
|
2245
|
+
margin-bottom: 0; }
|
2246
|
+
.section-container > section .content > *:first-child, .section-container > .section .content > *:first-child, .section-container.auto > section .content > *:first-child, .section-container.auto > .section .content > *:first-child {
|
2247
|
+
padding-top: 0; }
|
2248
|
+
.section-container > section .content > *:last-child, .section-container > .section .content > *:last-child, .section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child {
|
2249
|
+
padding-bottom: 0; }
|
2250
|
+
.section-container > section.active .content, .section-container > .section.active .content, .section-container.auto > section.active .content, .section-container.auto > .section.active .content {
|
2251
|
+
display: block; }
|
2252
|
+
.section-container > section.active .title, .section-container > .section.active .title, .section-container.auto > section.active .title, .section-container.auto > .section.active .title {
|
2253
|
+
background: #d5d5d5; }
|
2254
|
+
|
2255
|
+
.section-container.tabs {
|
2256
|
+
border: 0;
|
2257
|
+
position: relative; }
|
2258
|
+
.section-container.tabs > section, .section-container.tabs > .section {
|
2259
|
+
padding-top: 0;
|
2260
|
+
border: 0;
|
2261
|
+
position: static; }
|
2262
|
+
.section-container.tabs > section .title, .section-container.tabs > .section .title {
|
2263
|
+
width: auto;
|
2264
|
+
border: 1px solid #cccccc;
|
2265
|
+
border-right: 0;
|
2266
|
+
border-bottom: 0;
|
2267
|
+
position: absolute;
|
2268
|
+
z-index: 1; }
|
2269
|
+
.section-container.tabs > section .title a, .section-container.tabs > .section .title a {
|
2270
|
+
width: 100%; }
|
2271
|
+
.section-container.tabs > section:last-child .title, .section-container.tabs > .section:last-child .title {
|
2272
|
+
border-right: 1px solid #cccccc; }
|
2273
|
+
.section-container.tabs > section .content, .section-container.tabs > .section .content {
|
2274
|
+
border: 1px solid #cccccc;
|
2275
|
+
position: absolute;
|
2276
|
+
z-index: 10;
|
2277
|
+
top: -1px; }
|
2278
|
+
.section-container.tabs > section.active .title, .section-container.tabs > .section.active .title {
|
2279
|
+
background-color: white;
|
2280
|
+
z-index: 11;
|
2281
|
+
border-bottom: 0; }
|
2282
|
+
.section-container.tabs > section.active .content, .section-container.tabs > .section.active .content {
|
2283
|
+
position: relative; }
|
2284
|
+
|
2285
|
+
@media only screen and (min-width: 48em) {
|
2286
|
+
.section-container.auto {
|
2287
|
+
border: 0;
|
2288
|
+
position: relative; }
|
2289
|
+
.section-container.auto > section, .section-container.auto > .section {
|
2290
|
+
padding-top: 0;
|
2291
|
+
border: 0;
|
2292
|
+
position: static; }
|
2293
|
+
.section-container.auto > section .title, .section-container.auto > .section .title {
|
2294
|
+
width: auto;
|
2295
|
+
border: 1px solid #cccccc;
|
2296
|
+
border-right: 0;
|
2297
|
+
border-bottom: 0;
|
2298
|
+
position: absolute;
|
2299
|
+
z-index: 1; }
|
2300
|
+
.section-container.auto > section .title a, .section-container.auto > .section .title a {
|
2301
|
+
width: 100%; }
|
2302
|
+
.section-container.auto > section:last-child .title, .section-container.auto > .section:last-child .title {
|
2303
|
+
border-right: 1px solid #cccccc; }
|
2304
|
+
.section-container.auto > section .content, .section-container.auto > .section .content {
|
2305
|
+
border: 1px solid #cccccc;
|
2306
|
+
position: absolute;
|
2307
|
+
z-index: 10;
|
2308
|
+
top: -1px; }
|
2309
|
+
.section-container.auto > section.active .title, .section-container.auto > .section.active .title {
|
2310
|
+
background-color: white;
|
2311
|
+
z-index: 11;
|
2312
|
+
border-bottom: 0; }
|
2313
|
+
.section-container.auto > section.active .content, .section-container.auto > .section.active .content {
|
2314
|
+
position: relative; }
|
2315
|
+
|
2316
|
+
.section-container.accordion .section {
|
2317
|
+
padding-top: 0 !important; }
|
2318
|
+
|
2319
|
+
.section-container.vertical-tabs {
|
2320
|
+
border: 1px solid #cccccc;
|
2321
|
+
position: relative; }
|
2322
|
+
.section-container.vertical-tabs section,
|
2323
|
+
.section-container.vertical-tabs .section {
|
2324
|
+
padding-top: 0 !important;
|
2325
|
+
border: 0;
|
2326
|
+
position: static;
|
2327
|
+
background-color: #efefef; }
|
2328
|
+
.section-container.vertical-tabs section .title,
|
2329
|
+
.section-container.vertical-tabs .section .title {
|
2330
|
+
position: absolute;
|
2331
|
+
border-top: 1px solid #cccccc;
|
2332
|
+
width: 12.5em; }
|
2333
|
+
.section-container.vertical-tabs section:first-child .title,
|
2334
|
+
.section-container.vertical-tabs .section:first-child .title {
|
2335
|
+
border-top: 0; }
|
2336
|
+
.section-container.vertical-tabs section .content,
|
2337
|
+
.section-container.vertical-tabs .section .content {
|
2338
|
+
display: block;
|
2339
|
+
position: relative;
|
2340
|
+
left: 12.5em;
|
2341
|
+
border-left: 1px solid #cccccc;
|
2342
|
+
z-index: 10; }
|
2343
|
+
.section-container.vertical-tabs section.active .title,
|
2344
|
+
.section-container.vertical-tabs .section.active .title {
|
2345
|
+
background-color: white;
|
2346
|
+
width: 12.625em;
|
2347
|
+
border-right: 0;
|
2348
|
+
z-index: 11; }
|
2349
|
+
.section-container.vertical-tabs section.active:last-child .title,
|
2350
|
+
.section-container.vertical-tabs .section.active:last-child .title {
|
2351
|
+
border-bottom: 1px solid #cccccc; }
|
2352
|
+
|
2353
|
+
.section-container.vertical-nav {
|
2354
|
+
border: 1px solid #cccccc;
|
2355
|
+
border-top: none; }
|
2356
|
+
.section-container.vertical-nav > section, .section-container.vertical-nav > .section {
|
2357
|
+
padding-top: 0 !important; }
|
2358
|
+
.section-container.vertical-nav > section .title a, .section-container.vertical-nav > .section .title a {
|
2359
|
+
display: block;
|
2360
|
+
width: 100%; }
|
2361
|
+
.section-container.vertical-nav > section .content, .section-container.vertical-nav > .section .content {
|
2362
|
+
display: none; }
|
2363
|
+
.section-container.vertical-nav > section.active .content, .section-container.vertical-nav > .section.active .content {
|
2364
|
+
display: block;
|
2365
|
+
position: absolute;
|
2366
|
+
left: 100%;
|
2367
|
+
top: -1px;
|
2368
|
+
z-index: 999;
|
2369
|
+
min-width: 12.5em;
|
2370
|
+
border: 1px solid #cccccc; }
|
2371
|
+
|
2372
|
+
.section-container.horizontal-nav {
|
2373
|
+
position: relative;
|
2374
|
+
background: #efefef;
|
2375
|
+
border: 1px solid #cccccc; }
|
2376
|
+
.section-container.horizontal-nav > section, .section-container.horizontal-nav > .section {
|
2377
|
+
padding-top: 0;
|
2378
|
+
border: 0;
|
2379
|
+
position: static; }
|
2380
|
+
.section-container.horizontal-nav > section .title, .section-container.horizontal-nav > .section .title {
|
2381
|
+
width: auto;
|
2382
|
+
border: 1px solid #cccccc;
|
2383
|
+
border-left: 0;
|
2384
|
+
top: -1px;
|
2385
|
+
position: absolute;
|
2386
|
+
z-index: 1; }
|
2387
|
+
.section-container.horizontal-nav > section .title a, .section-container.horizontal-nav > .section .title a {
|
2388
|
+
width: 100%; }
|
2389
|
+
.section-container.horizontal-nav > section .content, .section-container.horizontal-nav > .section .content {
|
2390
|
+
display: none; }
|
2391
|
+
.section-container.horizontal-nav > section.active .content, .section-container.horizontal-nav > .section.active .content {
|
2392
|
+
display: block;
|
2393
|
+
position: absolute;
|
2394
|
+
z-index: 999;
|
2395
|
+
left: 0;
|
2396
|
+
top: -2px;
|
2397
|
+
min-width: 12.5em;
|
2398
|
+
border: 1px solid #cccccc; } }
|
2399
|
+
/* Wrapped around .top-bar to contain to grid width */
|
2400
|
+
.contain-to-grid {
|
2401
|
+
width: 100%;
|
2402
|
+
background: #111111; }
|
2403
|
+
|
2404
|
+
.fixed {
|
2405
|
+
width: 100%;
|
2406
|
+
left: 0;
|
2407
|
+
position: fixed;
|
2408
|
+
top: 0;
|
2409
|
+
z-index: 99; }
|
2410
|
+
|
2411
|
+
.top-bar {
|
2412
|
+
overflow: hidden;
|
2413
|
+
height: 45px;
|
2414
|
+
line-height: 45px;
|
2415
|
+
position: relative;
|
2416
|
+
background: #111111;
|
2417
|
+
margin-bottom: 1.875em; }
|
2418
|
+
.top-bar ul {
|
2419
|
+
margin-bottom: 0;
|
2420
|
+
list-style: none; }
|
2421
|
+
.top-bar .row {
|
2422
|
+
max-width: none; }
|
2423
|
+
.top-bar form,
|
2424
|
+
.top-bar input {
|
2425
|
+
margin-bottom: 0; }
|
2426
|
+
.top-bar input {
|
2427
|
+
height: 2.45em; }
|
2428
|
+
.top-bar .button {
|
2429
|
+
padding-top: .5em;
|
2430
|
+
padding-bottom: .5em;
|
2431
|
+
margin-bottom: 0; }
|
2432
|
+
.top-bar .title-area {
|
2433
|
+
position: relative; }
|
2434
|
+
.top-bar .name {
|
2435
|
+
height: 45px;
|
2436
|
+
margin: 0;
|
2437
|
+
font-size: 16px; }
|
2438
|
+
.top-bar .name h1 {
|
2439
|
+
line-height: 45px;
|
2440
|
+
font-size: 1.0625em;
|
2441
|
+
margin: 0; }
|
2442
|
+
.top-bar .name h1 a {
|
2443
|
+
font-weight: bold;
|
2444
|
+
color: white;
|
2445
|
+
width: 50%;
|
2446
|
+
display: block;
|
2447
|
+
padding: 0 15px; }
|
2448
|
+
.top-bar .toggle-topbar {
|
2449
|
+
position: absolute;
|
2450
|
+
right: 0;
|
2451
|
+
top: 0; }
|
2452
|
+
.top-bar .toggle-topbar a {
|
2453
|
+
color: white;
|
2454
|
+
text-transform: uppercase;
|
2455
|
+
font-size: 0.8125em;
|
2456
|
+
font-weight: bold;
|
2457
|
+
position: relative;
|
2458
|
+
display: block;
|
2459
|
+
padding: 0 15px;
|
2460
|
+
height: 45px;
|
2461
|
+
line-height: 45px; }
|
2462
|
+
.top-bar .toggle-topbar.menu-icon {
|
2463
|
+
right: 15px;
|
2464
|
+
top: 50%;
|
2465
|
+
margin-top: -16px;
|
2466
|
+
padding-left: 40px; }
|
2467
|
+
.top-bar .toggle-topbar.menu-icon a {
|
2468
|
+
text-indent: -48px;
|
2469
|
+
width: 34px;
|
2470
|
+
height: 34px;
|
2471
|
+
line-height: 33px;
|
2472
|
+
padding: 0;
|
2473
|
+
color: white; }
|
2474
|
+
.top-bar .toggle-topbar.menu-icon a span {
|
2475
|
+
position: absolute;
|
2476
|
+
right: 0;
|
2477
|
+
display: block;
|
2478
|
+
width: 16px;
|
2479
|
+
height: 0;
|
2480
|
+
-webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
|
2481
|
+
box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; }
|
2482
|
+
.top-bar.expanded {
|
2483
|
+
height: auto;
|
2484
|
+
background: transparent; }
|
2485
|
+
.top-bar.expanded .title-area {
|
2486
|
+
background: #111111; }
|
2487
|
+
.top-bar.expanded .toggle-topbar a {
|
2488
|
+
color: #888888; }
|
2489
|
+
.top-bar.expanded .toggle-topbar a span {
|
2490
|
+
-webkit-box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888;
|
2491
|
+
box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; }
|
2492
|
+
|
2493
|
+
.top-bar-section {
|
2494
|
+
left: 0;
|
2495
|
+
position: relative;
|
2496
|
+
width: auto;
|
2497
|
+
-webkit-transition: left 300ms ease-out;
|
2498
|
+
-moz-transition: left 300ms ease-out;
|
2499
|
+
transition: left 300ms ease-out; }
|
2500
|
+
.top-bar-section ul {
|
2501
|
+
width: 100%;
|
2502
|
+
height: auto;
|
2503
|
+
display: block;
|
2504
|
+
background: #333333;
|
2505
|
+
font-size: 16px;
|
2506
|
+
margin: 0; }
|
2507
|
+
.top-bar-section .divider,
|
2508
|
+
.top-bar-section [role="separator"] {
|
2509
|
+
border-bottom: solid 1px #4d4d4d;
|
2510
|
+
border-top: solid 1px #1a1a1a;
|
2511
|
+
clear: both;
|
2512
|
+
height: 1px;
|
2513
|
+
width: 100%; }
|
2514
|
+
.top-bar-section ul li > a {
|
2515
|
+
display: block;
|
2516
|
+
width: 100%;
|
2517
|
+
color: white;
|
2518
|
+
padding: 12px 0 12px 0;
|
2519
|
+
padding-left: 15px;
|
2520
|
+
font-size: 0.8125em;
|
2521
|
+
font-weight: bold;
|
2522
|
+
background: #333333;
|
2523
|
+
height: 45px; }
|
2524
|
+
.top-bar-section ul li > a:hover {
|
2525
|
+
background: #2b2b2b; }
|
2526
|
+
.top-bar-section ul li > a.button {
|
2527
|
+
background: #2ba6cb;
|
2528
|
+
font-size: 0.8125em; }
|
2529
|
+
.top-bar-section ul li > a.button:hover {
|
2530
|
+
background: #2284a1; }
|
2531
|
+
.top-bar-section ul li > a.button.secondary {
|
2532
|
+
background: #e9e9e9; }
|
2533
|
+
.top-bar-section ul li > a.button.secondary:hover {
|
2534
|
+
background: #d0d0d0; }
|
2535
|
+
.top-bar-section ul li > a.button.success {
|
2536
|
+
background: #5da423; }
|
2537
|
+
.top-bar-section ul li > a.button.success:hover {
|
2538
|
+
background: #457a1a; }
|
2539
|
+
.top-bar-section ul li > a.button.alert {
|
2540
|
+
background: #c60f13; }
|
2541
|
+
.top-bar-section ul li > a.button.alert:hover {
|
2542
|
+
background: #970b0e; }
|
2543
|
+
.top-bar-section ul li.active > a {
|
2544
|
+
background: #2b2b2b; }
|
2545
|
+
.top-bar-section .has-form {
|
2546
|
+
padding: 15px; }
|
2547
|
+
.top-bar-section .has-dropdown {
|
2548
|
+
position: relative; }
|
2549
|
+
.top-bar-section .has-dropdown > a:after {
|
2550
|
+
content: "";
|
2551
|
+
display: block;
|
2552
|
+
width: 0;
|
2553
|
+
height: 0;
|
2554
|
+
border: solid 5px;
|
2555
|
+
border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
|
2556
|
+
margin-right: 15px;
|
2557
|
+
margin-top: -4.5px;
|
2558
|
+
position: absolute;
|
2559
|
+
top: 22px;
|
2560
|
+
right: 0; }
|
2561
|
+
.top-bar-section .has-dropdown.moved {
|
2562
|
+
position: static; }
|
2563
|
+
.top-bar-section .has-dropdown.moved > .dropdown {
|
2564
|
+
visibility: visible; }
|
2565
|
+
.top-bar-section .dropdown {
|
2566
|
+
position: absolute;
|
2567
|
+
left: 100%;
|
2568
|
+
top: 0;
|
2569
|
+
visibility: hidden;
|
2570
|
+
z-index: 99; }
|
2571
|
+
.top-bar-section .dropdown li {
|
2572
|
+
width: 100%; }
|
2573
|
+
.top-bar-section .dropdown li a {
|
2574
|
+
font-weight: normal;
|
2575
|
+
padding: 8px 15px; }
|
2576
|
+
.top-bar-section .dropdown li.title h5 {
|
2577
|
+
margin-bottom: 0; }
|
2578
|
+
.top-bar-section .dropdown li.title h5 a {
|
2579
|
+
color: white;
|
2580
|
+
line-height: 22.5px;
|
2581
|
+
display: block; }
|
2582
|
+
.top-bar-section .dropdown label {
|
2583
|
+
padding: 8px 15px 2px;
|
2584
|
+
margin-bottom: 0;
|
2585
|
+
text-transform: uppercase;
|
2586
|
+
color: #555555;
|
2587
|
+
font-weight: bold;
|
2588
|
+
font-size: 0.625em; }
|
2589
|
+
|
2590
|
+
.top-bar-js-breakpoint {
|
2591
|
+
width: 58.75em !important;
|
2592
|
+
visibility: hidden; }
|
2593
|
+
|
2594
|
+
.js-generated {
|
2595
|
+
display: block; }
|
2596
|
+
|
2597
|
+
@media only screen and (min-width: 58.75em) {
|
2598
|
+
.top-bar {
|
2599
|
+
background: #111111;
|
2600
|
+
*zoom: 1;
|
2601
|
+
overflow: visible; }
|
2602
|
+
.top-bar:before, .top-bar:after {
|
2603
|
+
content: " ";
|
2604
|
+
display: table; }
|
2605
|
+
.top-bar:after {
|
2606
|
+
clear: both; }
|
2607
|
+
.top-bar .toggle-topbar {
|
2608
|
+
display: none; }
|
2609
|
+
.top-bar .title-area {
|
2610
|
+
float: left; }
|
2611
|
+
.top-bar .name h1 a {
|
2612
|
+
width: auto; }
|
2613
|
+
.top-bar input,
|
2614
|
+
.top-bar .button {
|
2615
|
+
line-height: 2em;
|
2616
|
+
font-size: 0.875em;
|
2617
|
+
height: 2em;
|
2618
|
+
padding: 0 10px;
|
2619
|
+
position: relative;
|
2620
|
+
top: 8px; }
|
2621
|
+
.top-bar.expanded {
|
2622
|
+
background: #111111; }
|
2623
|
+
|
2624
|
+
.contain-to-grid .top-bar {
|
2625
|
+
max-width: 62.5em;
|
2626
|
+
margin: 0 auto;
|
2627
|
+
margin-bottom: 1.875em; }
|
2628
|
+
|
2629
|
+
.top-bar-section {
|
2630
|
+
-webkit-transition: none 0 0;
|
2631
|
+
-moz-transition: none 0 0;
|
2632
|
+
transition: none 0 0;
|
2633
|
+
left: 0 !important; }
|
2634
|
+
.top-bar-section ul {
|
2635
|
+
width: auto;
|
2636
|
+
height: auto !important;
|
2637
|
+
display: inline; }
|
2638
|
+
.top-bar-section ul li {
|
2639
|
+
float: left; }
|
2640
|
+
.top-bar-section ul li .js-generated {
|
2641
|
+
display: none; }
|
2642
|
+
.top-bar-section li a:not(.button) {
|
2643
|
+
padding: 0 15px;
|
2644
|
+
line-height: 45px;
|
2645
|
+
background: #111111; }
|
2646
|
+
.top-bar-section li a:not(.button):hover {
|
2647
|
+
background: black; }
|
2648
|
+
.top-bar-section .has-dropdown > a {
|
2649
|
+
padding-right: 35px !important; }
|
2650
|
+
.top-bar-section .has-dropdown > a:after {
|
2651
|
+
content: "";
|
2652
|
+
display: block;
|
2653
|
+
width: 0;
|
2654
|
+
height: 0;
|
2655
|
+
border: solid 5px;
|
2656
|
+
border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
|
2657
|
+
margin-top: -2.5px; }
|
2658
|
+
.top-bar-section .has-dropdown.moved {
|
2659
|
+
position: relative; }
|
2660
|
+
.top-bar-section .has-dropdown.moved > .dropdown {
|
2661
|
+
visibility: hidden; }
|
2662
|
+
.top-bar-section .has-dropdown:hover > .dropdown, .top-bar-section .has-dropdown:active > .dropdown {
|
2663
|
+
visibility: visible; }
|
2664
|
+
.top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
|
2665
|
+
border: none;
|
2666
|
+
content: "\00bb";
|
2667
|
+
margin-top: -7px;
|
2668
|
+
right: 5px; }
|
2669
|
+
.top-bar-section .dropdown {
|
2670
|
+
left: 0;
|
2671
|
+
top: auto;
|
2672
|
+
background: transparent;
|
2673
|
+
min-width: 100%; }
|
2674
|
+
.top-bar-section .dropdown li a {
|
2675
|
+
color: white;
|
2676
|
+
line-height: 1;
|
2677
|
+
white-space: nowrap;
|
2678
|
+
padding: 7px 15px;
|
2679
|
+
background: #1e1e1e; }
|
2680
|
+
.top-bar-section .dropdown li label {
|
2681
|
+
white-space: nowrap;
|
2682
|
+
background: #1e1e1e; }
|
2683
|
+
.top-bar-section .dropdown li .dropdown {
|
2684
|
+
left: 100%;
|
2685
|
+
top: 0; }
|
2686
|
+
.top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
|
2687
|
+
border-bottom: none;
|
2688
|
+
border-top: none;
|
2689
|
+
border-right: solid 1px #2b2b2b;
|
2690
|
+
border-left: solid 1px black;
|
2691
|
+
clear: none;
|
2692
|
+
height: 45px;
|
2693
|
+
width: 0px; }
|
2694
|
+
.top-bar-section .has-form {
|
2695
|
+
background: #111111;
|
2696
|
+
padding: 0 15px;
|
2697
|
+
height: 45px; }
|
2698
|
+
.top-bar-section ul.right li .dropdown {
|
2699
|
+
left: auto;
|
2700
|
+
right: 0; }
|
2701
|
+
.top-bar-section ul.right li .dropdown li .dropdown {
|
2702
|
+
right: 100%; } }
|
2703
|
+
.orbit-container {
|
2704
|
+
overflow: hidden;
|
2705
|
+
width: 100%;
|
2706
|
+
position: relative;
|
2707
|
+
background: whitesmoke; }
|
2708
|
+
.orbit-container .orbit-slides-container {
|
2709
|
+
list-style: none;
|
2710
|
+
margin: 0;
|
2711
|
+
padding: 0;
|
2712
|
+
position: relative; }
|
2713
|
+
.orbit-container .orbit-slides-container img {
|
2714
|
+
display: block; }
|
2715
|
+
.orbit-container .orbit-slides-container > * {
|
2716
|
+
position: relative;
|
2717
|
+
float: left;
|
2718
|
+
height: 100%; }
|
2719
|
+
.orbit-container .orbit-slides-container > * .orbit-caption {
|
2720
|
+
position: absolute;
|
2721
|
+
bottom: 0;
|
2722
|
+
background-color: black;
|
2723
|
+
background-color: rgba(0, 0, 0, 0.6);
|
2724
|
+
color: #fff;
|
2725
|
+
width: 100%;
|
2726
|
+
padding: 10px 14px;
|
2727
|
+
font-size: 0.875em; }
|
2728
|
+
.orbit-container .orbit-slides-container > * .orbit-caption * {
|
2729
|
+
color: white; }
|
2730
|
+
.orbit-container .orbit-slide-number {
|
2731
|
+
position: absolute;
|
2732
|
+
top: 10px;
|
2733
|
+
left: 10px;
|
2734
|
+
font-size: 12px;
|
2735
|
+
color: white;
|
2736
|
+
background: rgba(0, 0, 0, 0); }
|
2737
|
+
.orbit-container .orbit-slide-number span {
|
2738
|
+
font-weight: 700;
|
2739
|
+
padding: 0.3125em; }
|
2740
|
+
.orbit-container .orbit-timer {
|
2741
|
+
position: absolute;
|
2742
|
+
top: 10px;
|
2743
|
+
right: 10px;
|
2744
|
+
height: 6px;
|
2745
|
+
width: 100px; }
|
2746
|
+
.orbit-container .orbit-timer .orbit-progress {
|
2747
|
+
height: 100%;
|
2748
|
+
background-color: black;
|
2749
|
+
background-color: rgba(0, 0, 0, 0.6);
|
2750
|
+
display: block;
|
2751
|
+
width: 0%; }
|
2752
|
+
.orbit-container .orbit-timer > span {
|
2753
|
+
display: none;
|
2754
|
+
position: absolute;
|
2755
|
+
top: 10px;
|
2756
|
+
right: 0px;
|
2757
|
+
width: 11px;
|
2758
|
+
height: 14px;
|
2759
|
+
border: solid 4px #000;
|
2760
|
+
border-top: none;
|
2761
|
+
border-bottom: none; }
|
2762
|
+
.orbit-container .orbit-timer.paused > span {
|
2763
|
+
right: -6px;
|
2764
|
+
top: 9px;
|
2765
|
+
width: 11px;
|
2766
|
+
height: 14px;
|
2767
|
+
border: solid 8px;
|
2768
|
+
border-color: transparent transparent transparent #000; }
|
2769
|
+
.orbit-container:hover .orbit-timer > span {
|
2770
|
+
display: block; }
|
2771
|
+
.orbit-container .orbit-prev,
|
2772
|
+
.orbit-container .orbit-next {
|
2773
|
+
position: absolute;
|
2774
|
+
top: 50%;
|
2775
|
+
margin-top: -25px;
|
2776
|
+
background-color: black;
|
2777
|
+
background-color: rgba(0, 0, 0, 0.6);
|
2778
|
+
width: 50px;
|
2779
|
+
height: 60px;
|
2780
|
+
line-height: 50px;
|
2781
|
+
color: white;
|
2782
|
+
text-indent: -9999px !important; }
|
2783
|
+
.orbit-container .orbit-prev > span,
|
2784
|
+
.orbit-container .orbit-next > span {
|
2785
|
+
position: absolute;
|
2786
|
+
top: 50%;
|
2787
|
+
margin-top: -16px;
|
2788
|
+
display: block;
|
2789
|
+
width: 0;
|
2790
|
+
height: 0;
|
2791
|
+
border: solid 16px; }
|
2792
|
+
.orbit-container .orbit-prev {
|
2793
|
+
left: 0; }
|
2794
|
+
.orbit-container .orbit-prev > span {
|
2795
|
+
border-color: transparent;
|
2796
|
+
border-right-color: #fff; }
|
2797
|
+
.orbit-container .orbit-prev:hover > span {
|
2798
|
+
border-right-color: #ccc; }
|
2799
|
+
.orbit-container .orbit-next {
|
2800
|
+
right: 0; }
|
2801
|
+
.orbit-container .orbit-next > span {
|
2802
|
+
border-color: transparent;
|
2803
|
+
border-left-color: #fff;
|
2804
|
+
left: 50%;
|
2805
|
+
margin-left: -8px; }
|
2806
|
+
.orbit-container .orbit-next:hover > span {
|
2807
|
+
border-left-color: #ccc; }
|
2808
|
+
|
2809
|
+
.orbit-bullets {
|
2810
|
+
margin: 0 auto 30px auto;
|
2811
|
+
overflow: hidden;
|
2812
|
+
position: relative;
|
2813
|
+
top: 10px; }
|
2814
|
+
.orbit-bullets li {
|
2815
|
+
display: block;
|
2816
|
+
width: 18px;
|
2817
|
+
height: 18px;
|
2818
|
+
background: #999999;
|
2819
|
+
float: left;
|
2820
|
+
margin-right: 6px;
|
2821
|
+
border: solid 2px #999999;
|
2822
|
+
-webkit-border-radius: 1000px;
|
2823
|
+
border-radius: 1000px; }
|
2824
|
+
.orbit-bullets li.active {
|
2825
|
+
background: #222222;
|
2826
|
+
border: solid 2px #222222; }
|
2827
|
+
.orbit-bullets li:last-child {
|
2828
|
+
margin-right: 0; }
|
2829
|
+
|
2830
|
+
.touch .orbit-container .orbit-prev,
|
2831
|
+
.touch .orbit-container .orbit-next {
|
2832
|
+
display: none; }
|
2833
|
+
.touch .orbit-bullets {
|
2834
|
+
display: none; }
|
2835
|
+
|
2836
|
+
@media only screen and (min-width: 48em) {
|
2837
|
+
.touch .orbit-container .orbit-prev,
|
2838
|
+
.touch .orbit-container .orbit-next {
|
2839
|
+
display: inherit; }
|
2840
|
+
.touch .orbit-bullets {
|
2841
|
+
display: block; } }
|
2842
|
+
.reveal-modal-bg {
|
2843
|
+
position: fixed;
|
2844
|
+
height: 100%;
|
2845
|
+
width: 100%;
|
2846
|
+
background: black;
|
2847
|
+
background: rgba(0, 0, 0, 0.45);
|
2848
|
+
z-index: 98;
|
2849
|
+
display: none;
|
2850
|
+
top: 0;
|
2851
|
+
left: 0; }
|
2852
|
+
|
2853
|
+
.reveal-modal {
|
2854
|
+
visibility: hidden;
|
2855
|
+
display: none;
|
2856
|
+
position: absolute;
|
2857
|
+
left: 50%;
|
2858
|
+
z-index: 99;
|
2859
|
+
height: auto;
|
2860
|
+
background-color: #fff;
|
2861
|
+
margin-left: -40%;
|
2862
|
+
width: 80%;
|
2863
|
+
background-color: white;
|
2864
|
+
padding: 1.25em;
|
2865
|
+
border: solid 1px #666666;
|
2866
|
+
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
|
2867
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
|
2868
|
+
top: 50px; }
|
2869
|
+
.reveal-modal .column,
|
2870
|
+
.reveal-modal .columns {
|
2871
|
+
min-width: 0; }
|
2872
|
+
.reveal-modal > :first-child {
|
2873
|
+
margin-top: 0; }
|
2874
|
+
.reveal-modal > :last-child {
|
2875
|
+
margin-bottom: 0; }
|
2876
|
+
.reveal-modal .close-reveal-modal {
|
2877
|
+
font-size: 1.375em;
|
2878
|
+
line-height: 1;
|
2879
|
+
position: absolute;
|
2880
|
+
top: 0.5em;
|
2881
|
+
right: 0.6875em;
|
2882
|
+
color: #aaaaaa;
|
2883
|
+
font-weight: bold;
|
2884
|
+
cursor: pointer; }
|
2885
|
+
|
2886
|
+
@media only screen and (min-width: 48em) {
|
2887
|
+
.reveal-modal {
|
2888
|
+
padding: 1.875em;
|
2889
|
+
top: 6.25em; }
|
2890
|
+
.reveal-modal.small {
|
2891
|
+
margin-left: -15%;
|
2892
|
+
width: 30%; }
|
2893
|
+
.reveal-modal.medium {
|
2894
|
+
margin-left: -20%;
|
2895
|
+
width: 40%; }
|
2896
|
+
.reveal-modal.large {
|
2897
|
+
margin-left: -30%;
|
2898
|
+
width: 60%; }
|
2899
|
+
.reveal-modal.xlarge {
|
2900
|
+
margin-left: -35%;
|
2901
|
+
width: 70%; }
|
2902
|
+
.reveal-modal.expand {
|
2903
|
+
margin-left: -47.5%;
|
2904
|
+
width: 95%; } }
|
2905
|
+
@media print {
|
2906
|
+
div:not(.reveal-modal) {
|
2907
|
+
display: none; } }
|
2908
|
+
/* Foundation Joyride */
|
2909
|
+
.joyride-list {
|
2910
|
+
display: none; }
|
2911
|
+
|
2912
|
+
/* Default styles for the container */
|
2913
|
+
.joyride-tip-guide {
|
2914
|
+
display: none;
|
2915
|
+
position: absolute;
|
2916
|
+
background: black;
|
2917
|
+
color: white;
|
2918
|
+
z-index: 101;
|
2919
|
+
top: 0;
|
2920
|
+
left: 2.5%;
|
2921
|
+
font-family: inherit;
|
2922
|
+
font-weight: normal;
|
2923
|
+
width: 95%; }
|
2924
|
+
|
2925
|
+
.lt-ie9 .joyride-tip-guide {
|
2926
|
+
max-width: 800px;
|
2927
|
+
left: 50%;
|
2928
|
+
margin-left: -400px; }
|
2929
|
+
|
2930
|
+
.joyride-content-wrapper {
|
2931
|
+
width: 100%;
|
2932
|
+
padding: 1.125em 1.25em 1.5em; }
|
2933
|
+
.joyride-content-wrapper .button {
|
2934
|
+
margin-bottom: 0 !important; }
|
2935
|
+
|
2936
|
+
/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
|
2937
|
+
.joyride-tip-guide .joyride-nub {
|
2938
|
+
display: block;
|
2939
|
+
position: absolute;
|
2940
|
+
left: 22px;
|
2941
|
+
width: 0;
|
2942
|
+
height: 0;
|
2943
|
+
border: solid 14px; }
|
2944
|
+
.joyride-tip-guide .joyride-nub.top {
|
2945
|
+
border-color: black;
|
2946
|
+
border-top-color: transparent !important;
|
2947
|
+
border-left-color: transparent !important;
|
2948
|
+
border-right-color: transparent !important;
|
2949
|
+
top: -28px; }
|
2950
|
+
.joyride-tip-guide .joyride-nub.bottom {
|
2951
|
+
border-color: black !important;
|
2952
|
+
border-bottom-color: transparent !important;
|
2953
|
+
border-left-color: transparent !important;
|
2954
|
+
border-right-color: transparent !important;
|
2955
|
+
bottom: -28px; }
|
2956
|
+
.joyride-tip-guide .joyride-nub.right {
|
2957
|
+
right: -28px; }
|
2958
|
+
.joyride-tip-guide .joyride-nub.left {
|
2959
|
+
left: -28px; }
|
2960
|
+
|
2961
|
+
/* Typography */
|
2962
|
+
.joyride-tip-guide h1,
|
2963
|
+
.joyride-tip-guide h2,
|
2964
|
+
.joyride-tip-guide h3,
|
2965
|
+
.joyride-tip-guide h4,
|
2966
|
+
.joyride-tip-guide h5,
|
2967
|
+
.joyride-tip-guide h6 {
|
2968
|
+
line-height: 1.25;
|
2969
|
+
margin: 0;
|
2970
|
+
font-weight: bold;
|
2971
|
+
color: white; }
|
2972
|
+
|
2973
|
+
.joyride-tip-guide p {
|
2974
|
+
margin: 0 0 1.125em 0;
|
2975
|
+
font-size: 0.875em;
|
2976
|
+
line-height: 1.3; }
|
2977
|
+
|
2978
|
+
.joyride-timer-indicator-wrap {
|
2979
|
+
width: 50px;
|
2980
|
+
height: 3px;
|
2981
|
+
border: solid 1px #555555;
|
2982
|
+
position: absolute;
|
2983
|
+
right: 1.0625em;
|
2984
|
+
bottom: 1em; }
|
2985
|
+
|
2986
|
+
.joyride-timer-indicator {
|
2987
|
+
display: block;
|
2988
|
+
width: 0;
|
2989
|
+
height: inherit;
|
2990
|
+
background: #666666; }
|
2991
|
+
|
2992
|
+
.joyride-close-tip {
|
2993
|
+
position: absolute;
|
2994
|
+
right: 12px;
|
2995
|
+
top: 10px;
|
2996
|
+
color: #777777 !important;
|
2997
|
+
text-decoration: none;
|
2998
|
+
font-size: 30px;
|
2999
|
+
font-weight: normal;
|
3000
|
+
line-height: .5 !important; }
|
3001
|
+
.joyride-close-tip:hover, .joyride-close-tip:focus {
|
3002
|
+
color: #eee !important; }
|
3003
|
+
|
3004
|
+
.joyride-modal-bg {
|
3005
|
+
position: fixed;
|
3006
|
+
height: 100%;
|
3007
|
+
width: 100%;
|
3008
|
+
background: transparent;
|
3009
|
+
background: rgba(0, 0, 0, 0.5);
|
3010
|
+
z-index: 100;
|
3011
|
+
display: none;
|
3012
|
+
top: 0;
|
3013
|
+
left: 0;
|
3014
|
+
cursor: pointer; }
|
3015
|
+
|
3016
|
+
.joyride-expose-wrapper {
|
3017
|
+
background-color: #ffffff;
|
3018
|
+
position: absolute;
|
3019
|
+
border-radius: 3px;
|
3020
|
+
z-index: 102;
|
3021
|
+
-moz-box-shadow: 0px 0px 30px #ffffff;
|
3022
|
+
-webkit-box-shadow: 0px 0px 15px #ffffff;
|
3023
|
+
box-shadow: 0px 0px 15px #ffffff; }
|
3024
|
+
|
3025
|
+
.joyride-expose-cover {
|
3026
|
+
background: transparent;
|
3027
|
+
border-radius: 3px;
|
3028
|
+
position: absolute;
|
3029
|
+
z-index: 9999;
|
3030
|
+
top: 0px;
|
3031
|
+
left: 0px; }
|
3032
|
+
|
3033
|
+
/* Styles for screens that are atleast 768px; */
|
3034
|
+
@media only screen and (min-width: 48em) {
|
3035
|
+
.joyride-tip-guide {
|
3036
|
+
width: 300px;
|
3037
|
+
left: inherit; }
|
3038
|
+
.joyride-tip-guide .joyride-nub.bottom {
|
3039
|
+
border-color: black !important;
|
3040
|
+
border-bottom-color: transparent !important;
|
3041
|
+
border-left-color: transparent !important;
|
3042
|
+
border-right-color: transparent !important;
|
3043
|
+
bottom: -28px; }
|
3044
|
+
.joyride-tip-guide .joyride-nub.right {
|
3045
|
+
border-color: black !important;
|
3046
|
+
border-top-color: transparent !important;
|
3047
|
+
border-right-color: transparent !important;
|
3048
|
+
border-bottom-color: transparent !important;
|
3049
|
+
top: 22px;
|
3050
|
+
left: auto;
|
3051
|
+
right: -28px; }
|
3052
|
+
.joyride-tip-guide .joyride-nub.left {
|
3053
|
+
border-color: black !important;
|
3054
|
+
border-top-color: transparent !important;
|
3055
|
+
border-left-color: transparent !important;
|
3056
|
+
border-bottom-color: transparent !important;
|
3057
|
+
top: 22px;
|
3058
|
+
left: -28px;
|
3059
|
+
right: auto; } }
|
3060
|
+
/* Clearing Styles */
|
3061
|
+
[data-clearing] {
|
3062
|
+
*zoom: 1;
|
3063
|
+
margin-bottom: 0; }
|
3064
|
+
[data-clearing]:before, [data-clearing]:after {
|
3065
|
+
content: " ";
|
3066
|
+
display: table; }
|
3067
|
+
[data-clearing]:after {
|
3068
|
+
clear: both; }
|
3069
|
+
|
3070
|
+
.clearing-blackout {
|
3071
|
+
background: #111111;
|
3072
|
+
position: fixed;
|
3073
|
+
width: 100%;
|
3074
|
+
height: 100%;
|
3075
|
+
top: 0;
|
3076
|
+
left: 0;
|
3077
|
+
z-index: 998; }
|
3078
|
+
.clearing-blackout .clearing-close {
|
3079
|
+
display: block; }
|
3080
|
+
|
3081
|
+
.clearing-container {
|
3082
|
+
position: relative;
|
3083
|
+
z-index: 998;
|
3084
|
+
height: 100%;
|
3085
|
+
overflow: hidden;
|
3086
|
+
margin: 0; }
|
3087
|
+
|
3088
|
+
.visible-img {
|
3089
|
+
height: 95%;
|
3090
|
+
position: relative; }
|
3091
|
+
.visible-img img {
|
3092
|
+
position: absolute;
|
3093
|
+
left: 50%;
|
3094
|
+
top: 50%;
|
3095
|
+
margin-left: -50%;
|
3096
|
+
max-height: 100%;
|
3097
|
+
max-width: 100%; }
|
3098
|
+
|
3099
|
+
.clearing-caption {
|
3100
|
+
color: white;
|
3101
|
+
line-height: 1.3;
|
3102
|
+
margin-bottom: 0;
|
3103
|
+
text-align: center;
|
3104
|
+
bottom: 0;
|
3105
|
+
background: #111111;
|
3106
|
+
width: 100%;
|
3107
|
+
padding: 10px 30px;
|
3108
|
+
position: absolute;
|
3109
|
+
left: 0; }
|
3110
|
+
|
3111
|
+
.clearing-close {
|
3112
|
+
z-index: 999;
|
3113
|
+
padding-left: 20px;
|
3114
|
+
padding-top: 10px;
|
3115
|
+
font-size: 40px;
|
3116
|
+
line-height: 1;
|
3117
|
+
color: white;
|
3118
|
+
display: none; }
|
3119
|
+
.clearing-close:hover, .clearing-close:focus {
|
3120
|
+
color: #ccc; }
|
3121
|
+
|
3122
|
+
.clearing-assembled .clearing-container {
|
3123
|
+
height: 100%; }
|
3124
|
+
.clearing-assembled .clearing-container .carousel > ul {
|
3125
|
+
display: none; }
|
3126
|
+
|
3127
|
+
@media only screen and (min-width: 48em) {
|
3128
|
+
.clearing-main-prev,
|
3129
|
+
.clearing-main-next {
|
3130
|
+
position: absolute;
|
3131
|
+
height: 100%;
|
3132
|
+
width: 40px;
|
3133
|
+
top: 0; }
|
3134
|
+
.clearing-main-prev > span,
|
3135
|
+
.clearing-main-next > span {
|
3136
|
+
position: absolute;
|
3137
|
+
top: 50%;
|
3138
|
+
display: block;
|
3139
|
+
width: 0;
|
3140
|
+
height: 0;
|
3141
|
+
border: solid 16px; }
|
3142
|
+
|
3143
|
+
.clearing-main-prev {
|
3144
|
+
left: 0; }
|
3145
|
+
.clearing-main-prev > span {
|
3146
|
+
left: 5px;
|
3147
|
+
border-color: transparent;
|
3148
|
+
border-right-color: white; }
|
3149
|
+
|
3150
|
+
.clearing-main-next {
|
3151
|
+
right: 0; }
|
3152
|
+
.clearing-main-next > span {
|
3153
|
+
border-color: transparent;
|
3154
|
+
border-left-color: white; }
|
3155
|
+
|
3156
|
+
.clearing-main-prev.disabled,
|
3157
|
+
.clearing-main-next.disabled {
|
3158
|
+
opacity: 0.5; }
|
3159
|
+
|
3160
|
+
.clearing-feature ~ li {
|
3161
|
+
display: none; }
|
3162
|
+
|
3163
|
+
.clearing-assembled .clearing-container .carousel {
|
3164
|
+
background: #111111;
|
3165
|
+
height: 150px;
|
3166
|
+
margin-top: 5px; }
|
3167
|
+
.clearing-assembled .clearing-container .carousel > ul {
|
3168
|
+
display: block;
|
3169
|
+
z-index: 999;
|
3170
|
+
width: 200%;
|
3171
|
+
height: 100%;
|
3172
|
+
margin-left: 0;
|
3173
|
+
position: relative;
|
3174
|
+
left: 0; }
|
3175
|
+
.clearing-assembled .clearing-container .carousel > ul li {
|
3176
|
+
display: block;
|
3177
|
+
width: 175px;
|
3178
|
+
height: inherit;
|
3179
|
+
padding: 0;
|
3180
|
+
float: left;
|
3181
|
+
overflow: hidden;
|
3182
|
+
margin-right: 1px;
|
3183
|
+
position: relative;
|
3184
|
+
cursor: pointer;
|
3185
|
+
opacity: 0.4; }
|
3186
|
+
.clearing-assembled .clearing-container .carousel > ul li.fix-height img {
|
3187
|
+
min-height: 100%;
|
3188
|
+
height: 100%;
|
3189
|
+
max-width: none; }
|
3190
|
+
.clearing-assembled .clearing-container .carousel > ul li a.th {
|
3191
|
+
border: none;
|
3192
|
+
-webkit-box-shadow: none;
|
3193
|
+
box-shadow: none;
|
3194
|
+
display: block; }
|
3195
|
+
.clearing-assembled .clearing-container .carousel > ul li img {
|
3196
|
+
cursor: pointer !important;
|
3197
|
+
min-width: 100% !important; }
|
3198
|
+
.clearing-assembled .clearing-container .carousel > ul li.visible {
|
3199
|
+
opacity: 1; }
|
3200
|
+
.clearing-assembled .clearing-container .visible-img {
|
3201
|
+
background: #111111;
|
3202
|
+
overflow: hidden;
|
3203
|
+
height: 75%; }
|
3204
|
+
|
3205
|
+
.clearing-close {
|
3206
|
+
position: absolute;
|
3207
|
+
top: 10px;
|
3208
|
+
right: 20px;
|
3209
|
+
padding-left: 0;
|
3210
|
+
padding-top: 0; } }
|
3211
|
+
/* Foundation Alerts */
|
3212
|
+
.alert-box {
|
3213
|
+
border-style: solid;
|
3214
|
+
border-width: 1px;
|
3215
|
+
display: block;
|
3216
|
+
font-weight: bold;
|
3217
|
+
margin-bottom: 1.25em;
|
3218
|
+
position: relative;
|
3219
|
+
padding: 0.6875em 1.3125em 0.75em 0.6875em;
|
3220
|
+
font-size: 0.875em;
|
3221
|
+
background-color: #2ba6cb;
|
3222
|
+
border-color: #2284a1;
|
3223
|
+
color: white; }
|
3224
|
+
.alert-box .close {
|
3225
|
+
font-size: 1.375em;
|
3226
|
+
padding: 5px 4px 4px;
|
3227
|
+
line-height: 0;
|
3228
|
+
position: absolute;
|
3229
|
+
top: 0.4375em;
|
3230
|
+
right: 0.3125em;
|
3231
|
+
color: #333333;
|
3232
|
+
opacity: 0.3; }
|
3233
|
+
.alert-box .close:hover, .alert-box .close:focus {
|
3234
|
+
opacity: 0.5; }
|
3235
|
+
.alert-box.radius {
|
3236
|
+
-webkit-border-radius: 3px;
|
3237
|
+
border-radius: 3px; }
|
3238
|
+
.alert-box.round {
|
3239
|
+
-webkit-border-radius: 1000px;
|
3240
|
+
border-radius: 1000px; }
|
3241
|
+
.alert-box.success {
|
3242
|
+
background-color: #5da423;
|
3243
|
+
border-color: #457a1a;
|
3244
|
+
color: white; }
|
3245
|
+
.alert-box.alert {
|
3246
|
+
background-color: #c60f13;
|
3247
|
+
border-color: #970b0e;
|
3248
|
+
color: white; }
|
3249
|
+
.alert-box.secondary {
|
3250
|
+
background-color: #e9e9e9;
|
3251
|
+
border-color: #d0d0d0;
|
3252
|
+
color: #505050; }
|
3253
|
+
|
3254
|
+
/* Breadcrumbs */
|
3255
|
+
.breadcrumbs {
|
3256
|
+
display: block;
|
3257
|
+
padding: 0.5625em 0.875em 0.5625em;
|
3258
|
+
overflow: hidden;
|
3259
|
+
margin-left: 0;
|
3260
|
+
list-style: none;
|
3261
|
+
border-style: solid;
|
3262
|
+
border-width: 1px;
|
3263
|
+
background-color: #f6f6f6;
|
3264
|
+
border-color: gainsboro;
|
3265
|
+
-webkit-border-radius: 3px;
|
3266
|
+
border-radius: 3px; }
|
3267
|
+
.breadcrumbs > * {
|
3268
|
+
margin: 0;
|
3269
|
+
float: left;
|
3270
|
+
font-size: 0.6875em;
|
3271
|
+
text-transform: uppercase;
|
3272
|
+
color: #2ba6cb; }
|
3273
|
+
.breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
|
3274
|
+
text-decoration: underline; }
|
3275
|
+
.breadcrumbs > * a,
|
3276
|
+
.breadcrumbs > * span {
|
3277
|
+
text-transform: uppercase;
|
3278
|
+
color: #2ba6cb; }
|
3279
|
+
.breadcrumbs > *.current {
|
3280
|
+
cursor: default;
|
3281
|
+
color: #333333; }
|
3282
|
+
.breadcrumbs > *.current a {
|
3283
|
+
cursor: default;
|
3284
|
+
color: #333333; }
|
3285
|
+
.breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
|
3286
|
+
text-decoration: none; }
|
3287
|
+
.breadcrumbs > *.unavailable {
|
3288
|
+
color: #999999; }
|
3289
|
+
.breadcrumbs > *.unavailable a {
|
3290
|
+
color: #999999; }
|
3291
|
+
.breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
|
3292
|
+
.breadcrumbs > *.unavailable a:focus {
|
3293
|
+
text-decoration: none;
|
3294
|
+
color: #999999;
|
3295
|
+
cursor: default; }
|
3296
|
+
.breadcrumbs > *:before {
|
3297
|
+
content: "/";
|
3298
|
+
color: #aaaaaa;
|
3299
|
+
margin: 0 0.75em;
|
3300
|
+
position: relative;
|
3301
|
+
top: 1px; }
|
3302
|
+
.breadcrumbs > *:first-child:before {
|
3303
|
+
content: " ";
|
3304
|
+
margin: 0; }
|
3305
|
+
|
3306
|
+
/* Keystroke Characters */
|
3307
|
+
.keystroke,
|
3308
|
+
kbd {
|
3309
|
+
background-color: #ededed;
|
3310
|
+
border-color: #dbdbdb;
|
3311
|
+
color: #222222;
|
3312
|
+
border-style: solid;
|
3313
|
+
border-width: 1px;
|
3314
|
+
margin: 0;
|
3315
|
+
font-family: "Consolas", "Menlo", "Courier", monospace;
|
3316
|
+
font-size: 0.9375em;
|
3317
|
+
padding: 0.125em 0.25em 0em;
|
3318
|
+
-webkit-border-radius: 3px;
|
3319
|
+
border-radius: 3px; }
|
3320
|
+
|
3321
|
+
/* Labels */
|
3322
|
+
.label {
|
3323
|
+
font-weight: bold;
|
3324
|
+
text-align: center;
|
3325
|
+
text-decoration: none;
|
3326
|
+
line-height: 1;
|
3327
|
+
white-space: nowrap;
|
3328
|
+
display: inline-block;
|
3329
|
+
position: relative;
|
3330
|
+
padding: 0.1875em 0.625em 0.25em;
|
3331
|
+
font-size: 0.875em;
|
3332
|
+
background-color: #2ba6cb;
|
3333
|
+
color: white; }
|
3334
|
+
.label.radius {
|
3335
|
+
-webkit-border-radius: 3px;
|
3336
|
+
border-radius: 3px; }
|
3337
|
+
.label.round {
|
3338
|
+
-webkit-border-radius: 1000px;
|
3339
|
+
border-radius: 1000px; }
|
3340
|
+
.label.alert {
|
3341
|
+
background-color: #c60f13;
|
3342
|
+
color: white; }
|
3343
|
+
.label.success {
|
3344
|
+
background-color: #5da423;
|
3345
|
+
color: white; }
|
3346
|
+
.label.secondary {
|
3347
|
+
background-color: #e9e9e9;
|
3348
|
+
color: #333333; }
|
3349
|
+
|
3350
|
+
/* Inline Lists */
|
3351
|
+
.inline-list {
|
3352
|
+
margin: 0 auto 1.0625em auto;
|
3353
|
+
margin-left: -1.375em;
|
3354
|
+
margin-right: 0;
|
3355
|
+
padding: 0;
|
3356
|
+
list-style: none;
|
3357
|
+
overflow: hidden; }
|
3358
|
+
.inline-list > li {
|
3359
|
+
list-style: none;
|
3360
|
+
float: left;
|
3361
|
+
margin-left: 1.375em;
|
3362
|
+
display: block; }
|
3363
|
+
.inline-list > li > * {
|
3364
|
+
display: block; }
|
3365
|
+
|
3366
|
+
/* Pagination */
|
3367
|
+
.pagination {
|
3368
|
+
display: block;
|
3369
|
+
height: 1.5em;
|
3370
|
+
margin-left: -0.3125em; }
|
3371
|
+
.pagination li {
|
3372
|
+
display: block;
|
3373
|
+
float: left;
|
3374
|
+
height: 1.5em;
|
3375
|
+
color: #222222;
|
3376
|
+
font-size: 0.875em;
|
3377
|
+
margin-left: 0.3125em; }
|
3378
|
+
.pagination li a {
|
3379
|
+
display: block;
|
3380
|
+
padding: 0.0625em 0.4375em 0.0625em;
|
3381
|
+
color: #999999; }
|
3382
|
+
.pagination li:hover a,
|
3383
|
+
.pagination li a:focus {
|
3384
|
+
background: #e6e6e6; }
|
3385
|
+
.pagination li.unavailable a {
|
3386
|
+
cursor: default;
|
3387
|
+
color: #999999; }
|
3388
|
+
.pagination li.unavailable:hover a, .pagination li.unavailable a:focus {
|
3389
|
+
background: transparent; }
|
3390
|
+
.pagination li.current a {
|
3391
|
+
background: #2ba6cb;
|
3392
|
+
color: white;
|
3393
|
+
font-weight: bold;
|
3394
|
+
cursor: default; }
|
3395
|
+
.pagination li.current a:hover, .pagination li.current a:focus {
|
3396
|
+
background: #2ba6cb; }
|
3397
|
+
|
3398
|
+
.pagination-centered {
|
3399
|
+
text-align: center; }
|
3400
|
+
.pagination-centered ul > li {
|
3401
|
+
float: none;
|
3402
|
+
display: inline-block; }
|
3403
|
+
|
3404
|
+
/* Panels */
|
3405
|
+
.panel {
|
3406
|
+
border-style: solid;
|
3407
|
+
border-width: 1px;
|
3408
|
+
border-color: #d9d9d9;
|
3409
|
+
margin-bottom: 1.25em;
|
3410
|
+
padding: 1.25em;
|
3411
|
+
background: #f2f2f2; }
|
3412
|
+
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p {
|
3413
|
+
color: #333333; }
|
3414
|
+
.panel > :first-child {
|
3415
|
+
margin-top: 0; }
|
3416
|
+
.panel > :last-child {
|
3417
|
+
margin-bottom: 0; }
|
3418
|
+
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
|
3419
|
+
line-height: 1;
|
3420
|
+
margin-bottom: 0.625em; }
|
3421
|
+
.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
|
3422
|
+
line-height: 1.4; }
|
3423
|
+
.panel.callout {
|
3424
|
+
border-style: solid;
|
3425
|
+
border-width: 1px;
|
3426
|
+
border-color: #2284a1;
|
3427
|
+
margin-bottom: 1.25em;
|
3428
|
+
padding: 1.25em;
|
3429
|
+
background: #2ba6cb;
|
3430
|
+
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
|
3431
|
+
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
|
3432
|
+
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p {
|
3433
|
+
color: white; }
|
3434
|
+
.panel.callout > :first-child {
|
3435
|
+
margin-top: 0; }
|
3436
|
+
.panel.callout > :last-child {
|
3437
|
+
margin-bottom: 0; }
|
3438
|
+
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
|
3439
|
+
line-height: 1;
|
3440
|
+
margin-bottom: 0.625em; }
|
3441
|
+
.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
|
3442
|
+
line-height: 1.4; }
|
3443
|
+
.panel.radius {
|
3444
|
+
-webkit-border-radius: 3px;
|
3445
|
+
border-radius: 3px; }
|
3446
|
+
|
3447
|
+
/* Pricing Tables */
|
3448
|
+
.pricing-table {
|
3449
|
+
border: solid 1px #dddddd;
|
3450
|
+
margin-left: 0;
|
3451
|
+
margin-bottom: 1.25em; }
|
3452
|
+
.pricing-table * {
|
3453
|
+
list-style: none;
|
3454
|
+
line-height: 1; }
|
3455
|
+
.pricing-table .title {
|
3456
|
+
background-color: #dddddd;
|
3457
|
+
padding: 0.9375em 1.25em;
|
3458
|
+
text-align: center;
|
3459
|
+
color: #333333;
|
3460
|
+
font-weight: bold;
|
3461
|
+
font-size: 1em; }
|
3462
|
+
.pricing-table .price {
|
3463
|
+
background-color: #eeeeee;
|
3464
|
+
padding: 0.9375em 1.25em;
|
3465
|
+
text-align: center;
|
3466
|
+
color: #333333;
|
3467
|
+
font-weight: normal;
|
3468
|
+
font-size: 1.25em; }
|
3469
|
+
.pricing-table .description {
|
3470
|
+
background-color: white;
|
3471
|
+
padding: 0.9375em;
|
3472
|
+
text-align: center;
|
3473
|
+
color: #777777;
|
3474
|
+
font-size: 0.75em;
|
3475
|
+
font-weight: normal;
|
3476
|
+
line-height: 1.4;
|
3477
|
+
border-bottom: dotted 1px #dddddd; }
|
3478
|
+
.pricing-table .bullet-item {
|
3479
|
+
background-color: white;
|
3480
|
+
padding: 0.9375em;
|
3481
|
+
text-align: center;
|
3482
|
+
color: #333333;
|
3483
|
+
font-size: 0.875em;
|
3484
|
+
font-weight: normal;
|
3485
|
+
border-bottom: dotted 1px #dddddd; }
|
3486
|
+
.pricing-table .cta-button {
|
3487
|
+
background-color: whitesmoke;
|
3488
|
+
text-align: center;
|
3489
|
+
padding: 1.25em 1.25em 0; }
|
3490
|
+
|
3491
|
+
/* Progress Bar */
|
3492
|
+
.progress {
|
3493
|
+
background-color: transparent;
|
3494
|
+
height: 1.5625em;
|
3495
|
+
border: 1px solid #cccccc;
|
3496
|
+
padding: 0.125em;
|
3497
|
+
margin-bottom: 0.625em; }
|
3498
|
+
.progress .meter {
|
3499
|
+
background: #2ba6cb;
|
3500
|
+
height: 100%;
|
3501
|
+
display: block; }
|
3502
|
+
.progress.secondary .meter {
|
3503
|
+
background: #e9e9e9;
|
3504
|
+
height: 100%;
|
3505
|
+
display: block; }
|
3506
|
+
.progress.success .meter {
|
3507
|
+
background: #5da423;
|
3508
|
+
height: 100%;
|
3509
|
+
display: block; }
|
3510
|
+
.progress.alert .meter {
|
3511
|
+
background: #c60f13;
|
3512
|
+
height: 100%;
|
3513
|
+
display: block; }
|
3514
|
+
.progress.radius {
|
3515
|
+
-webkit-border-radius: 3px;
|
3516
|
+
border-radius: 3px; }
|
3517
|
+
.progress.radius .meter {
|
3518
|
+
-webkit-border-radius: 2px;
|
3519
|
+
border-radius: 2px; }
|
3520
|
+
.progress.round {
|
3521
|
+
-webkit-border-radius: 1000px;
|
3522
|
+
border-radius: 1000px; }
|
3523
|
+
.progress.round .meter {
|
3524
|
+
-webkit-border-radius: 999px;
|
3525
|
+
border-radius: 999px; }
|
3526
|
+
|
3527
|
+
/* Side Nav */
|
3528
|
+
.side-nav {
|
3529
|
+
display: block;
|
3530
|
+
margin: 0;
|
3531
|
+
padding: 0.875em 0;
|
3532
|
+
list-style-type: none;
|
3533
|
+
list-style-position: inside; }
|
3534
|
+
.side-nav li {
|
3535
|
+
margin: 0 0 0.4375em 0;
|
3536
|
+
font-size: 0.875em; }
|
3537
|
+
.side-nav li a {
|
3538
|
+
display: block;
|
3539
|
+
color: #2ba6cb; }
|
3540
|
+
.side-nav li.active a {
|
3541
|
+
color: #4d4d4d;
|
3542
|
+
font-weight: bold; }
|
3543
|
+
.side-nav li.divider {
|
3544
|
+
border-top: 1px solid;
|
3545
|
+
height: 0;
|
3546
|
+
padding: 0;
|
3547
|
+
list-style: none;
|
3548
|
+
border-top-color: #e6e6e6; }
|
3549
|
+
|
3550
|
+
/* Side Nav */
|
3551
|
+
.sub-nav {
|
3552
|
+
display: block;
|
3553
|
+
width: auto;
|
3554
|
+
overflow: hidden;
|
3555
|
+
margin: -0.25em 0 1.125em;
|
3556
|
+
padding-top: 0.25em;
|
3557
|
+
margin-right: 0;
|
3558
|
+
margin-left: -0.5625em; }
|
3559
|
+
.sub-nav dt,
|
3560
|
+
.sub-nav dd {
|
3561
|
+
float: left;
|
3562
|
+
display: inline;
|
3563
|
+
margin-left: 0.5625em;
|
3564
|
+
margin-bottom: 0.625em;
|
3565
|
+
font-weight: normal;
|
3566
|
+
font-size: 0.875em; }
|
3567
|
+
.sub-nav dt a,
|
3568
|
+
.sub-nav dd a {
|
3569
|
+
color: #999999;
|
3570
|
+
text-decoration: none; }
|
3571
|
+
.sub-nav dt.active a,
|
3572
|
+
.sub-nav dd.active a {
|
3573
|
+
-webkit-border-radius: 1000px;
|
3574
|
+
border-radius: 1000px;
|
3575
|
+
font-weight: bold;
|
3576
|
+
background: #2ba6cb;
|
3577
|
+
padding: 0.1875em 0.5625em;
|
3578
|
+
cursor: default;
|
3579
|
+
color: white; }
|
3580
|
+
|
3581
|
+
/* Foundation Switches */
|
3582
|
+
@media only screen {
|
3583
|
+
div.switch {
|
3584
|
+
position: relative;
|
3585
|
+
width: 100%;
|
3586
|
+
padding: 0;
|
3587
|
+
display: block;
|
3588
|
+
overflow: hidden;
|
3589
|
+
border-style: solid;
|
3590
|
+
border-width: 1px;
|
3591
|
+
margin-bottom: 1.25em;
|
3592
|
+
-webkit-animation: webkitSiblingBugfix infinite 1s;
|
3593
|
+
height: 36px;
|
3594
|
+
background: white;
|
3595
|
+
border-color: #cccccc; }
|
3596
|
+
div.switch label {
|
3597
|
+
position: relative;
|
3598
|
+
left: 0;
|
3599
|
+
z-index: 2;
|
3600
|
+
float: left;
|
3601
|
+
width: 50%;
|
3602
|
+
height: 100%;
|
3603
|
+
margin: 0;
|
3604
|
+
font-weight: bold;
|
3605
|
+
text-align: left;
|
3606
|
+
-webkit-transition: all 0.1s ease-out;
|
3607
|
+
-moz-transition: all 0.1s ease-out;
|
3608
|
+
transition: all 0.1s ease-out; }
|
3609
|
+
div.switch input {
|
3610
|
+
position: absolute;
|
3611
|
+
z-index: 3;
|
3612
|
+
opacity: 0;
|
3613
|
+
width: 100%;
|
3614
|
+
height: 100%; }
|
3615
|
+
div.switch input:hover, div.switch input:focus {
|
3616
|
+
cursor: pointer; }
|
3617
|
+
div.switch > span {
|
3618
|
+
position: absolute;
|
3619
|
+
top: -1px;
|
3620
|
+
left: -1px;
|
3621
|
+
z-index: 1;
|
3622
|
+
display: block;
|
3623
|
+
padding: 0;
|
3624
|
+
border-width: 1px;
|
3625
|
+
border-style: solid;
|
3626
|
+
-webkit-transition: all 0.1s ease-out;
|
3627
|
+
-moz-transition: all 0.1s ease-out;
|
3628
|
+
transition: all 0.1s ease-out; }
|
3629
|
+
div.switch input:not(:checked) + label {
|
3630
|
+
opacity: 0; }
|
3631
|
+
div.switch input:checked {
|
3632
|
+
display: none !important; }
|
3633
|
+
div.switch input {
|
3634
|
+
left: 0;
|
3635
|
+
display: block !important; }
|
3636
|
+
div.switch input:first-of-type + label,
|
3637
|
+
div.switch input:first-of-type + span + label {
|
3638
|
+
left: -50%; }
|
3639
|
+
div.switch input:first-of-type:checked + label,
|
3640
|
+
div.switch input:first-of-type:checked + span + label {
|
3641
|
+
left: 0%; }
|
3642
|
+
div.switch input:last-of-type + label,
|
3643
|
+
div.switch input:last-of-type + span + label {
|
3644
|
+
right: -50%;
|
3645
|
+
left: auto;
|
3646
|
+
text-align: right; }
|
3647
|
+
div.switch input:last-of-type:checked + label,
|
3648
|
+
div.switch input:last-of-type:checked + span + label {
|
3649
|
+
right: 0%;
|
3650
|
+
left: auto; }
|
3651
|
+
div.switch span.custom {
|
3652
|
+
display: none !important; }
|
3653
|
+
div.switch label {
|
3654
|
+
padding: 0 0.375em;
|
3655
|
+
line-height: 2.3em;
|
3656
|
+
font-size: 0.875em; }
|
3657
|
+
div.switch input:first-of-type:checked ~ span {
|
3658
|
+
left: 100%;
|
3659
|
+
margin-left: -2.1875em; }
|
3660
|
+
div.switch > span {
|
3661
|
+
width: 2.25em;
|
3662
|
+
height: 2.25em; }
|
3663
|
+
div.switch > span {
|
3664
|
+
border-color: #b3b3b3;
|
3665
|
+
background: white;
|
3666
|
+
background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
|
3667
|
+
background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
|
3668
|
+
background: linear-gradient(to bottom, white 0%, #f2f2f2 100%);
|
3669
|
+
-webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke;
|
3670
|
+
box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; }
|
3671
|
+
div.switch:hover > span, div.switch:focus > span {
|
3672
|
+
background: white;
|
3673
|
+
background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
|
3674
|
+
background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
|
3675
|
+
background: linear-gradient(to bottom, white 0%, #e6e6e6 100%); }
|
3676
|
+
div.switch:active {
|
3677
|
+
background: transparent; }
|
3678
|
+
div.switch.large {
|
3679
|
+
height: 44px; }
|
3680
|
+
div.switch.large label {
|
3681
|
+
padding: 0 0.375em;
|
3682
|
+
line-height: 2.3em;
|
3683
|
+
font-size: 1.0625em; }
|
3684
|
+
div.switch.large input:first-of-type:checked ~ span {
|
3685
|
+
left: 100%;
|
3686
|
+
margin-left: -2.6875em; }
|
3687
|
+
div.switch.large > span {
|
3688
|
+
width: 2.75em;
|
3689
|
+
height: 2.75em; }
|
3690
|
+
div.switch.small {
|
3691
|
+
height: 28px; }
|
3692
|
+
div.switch.small label {
|
3693
|
+
padding: 0 0.375em;
|
3694
|
+
line-height: 2.1em;
|
3695
|
+
font-size: 0.75em; }
|
3696
|
+
div.switch.small input:first-of-type:checked ~ span {
|
3697
|
+
left: 100%;
|
3698
|
+
margin-left: -1.6875em; }
|
3699
|
+
div.switch.small > span {
|
3700
|
+
width: 1.75em;
|
3701
|
+
height: 1.75em; }
|
3702
|
+
div.switch.tiny {
|
3703
|
+
height: 22px; }
|
3704
|
+
div.switch.tiny label {
|
3705
|
+
padding: 0 0.375em;
|
3706
|
+
line-height: 1.9em;
|
3707
|
+
font-size: 0.6875em; }
|
3708
|
+
div.switch.tiny input:first-of-type:checked ~ span {
|
3709
|
+
left: 100%;
|
3710
|
+
margin-left: -1.3125em; }
|
3711
|
+
div.switch.tiny > span {
|
3712
|
+
width: 1.375em;
|
3713
|
+
height: 1.375em; }
|
3714
|
+
div.switch.radius {
|
3715
|
+
-webkit-border-radius: 4px;
|
3716
|
+
border-radius: 4px; }
|
3717
|
+
div.switch.radius > span {
|
3718
|
+
-webkit-border-radius: 3px;
|
3719
|
+
border-radius: 3px; }
|
3720
|
+
div.switch.round {
|
3721
|
+
-webkit-border-radius: 1000px;
|
3722
|
+
border-radius: 1000px; }
|
3723
|
+
div.switch.round > span {
|
3724
|
+
-webkit-border-radius: 999px;
|
3725
|
+
border-radius: 999px; }
|
3726
|
+
div.switch.round label {
|
3727
|
+
padding: 0 0.5625em; }
|
3728
|
+
|
3729
|
+
@-webkit-keyframes webkitSiblingBugfix {
|
3730
|
+
from {
|
3731
|
+
position: relative; }
|
3732
|
+
|
3733
|
+
to {
|
3734
|
+
position: relative; } } }
|
3735
|
+
[data-magellan-expedition] {
|
3736
|
+
background: white;
|
3737
|
+
z-index: 50;
|
3738
|
+
min-width: 100%;
|
3739
|
+
padding: 10px; }
|
3740
|
+
[data-magellan-expedition] .sub-nav {
|
3741
|
+
margin-bottom: 0; }
|
3742
|
+
[data-magellan-expedition] .sub-nav dd {
|
3743
|
+
margin-bottom: 0; }
|
3744
|
+
|
3745
|
+
/* Tables */
|
3746
|
+
table {
|
3747
|
+
background: white;
|
3748
|
+
margin-bottom: 1.25em;
|
3749
|
+
border: solid 1px #dddddd; }
|
3750
|
+
table thead,
|
3751
|
+
table tfoot {
|
3752
|
+
background: whitesmoke;
|
3753
|
+
font-weight: bold; }
|
3754
|
+
table thead tr th,
|
3755
|
+
table thead tr td,
|
3756
|
+
table tfoot tr th,
|
3757
|
+
table tfoot tr td {
|
3758
|
+
padding: 0.5em 0.625em 0.625em;
|
3759
|
+
font-size: 0.875em;
|
3760
|
+
color: #222222;
|
3761
|
+
text-align: left; }
|
3762
|
+
table tr th,
|
3763
|
+
table tr td {
|
3764
|
+
padding: 0.5625em 0.625em;
|
3765
|
+
font-size: 0.875em;
|
3766
|
+
color: #222222; }
|
3767
|
+
table tr.even, table tr.alt, table tr:nth-of-type(even) {
|
3768
|
+
background: #f9f9f9; }
|
3769
|
+
table thead tr th,
|
3770
|
+
table tfoot tr th,
|
3771
|
+
table tbody tr td,
|
3772
|
+
table tr td,
|
3773
|
+
table tfoot tr td {
|
3774
|
+
display: table-cell;
|
3775
|
+
line-height: 1.125em; }
|
3776
|
+
|
3777
|
+
/* Image Thumbnails */
|
3778
|
+
.th {
|
3779
|
+
line-height: 0;
|
3780
|
+
display: inline-block;
|
3781
|
+
border: solid 4px white;
|
3782
|
+
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
|
3783
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
|
3784
|
+
-webkit-transition: all 200ms ease-out;
|
3785
|
+
-moz-transition: all 200ms ease-out;
|
3786
|
+
transition: all 200ms ease-out; }
|
3787
|
+
.th:hover, .th:focus {
|
3788
|
+
-webkit-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5);
|
3789
|
+
box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); }
|
3790
|
+
.th.radius {
|
3791
|
+
-webkit-border-radius: 3px;
|
3792
|
+
border-radius: 3px; }
|
3793
|
+
|
3794
|
+
a.th {
|
3795
|
+
display: block; }
|
3796
|
+
|
3797
|
+
/* Tooltips */
|
3798
|
+
.has-tip {
|
3799
|
+
border-bottom: dotted 1px #cccccc;
|
3800
|
+
cursor: help;
|
3801
|
+
font-weight: bold;
|
3802
|
+
color: #333333; }
|
3803
|
+
.has-tip:hover, .has-tip:focus {
|
3804
|
+
border-bottom: dotted 1px #196177;
|
3805
|
+
color: #2ba6cb; }
|
3806
|
+
.has-tip.tip-left, .has-tip.tip-right {
|
3807
|
+
float: none !important; }
|
3808
|
+
|
3809
|
+
.tooltip {
|
3810
|
+
display: none;
|
3811
|
+
position: absolute;
|
3812
|
+
z-index: 999;
|
3813
|
+
font-weight: bold;
|
3814
|
+
font-size: 0.9375em;
|
3815
|
+
line-height: 1.3;
|
3816
|
+
padding: 0.5em;
|
3817
|
+
max-width: 85%;
|
3818
|
+
left: 50%;
|
3819
|
+
width: 100%;
|
3820
|
+
color: white;
|
3821
|
+
background: black;
|
3822
|
+
-webkit-border-radius: 3px;
|
3823
|
+
border-radius: 3px; }
|
3824
|
+
.tooltip > .nub {
|
3825
|
+
display: block;
|
3826
|
+
left: 5px;
|
3827
|
+
position: absolute;
|
3828
|
+
width: 0;
|
3829
|
+
height: 0;
|
3830
|
+
border: solid 5px;
|
3831
|
+
border-color: transparent transparent black transparent;
|
3832
|
+
top: -10px; }
|
3833
|
+
.tooltip.opened {
|
3834
|
+
color: #2ba6cb !important;
|
3835
|
+
border-bottom: dotted 1px #196177 !important; }
|
3836
|
+
|
3837
|
+
.tap-to-close {
|
3838
|
+
display: block;
|
3839
|
+
font-size: 0.625em;
|
3840
|
+
color: #888888;
|
3841
|
+
font-weight: normal; }
|
3842
|
+
|
3843
|
+
@media only screen and (min-width: 48em) {
|
3844
|
+
.tooltip > .nub {
|
3845
|
+
border-color: transparent transparent black transparent;
|
3846
|
+
top: -10px; }
|
3847
|
+
.tooltip.tip-top > .nub {
|
3848
|
+
border-color: black transparent transparent transparent;
|
3849
|
+
top: auto;
|
3850
|
+
bottom: -10px; }
|
3851
|
+
.tooltip.tip-left, .tooltip.tip-right {
|
3852
|
+
float: none !important; }
|
3853
|
+
.tooltip.tip-left > .nub {
|
3854
|
+
border-color: transparent transparent transparent black;
|
3855
|
+
right: -10px;
|
3856
|
+
left: auto;
|
3857
|
+
top: 50%;
|
3858
|
+
margin-top: -5px; }
|
3859
|
+
.tooltip.tip-right > .nub {
|
3860
|
+
border-color: transparent black transparent transparent;
|
3861
|
+
right: auto;
|
3862
|
+
left: -10px;
|
3863
|
+
top: 50%;
|
3864
|
+
margin-top: -5px; } }
|
3865
|
+
@media only screen and (max-width: 767px) {
|
3866
|
+
.f-dropdown {
|
3867
|
+
max-width: 100%;
|
3868
|
+
left: 0; } }
|
3869
|
+
/* Foundation Dropdowns */
|
3870
|
+
.f-dropdown {
|
3871
|
+
position: absolute;
|
3872
|
+
top: -9999px;
|
3873
|
+
list-style: none;
|
3874
|
+
padding: 1.25em;
|
3875
|
+
width: 100%;
|
3876
|
+
height: auto;
|
3877
|
+
max-height: none;
|
3878
|
+
background: white;
|
3879
|
+
border: solid 1px #cccccc;
|
3880
|
+
font-size: 16px;
|
3881
|
+
z-index: 99;
|
3882
|
+
margin-top: 2px;
|
3883
|
+
max-width: 200px; }
|
3884
|
+
.f-dropdown *:first-child {
|
3885
|
+
margin-top: 0; }
|
3886
|
+
.f-dropdown *:last-child {
|
3887
|
+
margin-bottom: 0; }
|
3888
|
+
.f-dropdown:before {
|
3889
|
+
content: "";
|
3890
|
+
display: block;
|
3891
|
+
width: 0;
|
3892
|
+
height: 0;
|
3893
|
+
border: solid 6px;
|
3894
|
+
border-color: transparent transparent white transparent;
|
3895
|
+
position: absolute;
|
3896
|
+
top: -12px;
|
3897
|
+
left: 10px;
|
3898
|
+
z-index: 99; }
|
3899
|
+
.f-dropdown:after {
|
3900
|
+
content: "";
|
3901
|
+
display: block;
|
3902
|
+
width: 0;
|
3903
|
+
height: 0;
|
3904
|
+
border: solid 7px;
|
3905
|
+
border-color: transparent transparent #cccccc transparent;
|
3906
|
+
position: absolute;
|
3907
|
+
top: -14px;
|
3908
|
+
left: 9px;
|
3909
|
+
z-index: 98; }
|
3910
|
+
.f-dropdown.right:before {
|
3911
|
+
left: auto;
|
3912
|
+
right: 10px; }
|
3913
|
+
.f-dropdown.right:after {
|
3914
|
+
left: auto;
|
3915
|
+
right: 9px; }
|
3916
|
+
.f-dropdown li {
|
3917
|
+
font-size: 0.875em;
|
3918
|
+
cursor: pointer;
|
3919
|
+
line-height: 1.125em;
|
3920
|
+
margin: 0; }
|
3921
|
+
.f-dropdown li:hover, .f-dropdown li:focus {
|
3922
|
+
background: #eeeeee; }
|
3923
|
+
.f-dropdown li a {
|
3924
|
+
display: block;
|
3925
|
+
padding: 0.3125em 0.625em;
|
3926
|
+
color: #555555; }
|
3927
|
+
.f-dropdown.content {
|
3928
|
+
position: absolute;
|
3929
|
+
top: -9999px;
|
3930
|
+
list-style: none;
|
3931
|
+
padding: 1.25em;
|
3932
|
+
width: 100%;
|
3933
|
+
height: auto;
|
3934
|
+
max-height: none;
|
3935
|
+
background: white;
|
3936
|
+
border: solid 1px #cccccc;
|
3937
|
+
font-size: 16px;
|
3938
|
+
z-index: 99;
|
3939
|
+
max-width: 200px; }
|
3940
|
+
.f-dropdown.content *:first-child {
|
3941
|
+
margin-top: 0; }
|
3942
|
+
.f-dropdown.content *:last-child {
|
3943
|
+
margin-bottom: 0; }
|
3944
|
+
.f-dropdown.tiny {
|
3945
|
+
max-width: 200px; }
|
3946
|
+
.f-dropdown.small {
|
3947
|
+
max-width: 300px; }
|
3948
|
+
.f-dropdown.medium {
|
3949
|
+
max-width: 500px; }
|
3950
|
+
.f-dropdown.large {
|
3951
|
+
max-width: 800px; }
|
3952
|
+
|
3953
|
+
.top-bar {
|
3954
|
+
z-index: 6; }
|
3955
|
+
|
3956
|
+
.row .history.columns {
|
3957
|
+
padding: 0 0 0 15px; }
|
3958
|
+
|
3959
|
+
.ref_label {
|
3960
|
+
margin: 2px 2px 0 0;
|
3961
|
+
border: 1px solid black;
|
3962
|
+
border-radius: 12px;
|
3963
|
+
padding: 2px 4px;
|
3964
|
+
float: left; }
|
3965
|
+
|
3966
|
+
.branch_label {
|
3967
|
+
background: yellow; }
|
3968
|
+
|
3969
|
+
.remote_label {
|
3970
|
+
background: red; }
|
3971
|
+
|
3972
|
+
.tag_label {
|
3973
|
+
background: #e77a1c; }
|
3974
|
+
|
3975
|
+
.commits-table {
|
3976
|
+
table-layout: fixed;
|
3977
|
+
border-collapse: collapse; }
|
3978
|
+
.commits-table thead {
|
3979
|
+
background: #cbcbcb; }
|
3980
|
+
.commits-table thead tr, .commits-table thead th {
|
3981
|
+
border-bottom: 1px solid black; }
|
3982
|
+
.commits-table tr td {
|
3983
|
+
overflow: hidden;
|
3984
|
+
padding: 8px;
|
3985
|
+
vertical-align: top; }
|
3986
|
+
.commits-table .badges {
|
3987
|
+
width: 150px; }
|
3988
|
+
.commits-table .badges .ref_label {
|
3989
|
+
font-size: 12px;
|
3990
|
+
border-radius: 8px;
|
3991
|
+
padding: 0 2px; }
|
3992
|
+
.commits-table .author {
|
3993
|
+
width: 180px; }
|
3994
|
+
.commits-table tbody tr.selected {
|
3995
|
+
background: #c3e2ff; }
|
3996
|
+
.commits-table tbody tr.selected td {
|
3997
|
+
border-bottom: 2px solid #78c3ff;
|
3998
|
+
border-top: 2px solid #78c3ff; }
|
3999
|
+
.commits-table tbody tr.selected td:first-child {
|
4000
|
+
border-left: 1px solid #78c3ff; }
|
4001
|
+
.commits-table tbody tr.selected td:last-child {
|
4002
|
+
border-right: 1px solid #78c3ff; }
|
4003
|
+
|
4004
|
+
.commit h2 {
|
4005
|
+
overflow: hidden; }
|
4006
|
+
|
4007
|
+
.diff-names {
|
4008
|
+
clear: left;
|
4009
|
+
padding-top: 14px;
|
4010
|
+
list-style-type: none; }
|
4011
|
+
.diff-names li {
|
4012
|
+
margin-bottom: -8px; }
|
4013
|
+
.diff-names li .new_file {
|
4014
|
+
color: green; }
|
4015
|
+
.diff-names li .deleted {
|
4016
|
+
color: red; }
|
4017
|
+
|
4018
|
+
.diffs {
|
4019
|
+
background: #fff;
|
4020
|
+
list-style-type: none; }
|
4021
|
+
.diffs li {
|
4022
|
+
border-bottom: solid #ddd 8px;
|
4023
|
+
overflow-x: scroll; }
|
4024
|
+
.diffs li div {
|
4025
|
+
white-space: pre;
|
4026
|
+
font-size: 14px; }
|
4027
|
+
.diffs li .diff-first-line {
|
4028
|
+
font-weight: bold;
|
4029
|
+
background: #A7B5FF;
|
4030
|
+
border-bottom: 1px solid black; }
|
4031
|
+
.diffs li .diff-summ-line {
|
4032
|
+
background: #A7B5FF;
|
4033
|
+
font-weight: bold; }
|
4034
|
+
.diffs li .diff-added-line {
|
4035
|
+
color: #096707;
|
4036
|
+
background: #87f49f; }
|
4037
|
+
.diffs li .diff-removed-line {
|
4038
|
+
position: relative;
|
4039
|
+
left: 0;
|
4040
|
+
right: 0;
|
4041
|
+
color: #742b2b;
|
4042
|
+
background: #ffb1cb; }
|
4043
|
+
|
4044
|
+
.hidden {
|
4045
|
+
display: none; }
|
4046
|
+
|
4047
|
+
.show_commit .commit {
|
4048
|
+
padding: 8px;
|
4049
|
+
background: #ddd;
|
4050
|
+
border-radius: 16px; }
|
4051
|
+
.show_commit .commit .author_info {
|
4052
|
+
/*width: 50%;*/
|
4053
|
+
float: left;
|
4054
|
+
font-weight: bold; }
|
4055
|
+
.show_commit .commit .commit_sha {
|
4056
|
+
margin-bottom: 14px;
|
4057
|
+
margin-top: -14px;
|
4058
|
+
clear: left; }
|
4059
|
+
.show_commit .commit .stats {
|
4060
|
+
float: right; }
|
4061
|
+
.show_commit .commit .stats .additions {
|
4062
|
+
color: green; }
|
4063
|
+
.show_commit .commit .stats .deletions {
|
4064
|
+
color: red; }
|
4065
|
+
|
4066
|
+
.loader {
|
4067
|
+
margin: 0 auto;
|
4068
|
+
width: 64px;
|
4069
|
+
height: 64px;
|
4070
|
+
background: url("/images/loader.gif") no-repeat;
|
4071
|
+
display: none; }
|