space-router 0.9.5 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/history.d.ts +12 -0
- package/dist/history.js +98 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3 -0
- package/dist/match.d.ts +16 -0
- package/dist/match.js +68 -0
- package/dist/qs.d.ts +5 -0
- package/dist/qs.js +27 -0
- package/dist/router.d.ts +42 -0
- package/dist/router.js +131 -0
- package/package.json +29 -22
- package/src/history.ts +116 -0
- package/src/index.ts +7 -0
- package/src/match.ts +88 -0
- package/src/qs.ts +33 -0
- package/src/router.ts +197 -0
- package/.prettierignore +0 -5
- package/.prettierrc +0 -6
- package/.swc-cjs +0 -11
- package/.swc-esm +0 -1
- package/CHANGELOG.md +0 -68
- package/dist/cjs/history.js +0 -100
- package/dist/cjs/index.js +0 -27
- package/dist/cjs/match.js +0 -94
- package/dist/cjs/qs.js +0 -27
- package/dist/cjs/router.js +0 -279
- package/dist/esm/history.js +0 -90
- package/dist/esm/index.js +0 -3
- package/dist/esm/match.js +0 -76
- package/dist/esm/qs.js +0 -17
- package/dist/esm/router.js +0 -258
- package/docs/archetypes/default.md +0 -7
- package/docs/assets/js/bg.js +0 -742
- package/docs/assets/styles/base.scss +0 -2816
- package/docs/assets/styles/main.scss +0 -1368
- package/docs/assets/styles/syntax-m.scss +0 -264
- package/docs/assets/styles/syntax.scss +0 -240
- package/docs/config.toml +0 -9
- package/docs/content/_index.md +0 -189
- package/docs/layouts/404.html +0 -0
- package/docs/layouts/_default/baseof.html +0 -68
- package/docs/layouts/index.html +0 -31
- package/docs/layouts/partials/favicon.html +0 -5
- package/docs/layouts/partials/header.html +0 -0
- package/docs/layouts/partials/meta/name-author.html +0 -6
- package/docs/layouts/partials/meta/ogimage.html +0 -8
- package/docs/layouts/partials/site-verification.html +0 -12
- package/docs/layouts/shortcodes/callout.html +0 -1
- package/docs/static/js/highlightjs-9.15.10.min.js +0 -2
- package/docs/static/js/master.js +0 -0
- package/docs/static/js/tocbot.min.js +0 -18
- package/docs/static/space.png +0 -0
- package/oxlintrc.json +0 -6
- package/src/history.js +0 -97
- package/src/index.js +0 -3
- package/src/match.js +0 -87
- package/src/qs.js +0 -20
- package/src/router.js +0 -147
- package/tasks/build.js +0 -16
- package/test/flatten.test.js +0 -58
- package/test/match.test.js +0 -68
- package/test/router.test.js +0 -157
|
@@ -1,2816 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Kube. CSS & JS Framework
|
|
3
|
-
Version 6.5.2
|
|
4
|
-
Updated: February 2, 2017
|
|
5
|
-
|
|
6
|
-
http://imperavi.com/kube/
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2009-2017, Imperavi LLC.
|
|
9
|
-
License: MIT
|
|
10
|
-
*/
|
|
11
|
-
html {
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
*,
|
|
16
|
-
*:before,
|
|
17
|
-
*:after {
|
|
18
|
-
box-sizing: inherit;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
* {
|
|
22
|
-
margin: 0;
|
|
23
|
-
padding: 0;
|
|
24
|
-
outline: 0;
|
|
25
|
-
-webkit-overflow-scrolling: touch;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
img,
|
|
29
|
-
video,
|
|
30
|
-
audio {
|
|
31
|
-
max-width: 100%;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
img,
|
|
35
|
-
video {
|
|
36
|
-
height: auto;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
svg {
|
|
40
|
-
max-height: 100%;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
iframe {
|
|
44
|
-
border: none;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
::-moz-focus-inner {
|
|
48
|
-
border: 0;
|
|
49
|
-
padding: 0;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
input[type='radio'],
|
|
53
|
-
input[type='checkbox'] {
|
|
54
|
-
vertical-align: middle;
|
|
55
|
-
position: relative;
|
|
56
|
-
bottom: 0.15rem;
|
|
57
|
-
font-size: 115%;
|
|
58
|
-
margin-right: 3px;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
input[type='search'] {
|
|
62
|
-
-webkit-appearance: textfield;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
input[type='search']::-webkit-search-decoration,
|
|
66
|
-
input[type='search']::-webkit-search-cancel-button {
|
|
67
|
-
-webkit-appearance: none;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.black {
|
|
71
|
-
color: #0d0d0e;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.inverted {
|
|
75
|
-
color: #fff;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.error {
|
|
79
|
-
color: #f03c69;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.success {
|
|
83
|
-
color: #35beb1;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.warning {
|
|
87
|
-
color: #f7ba45;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.focus {
|
|
91
|
-
color: #1c86f2;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.aluminum {
|
|
95
|
-
color: #f8f8f8;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.silver {
|
|
99
|
-
color: #e0e1e1;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.lightgray {
|
|
103
|
-
color: #d4d4d4;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.gray {
|
|
107
|
-
color: #bdbdbd;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.midgray {
|
|
111
|
-
color: #676b72;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.darkgray {
|
|
115
|
-
color: #313439;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.bg-black {
|
|
119
|
-
background-color: #0d0d0e;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.bg-inverted {
|
|
123
|
-
background-color: #fff;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.bg-error {
|
|
127
|
-
background-color: #f03c69;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.bg-success {
|
|
131
|
-
background-color: #35beb1;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.bg-warning {
|
|
135
|
-
background-color: #f7ba45;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.bg-focus {
|
|
139
|
-
background-color: #1c86f2;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.bg-aluminum {
|
|
143
|
-
background-color: #f8f8f8;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.bg-silver {
|
|
147
|
-
background-color: #e0e1e1;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.bg-lightgray {
|
|
151
|
-
background-color: #d4d4d4;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.bg-gray {
|
|
155
|
-
background-color: #bdbdbd;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.bg-midgray {
|
|
159
|
-
background-color: #676b72;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.bg-darkgray {
|
|
163
|
-
background-color: #313439;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
.bg-highlight {
|
|
167
|
-
background-color: #edf2ff;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
html,
|
|
171
|
-
body {
|
|
172
|
-
font-size: 16px;
|
|
173
|
-
line-height: 1.64;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
body {
|
|
177
|
-
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
|
|
178
|
-
color: #313439;
|
|
179
|
-
background-color: transparent;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
a {
|
|
183
|
-
color: #3794de;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
a:hover {
|
|
187
|
-
color: #f03c69;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
h1.title,
|
|
191
|
-
h1,
|
|
192
|
-
h2,
|
|
193
|
-
h3,
|
|
194
|
-
h4,
|
|
195
|
-
h5,
|
|
196
|
-
h6 {
|
|
197
|
-
font-family: 'Vollkorn', sans-serif;
|
|
198
|
-
font-weight: bold;
|
|
199
|
-
color: #0d0d0e;
|
|
200
|
-
text-rendering: optimizeLegibility;
|
|
201
|
-
margin-bottom: 16px;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
h1.title {
|
|
205
|
-
font-size: 48px;
|
|
206
|
-
line-height: 64px;
|
|
207
|
-
margin-bottom: 8px;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
h1,
|
|
211
|
-
.h1 {
|
|
212
|
-
font-size: 48px;
|
|
213
|
-
line-height: 52px;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
h2,
|
|
217
|
-
.h2 {
|
|
218
|
-
font-size: 36px;
|
|
219
|
-
line-height: 40px;
|
|
220
|
-
margin-top: 80px;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
h3,
|
|
224
|
-
.h3 {
|
|
225
|
-
font-size: 24px;
|
|
226
|
-
line-height: 32px;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
h4,
|
|
230
|
-
.h4 {
|
|
231
|
-
font-size: 21px;
|
|
232
|
-
line-height: 32px;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
h5,
|
|
236
|
-
.h5 {
|
|
237
|
-
font-size: 18px;
|
|
238
|
-
line-height: 28px;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
h6,
|
|
242
|
-
.h6 {
|
|
243
|
-
font-size: 16px;
|
|
244
|
-
line-height: 24px;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
h1 a,
|
|
248
|
-
.h1 a,
|
|
249
|
-
h2 a,
|
|
250
|
-
.h2 a,
|
|
251
|
-
h3 a,
|
|
252
|
-
.h3 a,
|
|
253
|
-
h4 a,
|
|
254
|
-
.h4 a,
|
|
255
|
-
h5 a,
|
|
256
|
-
.h5 a,
|
|
257
|
-
h6 a,
|
|
258
|
-
.h6 a {
|
|
259
|
-
color: inherit;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
p + h2,
|
|
263
|
-
p + h3,
|
|
264
|
-
p + h4,
|
|
265
|
-
p + h5,
|
|
266
|
-
p + h6,
|
|
267
|
-
ul + h2,
|
|
268
|
-
ul + h3,
|
|
269
|
-
ul + h4,
|
|
270
|
-
ul + h5,
|
|
271
|
-
ul + h6,
|
|
272
|
-
ol + h2,
|
|
273
|
-
ol + h3,
|
|
274
|
-
ol + h4,
|
|
275
|
-
ol + h5,
|
|
276
|
-
ol + h6,
|
|
277
|
-
dl + h2,
|
|
278
|
-
dl + h3,
|
|
279
|
-
dl + h4,
|
|
280
|
-
dl + h5,
|
|
281
|
-
dl + h6,
|
|
282
|
-
blockquote + h2,
|
|
283
|
-
blockquote + h3,
|
|
284
|
-
blockquote + h4,
|
|
285
|
-
blockquote + h5,
|
|
286
|
-
blockquote + h6,
|
|
287
|
-
hr + h2,
|
|
288
|
-
hr + h3,
|
|
289
|
-
hr + h4,
|
|
290
|
-
hr + h5,
|
|
291
|
-
hr + h6,
|
|
292
|
-
pre + h2,
|
|
293
|
-
pre + h3,
|
|
294
|
-
pre + h4,
|
|
295
|
-
pre + h5,
|
|
296
|
-
pre + h6,
|
|
297
|
-
table + h2,
|
|
298
|
-
table + h3,
|
|
299
|
-
table + h4,
|
|
300
|
-
table + h5,
|
|
301
|
-
table + h6,
|
|
302
|
-
form + h2,
|
|
303
|
-
form + h3,
|
|
304
|
-
form + h4,
|
|
305
|
-
form + h5,
|
|
306
|
-
form + h6,
|
|
307
|
-
figure + h2,
|
|
308
|
-
figure + h3,
|
|
309
|
-
figure + h4,
|
|
310
|
-
figure + h5,
|
|
311
|
-
figure + h6 {
|
|
312
|
-
// margin-top: 48px;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
h3 {
|
|
316
|
-
margin-top: 48px;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
ul,
|
|
320
|
-
ul ul,
|
|
321
|
-
ul ol,
|
|
322
|
-
ol,
|
|
323
|
-
ol ul,
|
|
324
|
-
ol ol {
|
|
325
|
-
margin: 0 0 0 24px;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
ol ol li {
|
|
329
|
-
list-style-type: lower-alpha;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
ol ol ol li {
|
|
333
|
-
list-style-type: lower-roman;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
nav ul,
|
|
337
|
-
nav ol {
|
|
338
|
-
margin: 0;
|
|
339
|
-
list-style: none;
|
|
340
|
-
}
|
|
341
|
-
nav ul ul,
|
|
342
|
-
nav ul ol,
|
|
343
|
-
nav ol ul,
|
|
344
|
-
nav ol ol {
|
|
345
|
-
margin-left: 24px;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
dl dt {
|
|
349
|
-
font-weight: bold;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
dd {
|
|
353
|
-
margin-left: 24px;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
p,
|
|
357
|
-
blockquote,
|
|
358
|
-
hr,
|
|
359
|
-
pre,
|
|
360
|
-
ol,
|
|
361
|
-
ul,
|
|
362
|
-
dl,
|
|
363
|
-
table,
|
|
364
|
-
fieldset,
|
|
365
|
-
figure,
|
|
366
|
-
address,
|
|
367
|
-
form {
|
|
368
|
-
margin-bottom: 16px;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
hr {
|
|
372
|
-
border: none;
|
|
373
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
374
|
-
margin-top: -1px;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
blockquote {
|
|
378
|
-
padding-left: 1rem;
|
|
379
|
-
border-left: 4px solid rgba(0, 0, 0, 0.1);
|
|
380
|
-
background-color: rgba(0, 0, 0, 0.02);
|
|
381
|
-
padding: 1rem;
|
|
382
|
-
// font-style: italic;
|
|
383
|
-
// color: rgba(49, 52, 57, 0.65);
|
|
384
|
-
|
|
385
|
-
// color: #0c5460;
|
|
386
|
-
// background-color: #d1ecf1;
|
|
387
|
-
// border: 1px solid #bee5eb;
|
|
388
|
-
// border-radius: 4px;
|
|
389
|
-
}
|
|
390
|
-
blockquote p {
|
|
391
|
-
margin-bottom: 0.5rem;
|
|
392
|
-
margin-bottom: 0.1rem;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
time,
|
|
396
|
-
cite,
|
|
397
|
-
small,
|
|
398
|
-
figcaption {
|
|
399
|
-
font-size: 87.5%;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
cite {
|
|
403
|
-
opacity: 0.6;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
abbr[title],
|
|
407
|
-
dfn[title] {
|
|
408
|
-
border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
|
|
409
|
-
cursor: help;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
var {
|
|
413
|
-
font-size: 16px;
|
|
414
|
-
opacity: 0.6;
|
|
415
|
-
font-style: normal;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
/*mark,
|
|
419
|
-
code,
|
|
420
|
-
samp,
|
|
421
|
-
kbd {
|
|
422
|
-
position: relative;
|
|
423
|
-
top: -1px;
|
|
424
|
-
padding: 4px 4px 2px 4px;
|
|
425
|
-
display: inline-block;
|
|
426
|
-
line-height: 1;
|
|
427
|
-
color: rgba(49, 52, 57, 0.85);
|
|
428
|
-
}*/
|
|
429
|
-
|
|
430
|
-
p code,
|
|
431
|
-
ul code {
|
|
432
|
-
display: inline-block;
|
|
433
|
-
background: #eef5ff;
|
|
434
|
-
color: #18185b;
|
|
435
|
-
border-radius: 4px;
|
|
436
|
-
font-size: 15px;
|
|
437
|
-
line-height: 19px;
|
|
438
|
-
padding: 0 4px;
|
|
439
|
-
font-family: 'Source Code Pro', monospace;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
mark {
|
|
443
|
-
background: #f7ba45;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
samp {
|
|
447
|
-
color: #fff;
|
|
448
|
-
background: #1c86f2;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
kbd {
|
|
452
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
sub,
|
|
456
|
-
sup {
|
|
457
|
-
font-size: x-small;
|
|
458
|
-
line-height: 0;
|
|
459
|
-
margin-left: 1rem/4;
|
|
460
|
-
position: relative;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
sup {
|
|
464
|
-
top: 0;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
sub {
|
|
468
|
-
bottom: 1px;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
pre,
|
|
472
|
-
code,
|
|
473
|
-
samp,
|
|
474
|
-
var,
|
|
475
|
-
kbd {
|
|
476
|
-
font-family: 'Source Code Pro', Consolas, 'Lucida Console', monospace;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
pre,
|
|
480
|
-
samp,
|
|
481
|
-
var,
|
|
482
|
-
kbd,
|
|
483
|
-
mark {
|
|
484
|
-
font-size: 14px;
|
|
485
|
-
line-height: 20px;
|
|
486
|
-
font-weight: 500;
|
|
487
|
-
font-style: normal;
|
|
488
|
-
-moz-osx-font-smoothing: grayscale;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
/*pre,
|
|
492
|
-
pre code {
|
|
493
|
-
font-size: 13px;
|
|
494
|
-
padding: 0;
|
|
495
|
-
top: 0;
|
|
496
|
-
display: block;
|
|
497
|
-
line-height: 21px;
|
|
498
|
-
color: rgba(49, 52, 57, 0.85);
|
|
499
|
-
overflow: none;
|
|
500
|
-
white-space: pre-wrap;
|
|
501
|
-
border-radius: 4px;
|
|
502
|
-
}
|
|
503
|
-
*/
|
|
504
|
-
pre {
|
|
505
|
-
/*padding: 1rem;*/
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
figcaption {
|
|
509
|
-
opacity: 0.6;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
figure figcaption {
|
|
513
|
-
position: relative;
|
|
514
|
-
top: -1rem/2;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
/*figure pre {
|
|
518
|
-
background: none;
|
|
519
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
520
|
-
border-radius: 4px;
|
|
521
|
-
}*/
|
|
522
|
-
|
|
523
|
-
/*figure .video-container,
|
|
524
|
-
figure pre {
|
|
525
|
-
margin-bottom: 8px;
|
|
526
|
-
}*/
|
|
527
|
-
|
|
528
|
-
.text-left {
|
|
529
|
-
text-align: left;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.text-center {
|
|
533
|
-
text-align: center;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.text-right {
|
|
537
|
-
text-align: right;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
ul.unstyled {
|
|
541
|
-
margin-left: 0;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
ul.unstyled,
|
|
545
|
-
ul.unstyled ul {
|
|
546
|
-
list-style: none;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.monospace {
|
|
550
|
-
font-family: Consolas, Monaco, 'Courier New', monospace;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.upper {
|
|
554
|
-
text-transform: uppercase;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.lower {
|
|
558
|
-
text-transform: lowercase;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.italic {
|
|
562
|
-
font-style: italic !important;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.strong {
|
|
566
|
-
font-weight: bold !important;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
.normal {
|
|
570
|
-
font-weight: normal !important;
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.muted {
|
|
574
|
-
opacity: 0.55;
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
a.muted {
|
|
578
|
-
color: #0d0d0e;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
a.muted:hover {
|
|
582
|
-
opacity: 1;
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
.black {
|
|
586
|
-
color: #0d0d0e;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.smaller {
|
|
590
|
-
font-size: 12px;
|
|
591
|
-
line-height: 20px;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
.small {
|
|
595
|
-
font-size: 14px;
|
|
596
|
-
line-height: 20px;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.big {
|
|
600
|
-
font-size: 18px;
|
|
601
|
-
line-height: 28px;
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
.large {
|
|
605
|
-
font-size: 20px;
|
|
606
|
-
line-height: 32px;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
.end {
|
|
610
|
-
margin-bottom: 0 !important;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
.nowrap,
|
|
614
|
-
.nowrap td {
|
|
615
|
-
white-space: nowrap;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
@media (min-width: 768px) and (max-width: 1024px) {
|
|
619
|
-
.columns-2,
|
|
620
|
-
.columns-3,
|
|
621
|
-
.columns-4 {
|
|
622
|
-
column-gap: 24px;
|
|
623
|
-
}
|
|
624
|
-
.columns-2 {
|
|
625
|
-
column-count: 2;
|
|
626
|
-
}
|
|
627
|
-
.columns-3 {
|
|
628
|
-
column-count: 3;
|
|
629
|
-
}
|
|
630
|
-
.columns-4 {
|
|
631
|
-
column-count: 4;
|
|
632
|
-
}
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
.row {
|
|
636
|
-
display: flex;
|
|
637
|
-
flex-direction: row;
|
|
638
|
-
flex-wrap: wrap;
|
|
639
|
-
}
|
|
640
|
-
@media (max-width: 768px) {
|
|
641
|
-
.row {
|
|
642
|
-
flex-direction: column;
|
|
643
|
-
flex-wrap: nowrap;
|
|
644
|
-
}
|
|
645
|
-
}
|
|
646
|
-
.row.gutters,
|
|
647
|
-
.row.gutters > .row {
|
|
648
|
-
margin-left: -2%;
|
|
649
|
-
}
|
|
650
|
-
@media (max-width: 768px) {
|
|
651
|
-
.row.gutters,
|
|
652
|
-
.row.gutters > .row {
|
|
653
|
-
margin-left: 0;
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
.row.gutters > .col,
|
|
657
|
-
.row.gutters > .row > .col {
|
|
658
|
-
margin-left: 2%;
|
|
659
|
-
}
|
|
660
|
-
@media (max-width: 768px) {
|
|
661
|
-
.row.gutters > .col,
|
|
662
|
-
.row.gutters > .row > .col {
|
|
663
|
-
margin-left: 0;
|
|
664
|
-
}
|
|
665
|
-
}
|
|
666
|
-
.row.around {
|
|
667
|
-
justify-content: space-around;
|
|
668
|
-
}
|
|
669
|
-
.row.between {
|
|
670
|
-
justify-content: space-between;
|
|
671
|
-
}
|
|
672
|
-
.row.auto .col {
|
|
673
|
-
flex-grow: 1;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
.col-1 {
|
|
677
|
-
width: 8.33333%;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
.offset-1 {
|
|
681
|
-
margin-left: 8.33333%;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.col-2 {
|
|
685
|
-
width: 16.66667%;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.offset-2 {
|
|
689
|
-
margin-left: 16.66667%;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.col-3 {
|
|
693
|
-
width: 25%;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.offset-3 {
|
|
697
|
-
margin-left: 25%;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.col-4 {
|
|
701
|
-
width: 33.33333%;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.offset-4 {
|
|
705
|
-
margin-left: 33.33333%;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
.col-5 {
|
|
709
|
-
width: 41.66667%;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
.offset-5 {
|
|
713
|
-
margin-left: 41.66667%;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.col-6 {
|
|
717
|
-
width: 50%;
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
.offset-6 {
|
|
721
|
-
margin-left: 50%;
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
.col-7 {
|
|
725
|
-
width: 58.33333%;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
.offset-7 {
|
|
729
|
-
margin-left: 58.33333%;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
.col-8 {
|
|
733
|
-
width: 66.66667%;
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
.offset-8 {
|
|
737
|
-
margin-left: 66.66667%;
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
.col-9 {
|
|
741
|
-
width: 75%;
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
.offset-9 {
|
|
745
|
-
margin-left: 75%;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
.col-10 {
|
|
749
|
-
width: 83.33333%;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
.offset-10 {
|
|
753
|
-
margin-left: 83.33333%;
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.col-11 {
|
|
757
|
-
width: 91.66667%;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.offset-11 {
|
|
761
|
-
margin-left: 91.66667%;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.col-12 {
|
|
765
|
-
width: 100%;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
.offset-12 {
|
|
769
|
-
margin-left: 100%;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
.gutters > .col-1 {
|
|
773
|
-
width: calc(8.33333% - 2%);
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.gutters > .offset-1 {
|
|
777
|
-
margin-left: calc(8.33333% + 2%) !important;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
.gutters > .col-2 {
|
|
781
|
-
width: calc(16.66667% - 2%);
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.gutters > .offset-2 {
|
|
785
|
-
margin-left: calc(16.66667% + 2%) !important;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.gutters > .col-3 {
|
|
789
|
-
width: calc(25% - 2%);
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
.gutters > .offset-3 {
|
|
793
|
-
margin-left: calc(25% + 2%) !important;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.gutters > .col-4 {
|
|
797
|
-
width: calc(33.33333% - 2%);
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.gutters > .offset-4 {
|
|
801
|
-
margin-left: calc(33.33333% + 2%) !important;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.gutters > .col-5 {
|
|
805
|
-
width: calc(41.66667% - 2%);
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
.gutters > .offset-5 {
|
|
809
|
-
margin-left: calc(41.66667% + 2%) !important;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
.gutters > .col-6 {
|
|
813
|
-
width: calc(50% - 2%);
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
.gutters > .offset-6 {
|
|
817
|
-
margin-left: calc(50% + 2%) !important;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.gutters > .col-7 {
|
|
821
|
-
width: calc(58.33333% - 2%);
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.gutters > .offset-7 {
|
|
825
|
-
margin-left: calc(58.33333% + 2%) !important;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.gutters > .col-8 {
|
|
829
|
-
width: calc(66.66667% - 2%);
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.gutters > .offset-8 {
|
|
833
|
-
margin-left: calc(66.66667% + 2%) !important;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
.gutters > .col-9 {
|
|
837
|
-
width: calc(75% - 2%);
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
.gutters > .offset-9 {
|
|
841
|
-
margin-left: calc(75% + 2%) !important;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
.gutters > .col-10 {
|
|
845
|
-
width: calc(83.33333% - 2%);
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.gutters > .offset-10 {
|
|
849
|
-
margin-left: calc(83.33333% + 2%) !important;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.gutters > .col-11 {
|
|
853
|
-
width: calc(91.66667% - 2%);
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.gutters > .offset-11 {
|
|
857
|
-
margin-left: calc(91.66667% + 2%) !important;
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
.gutters > .col-12 {
|
|
861
|
-
width: calc(100% - 2%);
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
.gutters > .offset-12 {
|
|
865
|
-
margin-left: calc(100% + 2%) !important;
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
@media (max-width: 768px) {
|
|
869
|
-
[class^='offset-'],
|
|
870
|
-
[class*=' offset-'] {
|
|
871
|
-
margin-left: 0;
|
|
872
|
-
}
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.first {
|
|
876
|
-
order: -1;
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
.last {
|
|
880
|
-
order: 1;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
@media (max-width: 768px) {
|
|
884
|
-
.row .col {
|
|
885
|
-
margin-left: 0;
|
|
886
|
-
width: 100%;
|
|
887
|
-
}
|
|
888
|
-
.row.gutters .col {
|
|
889
|
-
margin-bottom: 16px;
|
|
890
|
-
}
|
|
891
|
-
.first-sm {
|
|
892
|
-
order: -1;
|
|
893
|
-
}
|
|
894
|
-
.last-sm {
|
|
895
|
-
order: 1;
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
table {
|
|
900
|
-
border-collapse: collapse;
|
|
901
|
-
border-spacing: 0;
|
|
902
|
-
max-width: 100%;
|
|
903
|
-
width: 100%;
|
|
904
|
-
empty-cells: show;
|
|
905
|
-
font-size: 15px;
|
|
906
|
-
line-height: 24px;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
table caption {
|
|
910
|
-
text-align: left;
|
|
911
|
-
font-size: 14px;
|
|
912
|
-
font-weight: 500;
|
|
913
|
-
color: #676b72;
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
th {
|
|
917
|
-
text-align: left;
|
|
918
|
-
font-weight: 700;
|
|
919
|
-
vertical-align: bottom;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
td {
|
|
923
|
-
vertical-align: top;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
tr.align-middle td,
|
|
927
|
-
td.align-middle {
|
|
928
|
-
vertical-align: middle;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
th,
|
|
932
|
-
td {
|
|
933
|
-
padding: 1rem 1rem;
|
|
934
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
935
|
-
}
|
|
936
|
-
th:first-child,
|
|
937
|
-
td:first-child {
|
|
938
|
-
padding-left: 0;
|
|
939
|
-
}
|
|
940
|
-
th:last-child,
|
|
941
|
-
td:last-child {
|
|
942
|
-
padding-right: 0;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
tfoot th,
|
|
946
|
-
tfoot td {
|
|
947
|
-
color: rgba(49, 52, 57, 0.5);
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
table.bordered td,
|
|
951
|
-
table.bordered th {
|
|
952
|
-
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
table.striped tr:nth-child(odd) td {
|
|
956
|
-
background: #f8f8f8;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
table.bordered td:first-child,
|
|
960
|
-
table.bordered th:first-child,
|
|
961
|
-
table.striped td:first-child,
|
|
962
|
-
table.striped th:first-child {
|
|
963
|
-
padding-left: 1rem;
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
table.bordered td:last-child,
|
|
967
|
-
table.bordered th:last-child,
|
|
968
|
-
table.striped td:last-child,
|
|
969
|
-
table.striped th:last-child {
|
|
970
|
-
padding-right: 1rem;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
table.unstyled td,
|
|
974
|
-
table.unstyled th {
|
|
975
|
-
border: none;
|
|
976
|
-
padding: 0;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
fieldset {
|
|
980
|
-
font-family: inherit;
|
|
981
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
982
|
-
padding: 2rem;
|
|
983
|
-
margin-bottom: 2rem;
|
|
984
|
-
margin-top: 2rem;
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
legend {
|
|
988
|
-
font-weight: bold;
|
|
989
|
-
font-size: 12px;
|
|
990
|
-
text-transform: uppercase;
|
|
991
|
-
padding: 0 1rem;
|
|
992
|
-
margin-left: -1rem;
|
|
993
|
-
top: 2px;
|
|
994
|
-
position: relative;
|
|
995
|
-
line-height: 0;
|
|
996
|
-
}
|
|
997
|
-
|
|
998
|
-
input,
|
|
999
|
-
textarea,
|
|
1000
|
-
select {
|
|
1001
|
-
display: block;
|
|
1002
|
-
width: 100%;
|
|
1003
|
-
font-family: inherit;
|
|
1004
|
-
font-size: 15px;
|
|
1005
|
-
height: 40px;
|
|
1006
|
-
outline: none;
|
|
1007
|
-
vertical-align: middle;
|
|
1008
|
-
background-color: #fff;
|
|
1009
|
-
border: 1px solid #d4d4d4;
|
|
1010
|
-
border-radius: 3px;
|
|
1011
|
-
box-shadow: none;
|
|
1012
|
-
padding: 0 12px;
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
|
-
input.small,
|
|
1016
|
-
textarea.small,
|
|
1017
|
-
select.small {
|
|
1018
|
-
height: 36px;
|
|
1019
|
-
font-size: 13px;
|
|
1020
|
-
padding: 0 12px;
|
|
1021
|
-
border-radius: 3px;
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
input.big,
|
|
1025
|
-
textarea.big,
|
|
1026
|
-
select.big {
|
|
1027
|
-
height: 48px;
|
|
1028
|
-
font-size: 17px;
|
|
1029
|
-
padding: 0 12px;
|
|
1030
|
-
border-radius: 3px;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
input:focus,
|
|
1034
|
-
textarea:focus,
|
|
1035
|
-
select:focus {
|
|
1036
|
-
outline: none;
|
|
1037
|
-
background-color: #fff;
|
|
1038
|
-
border-color: #1c86f2;
|
|
1039
|
-
box-shadow: 0 0 1px #1c86f2 inset;
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
input.error,
|
|
1043
|
-
textarea.error,
|
|
1044
|
-
select.error {
|
|
1045
|
-
background-color: rgba(240, 60, 105, 0.1);
|
|
1046
|
-
border: 1px solid #f583a0;
|
|
1047
|
-
}
|
|
1048
|
-
input.error:focus,
|
|
1049
|
-
textarea.error:focus,
|
|
1050
|
-
select.error:focus {
|
|
1051
|
-
border-color: #f03c69;
|
|
1052
|
-
box-shadow: 0 0 1px #f03c69 inset;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
input.success,
|
|
1056
|
-
textarea.success,
|
|
1057
|
-
select.success {
|
|
1058
|
-
background-color: rgba(53, 190, 177, 0.1);
|
|
1059
|
-
border: 1px solid #6ad5cb;
|
|
1060
|
-
}
|
|
1061
|
-
input.success:focus,
|
|
1062
|
-
textarea.success:focus,
|
|
1063
|
-
select.success:focus {
|
|
1064
|
-
border-color: #35beb1;
|
|
1065
|
-
box-shadow: 0 0 1px #35beb1 inset;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
input:disabled,
|
|
1069
|
-
input.disabled,
|
|
1070
|
-
textarea:disabled,
|
|
1071
|
-
textarea.disabled,
|
|
1072
|
-
select:disabled,
|
|
1073
|
-
select.disabled {
|
|
1074
|
-
resize: none;
|
|
1075
|
-
opacity: 0.6;
|
|
1076
|
-
cursor: default;
|
|
1077
|
-
font-style: italic;
|
|
1078
|
-
color: rgba(0, 0, 0, 0.5);
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
select {
|
|
1082
|
-
-webkit-appearance: none;
|
|
1083
|
-
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="12" viewBox="0 0 9 12"><path fill="#5e6c75" d="M0.722,4.823L-0.01,4.1,4.134-.01,4.866,0.716Zm7.555,0L9.01,4.1,4.866-.01l-0.732.726ZM0.722,7.177L-0.01,7.9,4.134,12.01l0.732-.726Zm7.555,0L9.01,7.9,4.866,12.01l-0.732-.726Z"/></svg>');
|
|
1084
|
-
background-repeat: no-repeat;
|
|
1085
|
-
background-position: right 1rem center;
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
select[multiple] {
|
|
1089
|
-
background-image: none;
|
|
1090
|
-
height: auto;
|
|
1091
|
-
padding: 0.5rem 0.75rem;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
textarea {
|
|
1095
|
-
height: auto;
|
|
1096
|
-
padding: 8px 12px;
|
|
1097
|
-
line-height: 24px;
|
|
1098
|
-
vertical-align: top;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
input[type='file'] {
|
|
1102
|
-
width: auto;
|
|
1103
|
-
border: none;
|
|
1104
|
-
padding: 0;
|
|
1105
|
-
height: auto;
|
|
1106
|
-
background: none;
|
|
1107
|
-
box-shadow: none;
|
|
1108
|
-
display: inline-block;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
input[type='search'],
|
|
1112
|
-
input.search {
|
|
1113
|
-
background-repeat: no-repeat;
|
|
1114
|
-
background-position: 8px 53%;
|
|
1115
|
-
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="#000" fill-opacity="0.4" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
|
|
1116
|
-
padding-left: 32px;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
input[type='radio'],
|
|
1120
|
-
input[type='checkbox'] {
|
|
1121
|
-
display: inline-block;
|
|
1122
|
-
width: auto;
|
|
1123
|
-
height: auto;
|
|
1124
|
-
padding: 0;
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
label {
|
|
1128
|
-
display: block;
|
|
1129
|
-
color: #313439;
|
|
1130
|
-
margin-bottom: 4px;
|
|
1131
|
-
font-size: 15px;
|
|
1132
|
-
}
|
|
1133
|
-
label.checkbox,
|
|
1134
|
-
label .desc,
|
|
1135
|
-
label .success,
|
|
1136
|
-
label .error {
|
|
1137
|
-
text-transform: none;
|
|
1138
|
-
font-weight: normal;
|
|
1139
|
-
}
|
|
1140
|
-
label.checkbox {
|
|
1141
|
-
font-size: 16px;
|
|
1142
|
-
line-height: 24px;
|
|
1143
|
-
cursor: pointer;
|
|
1144
|
-
color: inherit;
|
|
1145
|
-
}
|
|
1146
|
-
label.checkbox input {
|
|
1147
|
-
margin-top: 0;
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
.form-checkboxes label.checkbox {
|
|
1151
|
-
display: inline-block;
|
|
1152
|
-
margin-right: 16px;
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
.req {
|
|
1156
|
-
position: relative;
|
|
1157
|
-
top: 1px;
|
|
1158
|
-
font-weight: bold;
|
|
1159
|
-
color: #f03c69;
|
|
1160
|
-
font-size: 110%;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
.desc {
|
|
1164
|
-
color: rgba(49, 52, 57, 0.5);
|
|
1165
|
-
font-size: 12px;
|
|
1166
|
-
line-height: 20px;
|
|
1167
|
-
}
|
|
1168
|
-
|
|
1169
|
-
span.desc {
|
|
1170
|
-
margin-left: 4px;
|
|
1171
|
-
}
|
|
1172
|
-
|
|
1173
|
-
div.desc {
|
|
1174
|
-
margin-top: 4px;
|
|
1175
|
-
margin-bottom: -8px;
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
.form-buttons button,
|
|
1179
|
-
.form-buttons .button {
|
|
1180
|
-
margin-right: 8px;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
form,
|
|
1184
|
-
.form-item {
|
|
1185
|
-
margin-bottom: 2rem;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.form > .form-item:last-child {
|
|
1189
|
-
margin-bottom: 0;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.form .row:last-child .form-item {
|
|
1193
|
-
margin-bottom: 0;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.form span.success,
|
|
1197
|
-
.form span.error {
|
|
1198
|
-
font-size: 12px;
|
|
1199
|
-
line-height: 20px;
|
|
1200
|
-
margin-left: 4px;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.form-inline input,
|
|
1204
|
-
.form-inline textarea,
|
|
1205
|
-
.form-inline select {
|
|
1206
|
-
display: inline-block;
|
|
1207
|
-
width: auto;
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
.append,
|
|
1211
|
-
.prepend {
|
|
1212
|
-
display: flex;
|
|
1213
|
-
}
|
|
1214
|
-
.append input,
|
|
1215
|
-
.prepend input {
|
|
1216
|
-
flex: 1;
|
|
1217
|
-
}
|
|
1218
|
-
.append .button,
|
|
1219
|
-
.append span,
|
|
1220
|
-
.prepend .button,
|
|
1221
|
-
.prepend span {
|
|
1222
|
-
flex-shrink: 0;
|
|
1223
|
-
}
|
|
1224
|
-
.append span,
|
|
1225
|
-
.prepend span {
|
|
1226
|
-
display: flex;
|
|
1227
|
-
flex-direction: column;
|
|
1228
|
-
justify-content: center;
|
|
1229
|
-
font-weight: normal;
|
|
1230
|
-
border: 1px solid #d4d4d4;
|
|
1231
|
-
background-color: #f8f8f8;
|
|
1232
|
-
padding: 0 0.875rem;
|
|
1233
|
-
color: rgba(0, 0, 0, 0.5);
|
|
1234
|
-
font-size: 12px;
|
|
1235
|
-
white-space: nowrap;
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
|
-
.prepend input {
|
|
1239
|
-
border-radius: 0 3px 3px 0;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
.prepend .button {
|
|
1243
|
-
margin-right: -1px;
|
|
1244
|
-
border-radius: 3px 0 0 3px !important;
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
.prepend span {
|
|
1248
|
-
border-right: none;
|
|
1249
|
-
border-radius: 3px 0 0 3px;
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.append input {
|
|
1253
|
-
border-radius: 3px 0 0 3px;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
.append .button {
|
|
1257
|
-
margin-left: -1px;
|
|
1258
|
-
border-radius: 0 3px 3px 0 !important;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.append span {
|
|
1262
|
-
border-left: none;
|
|
1263
|
-
border-radius: 0 3px 3px 0;
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
button,
|
|
1267
|
-
.button {
|
|
1268
|
-
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
|
|
1269
|
-
font-size: 15px;
|
|
1270
|
-
color: #fff;
|
|
1271
|
-
background-color: #1c86f2;
|
|
1272
|
-
border-radius: 3px;
|
|
1273
|
-
min-height: 40px;
|
|
1274
|
-
padding: 8px 20px;
|
|
1275
|
-
font-weight: 500;
|
|
1276
|
-
text-decoration: none;
|
|
1277
|
-
cursor: pointer;
|
|
1278
|
-
display: inline-block;
|
|
1279
|
-
line-height: 20px;
|
|
1280
|
-
border: 1px solid transparent;
|
|
1281
|
-
vertical-align: middle;
|
|
1282
|
-
-webkit-appearance: none;
|
|
1283
|
-
}
|
|
1284
|
-
button i,
|
|
1285
|
-
.button i {
|
|
1286
|
-
position: relative;
|
|
1287
|
-
top: 1px;
|
|
1288
|
-
margin: 0 2px;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
input[type='submit'] {
|
|
1292
|
-
width: auto;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
button:hover,
|
|
1296
|
-
.button:hover {
|
|
1297
|
-
outline: none;
|
|
1298
|
-
text-decoration: none;
|
|
1299
|
-
color: #fff;
|
|
1300
|
-
background-color: #4ca0f5;
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
.button:disabled,
|
|
1304
|
-
.button.disabled {
|
|
1305
|
-
cursor: default;
|
|
1306
|
-
font-style: normal;
|
|
1307
|
-
color: rgba(255, 255, 255, 0.7);
|
|
1308
|
-
background-color: rgba(28, 134, 242, 0.7);
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
.button.small {
|
|
1312
|
-
font-size: 13px;
|
|
1313
|
-
min-height: 36px;
|
|
1314
|
-
padding: 6px 20px;
|
|
1315
|
-
border-radius: 3px;
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
.button.big {
|
|
1319
|
-
font-size: 17px;
|
|
1320
|
-
min-height: 48px;
|
|
1321
|
-
padding: 13px 24px;
|
|
1322
|
-
border-radius: 3px;
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
.button.large {
|
|
1326
|
-
font-size: 19px;
|
|
1327
|
-
min-height: 56px;
|
|
1328
|
-
padding: 20px 36px;
|
|
1329
|
-
border-radius: 3px;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
.button.outline {
|
|
1333
|
-
background: none;
|
|
1334
|
-
border-width: 2px;
|
|
1335
|
-
border-color: #1c86f2;
|
|
1336
|
-
color: #1c86f2;
|
|
1337
|
-
}
|
|
1338
|
-
.button.outline:hover {
|
|
1339
|
-
background: none;
|
|
1340
|
-
color: rgba(28, 134, 242, 0.6);
|
|
1341
|
-
border-color: rgba(28, 134, 242, 0.5);
|
|
1342
|
-
}
|
|
1343
|
-
.button.outline:disabled,
|
|
1344
|
-
.button.outline.disabled {
|
|
1345
|
-
background: none;
|
|
1346
|
-
color: rgba(28, 134, 242, 0.7);
|
|
1347
|
-
border-color: rgba(28, 134, 242, 0.5);
|
|
1348
|
-
}
|
|
1349
|
-
|
|
1350
|
-
.button.inverted {
|
|
1351
|
-
color: #000;
|
|
1352
|
-
background-color: #fff;
|
|
1353
|
-
}
|
|
1354
|
-
.button.inverted:hover {
|
|
1355
|
-
color: #000;
|
|
1356
|
-
background-color: white;
|
|
1357
|
-
}
|
|
1358
|
-
.button.inverted:disabled,
|
|
1359
|
-
.button.inverted.disabled {
|
|
1360
|
-
color: rgba(0, 0, 0, 0.7);
|
|
1361
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
1362
|
-
}
|
|
1363
|
-
.button.inverted.outline {
|
|
1364
|
-
background: none;
|
|
1365
|
-
color: #fff;
|
|
1366
|
-
border-color: #fff;
|
|
1367
|
-
}
|
|
1368
|
-
.button.inverted.outline:hover {
|
|
1369
|
-
color: rgba(255, 255, 255, 0.6);
|
|
1370
|
-
border-color: rgba(255, 255, 255, 0.5);
|
|
1371
|
-
}
|
|
1372
|
-
.button.inverted.outline:disabled,
|
|
1373
|
-
.button.inverted.outline.disabled {
|
|
1374
|
-
background: none;
|
|
1375
|
-
color: rgba(255, 255, 255, 0.7);
|
|
1376
|
-
border-color: rgba(255, 255, 255, 0.5);
|
|
1377
|
-
}
|
|
1378
|
-
.button.inverted:hover {
|
|
1379
|
-
opacity: 0.7;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
.button.round {
|
|
1383
|
-
border-radius: 56px;
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
.button.raised {
|
|
1387
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
1388
|
-
}
|
|
1389
|
-
|
|
1390
|
-
.button.upper {
|
|
1391
|
-
text-transform: uppercase;
|
|
1392
|
-
letter-spacing: 0.04em;
|
|
1393
|
-
font-size: 13px;
|
|
1394
|
-
}
|
|
1395
|
-
.button.upper.small {
|
|
1396
|
-
font-size: 11px;
|
|
1397
|
-
}
|
|
1398
|
-
.button.upper.big {
|
|
1399
|
-
font-size: 13px;
|
|
1400
|
-
}
|
|
1401
|
-
.button.upper.large {
|
|
1402
|
-
font-size: 15px;
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
|
-
.button.secondary {
|
|
1406
|
-
color: #fff;
|
|
1407
|
-
background-color: #313439;
|
|
1408
|
-
}
|
|
1409
|
-
.button.secondary:hover {
|
|
1410
|
-
color: #fff;
|
|
1411
|
-
background-color: #606670;
|
|
1412
|
-
}
|
|
1413
|
-
.button.secondary:disabled,
|
|
1414
|
-
.button.secondary.disabled {
|
|
1415
|
-
color: rgba(255, 255, 255, 0.7);
|
|
1416
|
-
background-color: rgba(49, 52, 57, 0.7);
|
|
1417
|
-
}
|
|
1418
|
-
.button.secondary.outline {
|
|
1419
|
-
background: none;
|
|
1420
|
-
color: #313439;
|
|
1421
|
-
border-color: #313439;
|
|
1422
|
-
}
|
|
1423
|
-
.button.secondary.outline:hover {
|
|
1424
|
-
color: rgba(49, 52, 57, 0.6);
|
|
1425
|
-
border-color: rgba(49, 52, 57, 0.5);
|
|
1426
|
-
}
|
|
1427
|
-
.button.secondary.outline:disabled,
|
|
1428
|
-
.button.secondary.outline.disabled {
|
|
1429
|
-
background: none;
|
|
1430
|
-
color: rgba(49, 52, 57, 0.7);
|
|
1431
|
-
border-color: rgba(49, 52, 57, 0.5);
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1434
|
-
.label {
|
|
1435
|
-
display: inline-block;
|
|
1436
|
-
font-size: 13px;
|
|
1437
|
-
background: #e0e1e1;
|
|
1438
|
-
line-height: 18px;
|
|
1439
|
-
padding: 0 10px;
|
|
1440
|
-
font-weight: 500;
|
|
1441
|
-
color: #313439;
|
|
1442
|
-
border: 1px solid transparent;
|
|
1443
|
-
vertical-align: middle;
|
|
1444
|
-
text-decoration: none;
|
|
1445
|
-
border-radius: 4px;
|
|
1446
|
-
}
|
|
1447
|
-
.label a,
|
|
1448
|
-
.label a:hover {
|
|
1449
|
-
color: inherit;
|
|
1450
|
-
text-decoration: none;
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
.label.big {
|
|
1454
|
-
font-size: 14px;
|
|
1455
|
-
line-height: 24px;
|
|
1456
|
-
padding: 0 12px;
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
|
-
.label.upper {
|
|
1460
|
-
text-transform: uppercase;
|
|
1461
|
-
font-size: 11px;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
.label.outline {
|
|
1465
|
-
background: none;
|
|
1466
|
-
border-color: #bdbdbd;
|
|
1467
|
-
}
|
|
1468
|
-
|
|
1469
|
-
.label.badge {
|
|
1470
|
-
text-align: center;
|
|
1471
|
-
border-radius: 64px;
|
|
1472
|
-
padding: 0 6px;
|
|
1473
|
-
}
|
|
1474
|
-
.label.badge.big {
|
|
1475
|
-
padding: 0 8px;
|
|
1476
|
-
}
|
|
1477
|
-
|
|
1478
|
-
.label.tag {
|
|
1479
|
-
padding: 0;
|
|
1480
|
-
background: none;
|
|
1481
|
-
border: none;
|
|
1482
|
-
text-transform: uppercase;
|
|
1483
|
-
font-size: 11px;
|
|
1484
|
-
}
|
|
1485
|
-
.label.tag.big {
|
|
1486
|
-
font-size: 13px;
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
.label.success {
|
|
1490
|
-
background: #35beb1;
|
|
1491
|
-
color: #fff;
|
|
1492
|
-
}
|
|
1493
|
-
.label.success.tag,
|
|
1494
|
-
.label.success.outline {
|
|
1495
|
-
background: none;
|
|
1496
|
-
border-color: #35beb1;
|
|
1497
|
-
color: #35beb1;
|
|
1498
|
-
}
|
|
1499
|
-
|
|
1500
|
-
.label.error {
|
|
1501
|
-
background: #f03c69;
|
|
1502
|
-
color: #fff;
|
|
1503
|
-
}
|
|
1504
|
-
.label.error.tag,
|
|
1505
|
-
.label.error.outline {
|
|
1506
|
-
background: none;
|
|
1507
|
-
border-color: #f03c69;
|
|
1508
|
-
color: #f03c69;
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
|
-
.label.warning {
|
|
1512
|
-
background: #f7ba45;
|
|
1513
|
-
color: #0d0d0e;
|
|
1514
|
-
}
|
|
1515
|
-
.label.warning.tag,
|
|
1516
|
-
.label.warning.outline {
|
|
1517
|
-
background: none;
|
|
1518
|
-
border-color: #f7ba45;
|
|
1519
|
-
color: #f7ba45;
|
|
1520
|
-
}
|
|
1521
|
-
|
|
1522
|
-
.label.focus {
|
|
1523
|
-
background: #1c86f2;
|
|
1524
|
-
color: #fff;
|
|
1525
|
-
}
|
|
1526
|
-
.label.focus.tag,
|
|
1527
|
-
.label.focus.outline {
|
|
1528
|
-
background: none;
|
|
1529
|
-
border-color: #1c86f2;
|
|
1530
|
-
color: #1c86f2;
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
|
-
.label.black {
|
|
1534
|
-
background: #0d0d0e;
|
|
1535
|
-
color: #fff;
|
|
1536
|
-
}
|
|
1537
|
-
.label.black.tag,
|
|
1538
|
-
.label.black.outline {
|
|
1539
|
-
background: none;
|
|
1540
|
-
border-color: #0d0d0e;
|
|
1541
|
-
color: #0d0d0e;
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
.label.inverted {
|
|
1545
|
-
background: #fff;
|
|
1546
|
-
color: #0d0d0e;
|
|
1547
|
-
}
|
|
1548
|
-
.label.inverted.tag,
|
|
1549
|
-
.label.inverted.outline {
|
|
1550
|
-
background: none;
|
|
1551
|
-
border-color: #fff;
|
|
1552
|
-
color: #fff;
|
|
1553
|
-
}
|
|
1554
|
-
|
|
1555
|
-
.breadcrumbs {
|
|
1556
|
-
font-size: 14px;
|
|
1557
|
-
margin-bottom: 24px;
|
|
1558
|
-
}
|
|
1559
|
-
.breadcrumbs ul {
|
|
1560
|
-
display: flex;
|
|
1561
|
-
align-items: center;
|
|
1562
|
-
}
|
|
1563
|
-
.breadcrumbs.push-center ul {
|
|
1564
|
-
justify-content: center;
|
|
1565
|
-
}
|
|
1566
|
-
.breadcrumbs span,
|
|
1567
|
-
.breadcrumbs a {
|
|
1568
|
-
font-style: normal;
|
|
1569
|
-
padding: 0 10px;
|
|
1570
|
-
display: inline-block;
|
|
1571
|
-
white-space: nowrap;
|
|
1572
|
-
}
|
|
1573
|
-
.breadcrumbs li:after {
|
|
1574
|
-
display: inline-block;
|
|
1575
|
-
content: '/';
|
|
1576
|
-
color: rgba(0, 0, 0, 0.3);
|
|
1577
|
-
}
|
|
1578
|
-
.breadcrumbs li:last-child:after {
|
|
1579
|
-
display: none;
|
|
1580
|
-
}
|
|
1581
|
-
.breadcrumbs li:first-child span,
|
|
1582
|
-
.breadcrumbs li:first-child a {
|
|
1583
|
-
padding-left: 0;
|
|
1584
|
-
}
|
|
1585
|
-
.breadcrumbs li.active a {
|
|
1586
|
-
color: #313439;
|
|
1587
|
-
text-decoration: none;
|
|
1588
|
-
cursor: text;
|
|
1589
|
-
}
|
|
1590
|
-
|
|
1591
|
-
.pagination {
|
|
1592
|
-
margin: 24px 0;
|
|
1593
|
-
font-size: 14px;
|
|
1594
|
-
}
|
|
1595
|
-
.pagination ul {
|
|
1596
|
-
display: flex;
|
|
1597
|
-
margin: 0;
|
|
1598
|
-
}
|
|
1599
|
-
.pagination.align-center ul {
|
|
1600
|
-
justify-content: center;
|
|
1601
|
-
}
|
|
1602
|
-
.pagination span,
|
|
1603
|
-
.pagination a {
|
|
1604
|
-
border-radius: 3px;
|
|
1605
|
-
display: inline-block;
|
|
1606
|
-
padding: 8px 12px;
|
|
1607
|
-
line-height: 1;
|
|
1608
|
-
white-space: nowrap;
|
|
1609
|
-
border: 1px solid transparent;
|
|
1610
|
-
}
|
|
1611
|
-
.pagination a {
|
|
1612
|
-
text-decoration: none;
|
|
1613
|
-
color: #313439;
|
|
1614
|
-
}
|
|
1615
|
-
.pagination a:hover {
|
|
1616
|
-
color: rgba(0, 0, 0, 0.5);
|
|
1617
|
-
border-color: #e0e1e1;
|
|
1618
|
-
}
|
|
1619
|
-
.pagination span,
|
|
1620
|
-
.pagination li.active a {
|
|
1621
|
-
color: rgba(0, 0, 0, 0.5);
|
|
1622
|
-
border-color: #e0e1e1;
|
|
1623
|
-
cursor: text;
|
|
1624
|
-
}
|
|
1625
|
-
.pagination.upper {
|
|
1626
|
-
font-size: 12px;
|
|
1627
|
-
}
|
|
1628
|
-
|
|
1629
|
-
.pager span {
|
|
1630
|
-
line-height: 24px;
|
|
1631
|
-
}
|
|
1632
|
-
|
|
1633
|
-
.pager span,
|
|
1634
|
-
.pager a {
|
|
1635
|
-
padding-left: 16px;
|
|
1636
|
-
padding-right: 16px;
|
|
1637
|
-
border-radius: 64px;
|
|
1638
|
-
border-color: rgba(0, 0, 0, 0.1);
|
|
1639
|
-
}
|
|
1640
|
-
|
|
1641
|
-
.pager li {
|
|
1642
|
-
flex-basis: 50%;
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1645
|
-
.pager li.next {
|
|
1646
|
-
text-align: right;
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
|
-
.pager.align-center li {
|
|
1650
|
-
flex-basis: auto;
|
|
1651
|
-
margin-left: 4px;
|
|
1652
|
-
margin-right: 4px;
|
|
1653
|
-
}
|
|
1654
|
-
|
|
1655
|
-
.pager.flat span,
|
|
1656
|
-
.pager.flat a {
|
|
1657
|
-
border: none;
|
|
1658
|
-
display: block;
|
|
1659
|
-
padding: 0;
|
|
1660
|
-
}
|
|
1661
|
-
|
|
1662
|
-
.pager.flat a {
|
|
1663
|
-
font-weight: bold;
|
|
1664
|
-
}
|
|
1665
|
-
.pager.flat a:hover {
|
|
1666
|
-
background: none;
|
|
1667
|
-
text-decoration: underline;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
|
-
@media (max-width: 768px) {
|
|
1671
|
-
.pager.flat ul {
|
|
1672
|
-
flex-direction: column;
|
|
1673
|
-
}
|
|
1674
|
-
.pager.flat li {
|
|
1675
|
-
flex-basis: 100%;
|
|
1676
|
-
margin-bottom: 8px;
|
|
1677
|
-
text-align: left;
|
|
1678
|
-
}
|
|
1679
|
-
}
|
|
1680
|
-
|
|
1681
|
-
@font-face {
|
|
1682
|
-
font-family: 'Kube';
|
|
1683
|
-
src: url('data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfgAAAC8AAAAYGNtYXAXVtKOAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZsMn2SAAAAF4AAADeGhlYWQMP9EUAAAE8AAAADZoaGVhB8IDzQAABSgAAAAkaG10eCYABd4AAAVMAAAAMGxvY2EFWASuAAAFfAAAABptYXhwABcAmwAABZgAAAAgbmFtZfMJxocAAAW4AAABYnBvc3QAAwAAAAAHHAAAACAAAwPHAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qf//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAAKAAAAAAQAA8AADwAUACQANABEAFYAaAB4AIgAmAAAEyIGFREUFjMhMjY1ETQmIwUhESEREzgBMSIGFRQWMzI2NTQmIzM4ATEiBhUUFjMyNjU0JiMzOAExIgYVFBYzMjY1NCYjATIWHQEUBiMiJj0BNDYzOAExITIWHQEUBiMiJj0BNDYzOAExATgBMSIGFRQWMzI2NTQmIzM4ATEiBhUUFjMyNjU0JiMzOAExIgYVFBYzMjY1NCYjwFBwcFACgFBwcFD9IQM+/MKrHioqHh4qKh70HioqHh4qKh70HisrHh0rKh7+MBQdHRQUHBwUAbgUHBwUFB0dFP4wHioqHh4qKh70HioqHh4qKh70HisrHh0rKh4DYHBQ/iBQcHBQAeBQcF/9XwKh/n8qHh4qKh4eKioeHioqHh4qKh4eKioeHioCQBwVjhUcHBWOFRwcFY4VHBwVjhUc/rAqHh4qKh4eKioeHioqHh4qKh4eKioeHioAAAABAQAAwAMAAcAACwAAAQcXBycHJzcnNxc3AwDMAjMDAzMCzDTMzAGVqAIrAgIrAqgrqKgAAQGAAEACgAJAAAsAACUnByc3JzcXNxcHFwJVqAIrAgIrAqgrqKhAzAIzAwMzAsw0zMwAAAEBgABAAoACQAALAAABFzcXBxcHJwcnNycBq6gCKwICKwKoK6ioAkDMAjMDAzMCzDTMzAABAQAAwAMAAcAACwAAJTcnNxc3FwcXBycHAQDMAjMDAzMCzDTMzOuoAisCAisCqCuoqAAAAgAP/+UD1AOqAAQACAAAEwEHATcFAScBSwOJPPx3PAOJ/Hc8A4kDqvx3PAOJPDz8dzwDiQAAAAADAIAAgAOAAwAAAwAHAAsAADc1IRUBIRUhESEVIYADAP0AAwD9AAMA/QCAgIABgIABgIAAAgBPAA8DsgNxABgALQAAJQcBDgEjIi4CNTQ+AjMyHgIVFAYHAQEiDgIVFB4CMzI+AjU0LgIjA7JY/t4lWTBBc1YxMVZzQUFzVTIcGQEi/dgxVkAlJUBWMTFWQCUlQFYxZ1gBIRkcMlVzQUFzVjExVnNBMFkm/uACuyVAVjExVkAlJUBWMTFWQCUAAAABAAAAAQAABhlWm18PPPUACwQAAAAAANSQRjkAAAAA1JBGOQAA/+UEAAPAAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAAAAEAAEABAABgAQAAYAEAAEABAAADwQAAIAEAABPAAAAAAAKABQAHgDYAPIBDAEmAUABXAF2AbwAAAABAAAADACZAAoAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABAAAAAEAAAAAAAIABwBFAAEAAAAAAAMABAAtAAEAAAAAAAQABABaAAEAAAAAAAUACwAMAAEAAAAAAAYABAA5AAEAAAAAAAoAGgBmAAMAAQQJAAEACAAEAAMAAQQJAAIADgBMAAMAAQQJAAMACAAxAAMAAQQJAAQACABeAAMAAQQJAAUAFgAXAAMAAQQJAAYACAA9AAMAAQQJAAoANACAS3ViZQBLAHUAYgBlVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwS3ViZQBLAHUAYgBlS3ViZQBLAHUAYgBlUmVndWxhcgBSAGUAZwB1AGwAYQByS3ViZQBLAHUAYgBlRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==')
|
|
1684
|
-
format('truetype');
|
|
1685
|
-
font-weight: normal;
|
|
1686
|
-
font-style: normal;
|
|
1687
|
-
}
|
|
1688
|
-
|
|
1689
|
-
[class^='kube-'],
|
|
1690
|
-
[class*=' kube-'],
|
|
1691
|
-
.close,
|
|
1692
|
-
.caret {
|
|
1693
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
1694
|
-
font-family: 'Kube' !important;
|
|
1695
|
-
speak: none;
|
|
1696
|
-
font-style: normal;
|
|
1697
|
-
font-weight: normal;
|
|
1698
|
-
font-variant: normal;
|
|
1699
|
-
text-transform: none;
|
|
1700
|
-
line-height: 1;
|
|
1701
|
-
/* Better Font Rendering =========== */
|
|
1702
|
-
-webkit-font-smoothing: antialiased;
|
|
1703
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
.kube-calendar:before {
|
|
1707
|
-
content: '\e900';
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
|
-
.caret.down:before,
|
|
1711
|
-
.kube-caret-down:before {
|
|
1712
|
-
content: '\e901';
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
|
-
.caret.left:before,
|
|
1716
|
-
.kube-caret-left:before {
|
|
1717
|
-
content: '\e902';
|
|
1718
|
-
}
|
|
1719
|
-
|
|
1720
|
-
.caret.right:before,
|
|
1721
|
-
.kube-caret-right:before {
|
|
1722
|
-
content: '\e903';
|
|
1723
|
-
}
|
|
1724
|
-
|
|
1725
|
-
.caret.up:before,
|
|
1726
|
-
.kube-caret-up:before {
|
|
1727
|
-
content: '\e904';
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
|
-
.close:before,
|
|
1731
|
-
.kube-close:before {
|
|
1732
|
-
content: '\e905';
|
|
1733
|
-
}
|
|
1734
|
-
|
|
1735
|
-
.kube-menu:before {
|
|
1736
|
-
content: '\e906';
|
|
1737
|
-
}
|
|
1738
|
-
|
|
1739
|
-
.kube-search:before {
|
|
1740
|
-
content: '\e907';
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
.gutters .column.push-left,
|
|
1744
|
-
.push-left {
|
|
1745
|
-
margin-right: auto;
|
|
1746
|
-
}
|
|
1747
|
-
|
|
1748
|
-
.gutters .column.push-right,
|
|
1749
|
-
.push-right {
|
|
1750
|
-
margin-left: auto;
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
|
-
.gutters .column.push-center,
|
|
1754
|
-
.push-center {
|
|
1755
|
-
margin-left: auto;
|
|
1756
|
-
margin-right: auto;
|
|
1757
|
-
}
|
|
1758
|
-
|
|
1759
|
-
.gutters .column.push-middle,
|
|
1760
|
-
.push-middle {
|
|
1761
|
-
margin-top: auto;
|
|
1762
|
-
margin-bottom: auto;
|
|
1763
|
-
}
|
|
1764
|
-
|
|
1765
|
-
.push-bottom {
|
|
1766
|
-
margin-top: auto;
|
|
1767
|
-
}
|
|
1768
|
-
|
|
1769
|
-
@media (max-width: 768px) {
|
|
1770
|
-
.gutters .column.push-left-sm,
|
|
1771
|
-
.push-left-sm {
|
|
1772
|
-
margin-left: 0;
|
|
1773
|
-
}
|
|
1774
|
-
.gutters .column.push-center-sm,
|
|
1775
|
-
.push-center-sm {
|
|
1776
|
-
margin-left: auto;
|
|
1777
|
-
margin-right: auto;
|
|
1778
|
-
}
|
|
1779
|
-
.push-top-sm {
|
|
1780
|
-
margin-top: 0;
|
|
1781
|
-
}
|
|
1782
|
-
}
|
|
1783
|
-
|
|
1784
|
-
.align-middle {
|
|
1785
|
-
align-items: center;
|
|
1786
|
-
}
|
|
1787
|
-
|
|
1788
|
-
.align-right {
|
|
1789
|
-
justify-content: flex-end;
|
|
1790
|
-
}
|
|
1791
|
-
|
|
1792
|
-
.align-center {
|
|
1793
|
-
justify-content: center;
|
|
1794
|
-
}
|
|
1795
|
-
|
|
1796
|
-
@media (max-width: 768px) {
|
|
1797
|
-
.align-left-sm {
|
|
1798
|
-
justify-content: flex-start;
|
|
1799
|
-
}
|
|
1800
|
-
}
|
|
1801
|
-
|
|
1802
|
-
.float-right {
|
|
1803
|
-
float: right;
|
|
1804
|
-
}
|
|
1805
|
-
|
|
1806
|
-
.float-left {
|
|
1807
|
-
float: left;
|
|
1808
|
-
}
|
|
1809
|
-
|
|
1810
|
-
@media (max-width: 768px) {
|
|
1811
|
-
.float-right {
|
|
1812
|
-
float: none;
|
|
1813
|
-
}
|
|
1814
|
-
.float-left {
|
|
1815
|
-
float: none;
|
|
1816
|
-
}
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
.fixed {
|
|
1820
|
-
position: fixed;
|
|
1821
|
-
top: 0;
|
|
1822
|
-
left: 0;
|
|
1823
|
-
z-index: 100;
|
|
1824
|
-
width: 100%;
|
|
1825
|
-
}
|
|
1826
|
-
|
|
1827
|
-
.w5 {
|
|
1828
|
-
width: 5%;
|
|
1829
|
-
}
|
|
1830
|
-
|
|
1831
|
-
.w10 {
|
|
1832
|
-
width: 10%;
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
.w15 {
|
|
1836
|
-
width: 15%;
|
|
1837
|
-
}
|
|
1838
|
-
|
|
1839
|
-
.w20 {
|
|
1840
|
-
width: 20%;
|
|
1841
|
-
}
|
|
1842
|
-
|
|
1843
|
-
.w25 {
|
|
1844
|
-
width: 25%;
|
|
1845
|
-
}
|
|
1846
|
-
|
|
1847
|
-
.w30 {
|
|
1848
|
-
width: 30%;
|
|
1849
|
-
}
|
|
1850
|
-
|
|
1851
|
-
.w35 {
|
|
1852
|
-
width: 35%;
|
|
1853
|
-
}
|
|
1854
|
-
|
|
1855
|
-
.w40 {
|
|
1856
|
-
width: 40%;
|
|
1857
|
-
}
|
|
1858
|
-
|
|
1859
|
-
.w45 {
|
|
1860
|
-
width: 45%;
|
|
1861
|
-
}
|
|
1862
|
-
|
|
1863
|
-
.w50 {
|
|
1864
|
-
width: 50%;
|
|
1865
|
-
}
|
|
1866
|
-
|
|
1867
|
-
.w55 {
|
|
1868
|
-
width: 55%;
|
|
1869
|
-
}
|
|
1870
|
-
|
|
1871
|
-
.w60 {
|
|
1872
|
-
width: 60%;
|
|
1873
|
-
}
|
|
1874
|
-
|
|
1875
|
-
.w65 {
|
|
1876
|
-
width: 65%;
|
|
1877
|
-
}
|
|
1878
|
-
|
|
1879
|
-
.w70 {
|
|
1880
|
-
width: 70%;
|
|
1881
|
-
}
|
|
1882
|
-
|
|
1883
|
-
.w75 {
|
|
1884
|
-
width: 75%;
|
|
1885
|
-
}
|
|
1886
|
-
|
|
1887
|
-
.w80 {
|
|
1888
|
-
width: 80%;
|
|
1889
|
-
}
|
|
1890
|
-
|
|
1891
|
-
.w85 {
|
|
1892
|
-
width: 85%;
|
|
1893
|
-
}
|
|
1894
|
-
|
|
1895
|
-
.w90 {
|
|
1896
|
-
width: 90%;
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
|
-
.w95 {
|
|
1900
|
-
width: 95%;
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
.w100 {
|
|
1904
|
-
width: 100%;
|
|
1905
|
-
}
|
|
1906
|
-
|
|
1907
|
-
.w-auto {
|
|
1908
|
-
width: auto;
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
|
-
.w-small {
|
|
1912
|
-
width: 480px;
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
.w-medium {
|
|
1916
|
-
width: 600px;
|
|
1917
|
-
}
|
|
1918
|
-
|
|
1919
|
-
.w-big {
|
|
1920
|
-
width: 740px;
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
.w-large {
|
|
1924
|
-
width: 840px;
|
|
1925
|
-
}
|
|
1926
|
-
|
|
1927
|
-
@media (max-width: 768px) {
|
|
1928
|
-
.w-auto-sm {
|
|
1929
|
-
width: auto;
|
|
1930
|
-
}
|
|
1931
|
-
.w100-sm,
|
|
1932
|
-
.w-small,
|
|
1933
|
-
.w-medium,
|
|
1934
|
-
.w-big,
|
|
1935
|
-
.w-large {
|
|
1936
|
-
width: 100%;
|
|
1937
|
-
}
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
.max-w5 {
|
|
1941
|
-
max-width: 5%;
|
|
1942
|
-
}
|
|
1943
|
-
|
|
1944
|
-
.max-w10 {
|
|
1945
|
-
max-width: 10%;
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
|
-
.max-w15 {
|
|
1949
|
-
max-width: 15%;
|
|
1950
|
-
}
|
|
1951
|
-
|
|
1952
|
-
.max-w20 {
|
|
1953
|
-
max-width: 20%;
|
|
1954
|
-
}
|
|
1955
|
-
|
|
1956
|
-
.max-w25 {
|
|
1957
|
-
max-width: 25%;
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
|
-
.max-w30 {
|
|
1961
|
-
max-width: 30%;
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
.max-w35 {
|
|
1965
|
-
max-width: 35%;
|
|
1966
|
-
}
|
|
1967
|
-
|
|
1968
|
-
.max-w40 {
|
|
1969
|
-
max-width: 40%;
|
|
1970
|
-
}
|
|
1971
|
-
|
|
1972
|
-
.max-w45 {
|
|
1973
|
-
max-width: 45%;
|
|
1974
|
-
}
|
|
1975
|
-
|
|
1976
|
-
.max-w50 {
|
|
1977
|
-
max-width: 50%;
|
|
1978
|
-
}
|
|
1979
|
-
|
|
1980
|
-
.max-w55 {
|
|
1981
|
-
max-width: 55%;
|
|
1982
|
-
}
|
|
1983
|
-
|
|
1984
|
-
.max-w60 {
|
|
1985
|
-
max-width: 60%;
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
.max-w65 {
|
|
1989
|
-
max-width: 65%;
|
|
1990
|
-
}
|
|
1991
|
-
|
|
1992
|
-
.max-w70 {
|
|
1993
|
-
max-width: 70%;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
|
-
.max-w75 {
|
|
1997
|
-
max-width: 75%;
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
.max-w80 {
|
|
2001
|
-
max-width: 80%;
|
|
2002
|
-
}
|
|
2003
|
-
|
|
2004
|
-
.max-w85 {
|
|
2005
|
-
max-width: 85%;
|
|
2006
|
-
}
|
|
2007
|
-
|
|
2008
|
-
.max-w90 {
|
|
2009
|
-
max-width: 90%;
|
|
2010
|
-
}
|
|
2011
|
-
|
|
2012
|
-
.max-w95 {
|
|
2013
|
-
max-width: 95%;
|
|
2014
|
-
}
|
|
2015
|
-
|
|
2016
|
-
.max-w100 {
|
|
2017
|
-
max-width: 100%;
|
|
2018
|
-
}
|
|
2019
|
-
|
|
2020
|
-
.max-w-small {
|
|
2021
|
-
max-width: 480px;
|
|
2022
|
-
}
|
|
2023
|
-
|
|
2024
|
-
.max-w-medium {
|
|
2025
|
-
max-width: 600px;
|
|
2026
|
-
}
|
|
2027
|
-
|
|
2028
|
-
.max-w-big {
|
|
2029
|
-
max-width: 740px;
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
|
-
.max-w-large {
|
|
2033
|
-
max-width: 840px;
|
|
2034
|
-
}
|
|
2035
|
-
|
|
2036
|
-
@media (max-width: 768px) {
|
|
2037
|
-
.max-w-auto-sm,
|
|
2038
|
-
.max-w-small,
|
|
2039
|
-
.max-w-medium,
|
|
2040
|
-
.max-w-big,
|
|
2041
|
-
.max-w-large {
|
|
2042
|
-
max-width: auto;
|
|
2043
|
-
}
|
|
2044
|
-
}
|
|
2045
|
-
|
|
2046
|
-
.min-w5 {
|
|
2047
|
-
min-width: 5%;
|
|
2048
|
-
}
|
|
2049
|
-
|
|
2050
|
-
.min-w10 {
|
|
2051
|
-
min-width: 10%;
|
|
2052
|
-
}
|
|
2053
|
-
|
|
2054
|
-
.min-w15 {
|
|
2055
|
-
min-width: 15%;
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
|
-
.min-w20 {
|
|
2059
|
-
min-width: 20%;
|
|
2060
|
-
}
|
|
2061
|
-
|
|
2062
|
-
.min-w25 {
|
|
2063
|
-
min-width: 25%;
|
|
2064
|
-
}
|
|
2065
|
-
|
|
2066
|
-
.min-w30 {
|
|
2067
|
-
min-width: 30%;
|
|
2068
|
-
}
|
|
2069
|
-
|
|
2070
|
-
.min-w35 {
|
|
2071
|
-
min-width: 35%;
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
.min-w40 {
|
|
2075
|
-
min-width: 40%;
|
|
2076
|
-
}
|
|
2077
|
-
|
|
2078
|
-
.min-w45 {
|
|
2079
|
-
min-width: 45%;
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
.min-w50 {
|
|
2083
|
-
min-width: 50%;
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
|
-
.min-w55 {
|
|
2087
|
-
min-width: 55%;
|
|
2088
|
-
}
|
|
2089
|
-
|
|
2090
|
-
.min-w60 {
|
|
2091
|
-
min-width: 60%;
|
|
2092
|
-
}
|
|
2093
|
-
|
|
2094
|
-
.min-w65 {
|
|
2095
|
-
min-width: 65%;
|
|
2096
|
-
}
|
|
2097
|
-
|
|
2098
|
-
.min-w70 {
|
|
2099
|
-
min-width: 70%;
|
|
2100
|
-
}
|
|
2101
|
-
|
|
2102
|
-
.min-w75 {
|
|
2103
|
-
min-width: 75%;
|
|
2104
|
-
}
|
|
2105
|
-
|
|
2106
|
-
.min-w80 {
|
|
2107
|
-
min-width: 80%;
|
|
2108
|
-
}
|
|
2109
|
-
|
|
2110
|
-
.min-w85 {
|
|
2111
|
-
min-width: 85%;
|
|
2112
|
-
}
|
|
2113
|
-
|
|
2114
|
-
.min-w90 {
|
|
2115
|
-
min-width: 90%;
|
|
2116
|
-
}
|
|
2117
|
-
|
|
2118
|
-
.min-w95 {
|
|
2119
|
-
min-width: 95%;
|
|
2120
|
-
}
|
|
2121
|
-
|
|
2122
|
-
.min-w100 {
|
|
2123
|
-
min-width: 100%;
|
|
2124
|
-
}
|
|
2125
|
-
|
|
2126
|
-
.h25 {
|
|
2127
|
-
height: 25%;
|
|
2128
|
-
}
|
|
2129
|
-
|
|
2130
|
-
.h50 {
|
|
2131
|
-
height: 50%;
|
|
2132
|
-
}
|
|
2133
|
-
|
|
2134
|
-
.h100 {
|
|
2135
|
-
height: 100%;
|
|
2136
|
-
}
|
|
2137
|
-
|
|
2138
|
-
.group:after {
|
|
2139
|
-
content: '';
|
|
2140
|
-
display: table;
|
|
2141
|
-
clear: both;
|
|
2142
|
-
}
|
|
2143
|
-
|
|
2144
|
-
.flex {
|
|
2145
|
-
display: flex;
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
@media (max-width: 768px) {
|
|
2149
|
-
.flex-column-sm {
|
|
2150
|
-
flex-direction: column;
|
|
2151
|
-
}
|
|
2152
|
-
.flex-w100-sm {
|
|
2153
|
-
flex: 0 0 100%;
|
|
2154
|
-
}
|
|
2155
|
-
}
|
|
2156
|
-
@media (max-width: 768px) and (max-width: 768px) {
|
|
2157
|
-
.flex-w100-sm {
|
|
2158
|
-
flex: 0 0 100% !important;
|
|
2159
|
-
}
|
|
2160
|
-
}
|
|
2161
|
-
|
|
2162
|
-
.invisible {
|
|
2163
|
-
visibility: hidden;
|
|
2164
|
-
}
|
|
2165
|
-
|
|
2166
|
-
.visible {
|
|
2167
|
-
visibility: visible;
|
|
2168
|
-
}
|
|
2169
|
-
|
|
2170
|
-
.display-block {
|
|
2171
|
-
display: block;
|
|
2172
|
-
}
|
|
2173
|
-
|
|
2174
|
-
.hide {
|
|
2175
|
-
display: none !important;
|
|
2176
|
-
}
|
|
2177
|
-
|
|
2178
|
-
@media (max-width: 768px) {
|
|
2179
|
-
.hide-sm {
|
|
2180
|
-
display: none !important;
|
|
2181
|
-
}
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
|
-
@media (min-width: 769px) {
|
|
2185
|
-
.show-sm {
|
|
2186
|
-
display: none !important;
|
|
2187
|
-
}
|
|
2188
|
-
}
|
|
2189
|
-
|
|
2190
|
-
@media print {
|
|
2191
|
-
.hide-print {
|
|
2192
|
-
display: none !important;
|
|
2193
|
-
}
|
|
2194
|
-
.show-print {
|
|
2195
|
-
display: block !important;
|
|
2196
|
-
}
|
|
2197
|
-
}
|
|
2198
|
-
|
|
2199
|
-
.no-scroll {
|
|
2200
|
-
overflow: hidden;
|
|
2201
|
-
position: fixed;
|
|
2202
|
-
top: 0;
|
|
2203
|
-
left: 0;
|
|
2204
|
-
width: 100%;
|
|
2205
|
-
height: 100% !important;
|
|
2206
|
-
}
|
|
2207
|
-
|
|
2208
|
-
.scrollbar-measure {
|
|
2209
|
-
position: absolute;
|
|
2210
|
-
top: -9999px;
|
|
2211
|
-
width: 50px;
|
|
2212
|
-
height: 50px;
|
|
2213
|
-
overflow: scroll;
|
|
2214
|
-
}
|
|
2215
|
-
|
|
2216
|
-
.video-container {
|
|
2217
|
-
height: 0;
|
|
2218
|
-
padding-bottom: 56.25%;
|
|
2219
|
-
position: relative;
|
|
2220
|
-
margin-bottom: 16px;
|
|
2221
|
-
}
|
|
2222
|
-
.video-container iframe,
|
|
2223
|
-
.video-container object,
|
|
2224
|
-
.video-container embed {
|
|
2225
|
-
position: absolute;
|
|
2226
|
-
top: 0;
|
|
2227
|
-
left: 0;
|
|
2228
|
-
width: 100% !important;
|
|
2229
|
-
height: 100% !important;
|
|
2230
|
-
}
|
|
2231
|
-
|
|
2232
|
-
.close {
|
|
2233
|
-
display: inline-block;
|
|
2234
|
-
min-height: 16px;
|
|
2235
|
-
min-width: 16px;
|
|
2236
|
-
line-height: 16px;
|
|
2237
|
-
vertical-align: middle;
|
|
2238
|
-
text-align: center;
|
|
2239
|
-
font-size: 12px;
|
|
2240
|
-
opacity: 0.6;
|
|
2241
|
-
}
|
|
2242
|
-
.close:hover {
|
|
2243
|
-
opacity: 1;
|
|
2244
|
-
}
|
|
2245
|
-
.close.small {
|
|
2246
|
-
font-size: 8px;
|
|
2247
|
-
}
|
|
2248
|
-
.close.big {
|
|
2249
|
-
font-size: 18px;
|
|
2250
|
-
}
|
|
2251
|
-
.close.white {
|
|
2252
|
-
color: #fff;
|
|
2253
|
-
}
|
|
2254
|
-
|
|
2255
|
-
.caret {
|
|
2256
|
-
display: inline-block;
|
|
2257
|
-
}
|
|
2258
|
-
|
|
2259
|
-
.button .caret {
|
|
2260
|
-
margin-right: -8px;
|
|
2261
|
-
}
|
|
2262
|
-
|
|
2263
|
-
.overlay {
|
|
2264
|
-
position: fixed;
|
|
2265
|
-
z-index: 200;
|
|
2266
|
-
top: 0;
|
|
2267
|
-
left: 0;
|
|
2268
|
-
right: 0;
|
|
2269
|
-
bottom: 0;
|
|
2270
|
-
background-color: rgba(255, 255, 255, 0.95);
|
|
2271
|
-
}
|
|
2272
|
-
.overlay > .close {
|
|
2273
|
-
position: fixed;
|
|
2274
|
-
top: 1rem;
|
|
2275
|
-
right: 1rem;
|
|
2276
|
-
}
|
|
2277
|
-
|
|
2278
|
-
@media print {
|
|
2279
|
-
* {
|
|
2280
|
-
background: transparent !important;
|
|
2281
|
-
color: black !important;
|
|
2282
|
-
box-shadow: none !important;
|
|
2283
|
-
text-shadow: none !important;
|
|
2284
|
-
}
|
|
2285
|
-
a,
|
|
2286
|
-
a:visited {
|
|
2287
|
-
text-decoration: underline;
|
|
2288
|
-
}
|
|
2289
|
-
pre,
|
|
2290
|
-
blockquote {
|
|
2291
|
-
border: 1px solid #999;
|
|
2292
|
-
page-break-inside: avoid;
|
|
2293
|
-
}
|
|
2294
|
-
p,
|
|
2295
|
-
h2,
|
|
2296
|
-
h3 {
|
|
2297
|
-
orphans: 3;
|
|
2298
|
-
widows: 3;
|
|
2299
|
-
}
|
|
2300
|
-
thead {
|
|
2301
|
-
display: table-header-group;
|
|
2302
|
-
}
|
|
2303
|
-
tr,
|
|
2304
|
-
img {
|
|
2305
|
-
page-break-inside: avoid;
|
|
2306
|
-
}
|
|
2307
|
-
img {
|
|
2308
|
-
max-width: 100% !important;
|
|
2309
|
-
}
|
|
2310
|
-
h2,
|
|
2311
|
-
h3,
|
|
2312
|
-
h4 {
|
|
2313
|
-
page-break-after: avoid;
|
|
2314
|
-
}
|
|
2315
|
-
@page {
|
|
2316
|
-
margin: 0.5cm;
|
|
2317
|
-
}
|
|
2318
|
-
}
|
|
2319
|
-
|
|
2320
|
-
@keyframes slideUp {
|
|
2321
|
-
to {
|
|
2322
|
-
height: 0;
|
|
2323
|
-
padding-top: 0;
|
|
2324
|
-
padding-bottom: 0;
|
|
2325
|
-
}
|
|
2326
|
-
}
|
|
2327
|
-
|
|
2328
|
-
@keyframes slideDown {
|
|
2329
|
-
from {
|
|
2330
|
-
height: 0;
|
|
2331
|
-
padding-top: 0;
|
|
2332
|
-
padding-bottom: 0;
|
|
2333
|
-
}
|
|
2334
|
-
}
|
|
2335
|
-
|
|
2336
|
-
@keyframes fadeIn {
|
|
2337
|
-
from {
|
|
2338
|
-
opacity: 0;
|
|
2339
|
-
}
|
|
2340
|
-
to {
|
|
2341
|
-
opacity: 1;
|
|
2342
|
-
}
|
|
2343
|
-
}
|
|
2344
|
-
|
|
2345
|
-
@keyframes fadeOut {
|
|
2346
|
-
from {
|
|
2347
|
-
opacity: 1;
|
|
2348
|
-
}
|
|
2349
|
-
to {
|
|
2350
|
-
opacity: 0;
|
|
2351
|
-
}
|
|
2352
|
-
}
|
|
2353
|
-
|
|
2354
|
-
@keyframes flipIn {
|
|
2355
|
-
from {
|
|
2356
|
-
opacity: 0;
|
|
2357
|
-
transform: scaleY(0);
|
|
2358
|
-
}
|
|
2359
|
-
to {
|
|
2360
|
-
opacity: 1;
|
|
2361
|
-
transform: scaleY(1);
|
|
2362
|
-
}
|
|
2363
|
-
}
|
|
2364
|
-
|
|
2365
|
-
@keyframes flipOut {
|
|
2366
|
-
from {
|
|
2367
|
-
opacity: 1;
|
|
2368
|
-
transform: scaleY(1);
|
|
2369
|
-
}
|
|
2370
|
-
to {
|
|
2371
|
-
opacity: 0;
|
|
2372
|
-
transform: scaleY(0);
|
|
2373
|
-
}
|
|
2374
|
-
}
|
|
2375
|
-
|
|
2376
|
-
@keyframes zoomIn {
|
|
2377
|
-
from {
|
|
2378
|
-
opacity: 0;
|
|
2379
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
|
2380
|
-
}
|
|
2381
|
-
50% {
|
|
2382
|
-
opacity: 1;
|
|
2383
|
-
}
|
|
2384
|
-
}
|
|
2385
|
-
|
|
2386
|
-
@keyframes zoomOut {
|
|
2387
|
-
from {
|
|
2388
|
-
opacity: 1;
|
|
2389
|
-
}
|
|
2390
|
-
50% {
|
|
2391
|
-
opacity: 0;
|
|
2392
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
|
2393
|
-
}
|
|
2394
|
-
to {
|
|
2395
|
-
opacity: 0;
|
|
2396
|
-
}
|
|
2397
|
-
}
|
|
2398
|
-
|
|
2399
|
-
@keyframes slideInRight {
|
|
2400
|
-
from {
|
|
2401
|
-
transform: translate3d(100%, 0, 0);
|
|
2402
|
-
visibility: visible;
|
|
2403
|
-
}
|
|
2404
|
-
to {
|
|
2405
|
-
transform: translate3d(0, 0, 0);
|
|
2406
|
-
}
|
|
2407
|
-
}
|
|
2408
|
-
|
|
2409
|
-
@keyframes slideInLeft {
|
|
2410
|
-
from {
|
|
2411
|
-
transform: translate3d(-100%, 0, 0);
|
|
2412
|
-
visibility: visible;
|
|
2413
|
-
}
|
|
2414
|
-
to {
|
|
2415
|
-
transform: translate3d(0, 0, 0);
|
|
2416
|
-
}
|
|
2417
|
-
}
|
|
2418
|
-
|
|
2419
|
-
@keyframes slideInDown {
|
|
2420
|
-
from {
|
|
2421
|
-
transform: translate3d(0, -100%, 0);
|
|
2422
|
-
visibility: visible;
|
|
2423
|
-
}
|
|
2424
|
-
to {
|
|
2425
|
-
transform: translate3d(0, 0, 0);
|
|
2426
|
-
}
|
|
2427
|
-
}
|
|
2428
|
-
|
|
2429
|
-
@keyframes slideOutLeft {
|
|
2430
|
-
from {
|
|
2431
|
-
transform: translate3d(0, 0, 0);
|
|
2432
|
-
}
|
|
2433
|
-
to {
|
|
2434
|
-
visibility: hidden;
|
|
2435
|
-
transform: translate3d(-100%, 0, 0);
|
|
2436
|
-
}
|
|
2437
|
-
}
|
|
2438
|
-
|
|
2439
|
-
@keyframes slideOutRight {
|
|
2440
|
-
from {
|
|
2441
|
-
transform: translate3d(0, 0, 0);
|
|
2442
|
-
}
|
|
2443
|
-
to {
|
|
2444
|
-
visibility: hidden;
|
|
2445
|
-
transform: translate3d(100%, 0, 0);
|
|
2446
|
-
}
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
@keyframes slideOutUp {
|
|
2450
|
-
from {
|
|
2451
|
-
transform: translate3d(0, 0, 0);
|
|
2452
|
-
}
|
|
2453
|
-
to {
|
|
2454
|
-
visibility: hidden;
|
|
2455
|
-
transform: translate3d(0, -100%, 0);
|
|
2456
|
-
}
|
|
2457
|
-
}
|
|
2458
|
-
|
|
2459
|
-
@keyframes rotate {
|
|
2460
|
-
from {
|
|
2461
|
-
transform: rotate(0deg);
|
|
2462
|
-
}
|
|
2463
|
-
to {
|
|
2464
|
-
transform: rotate(360deg);
|
|
2465
|
-
}
|
|
2466
|
-
}
|
|
2467
|
-
|
|
2468
|
-
@keyframes pulse {
|
|
2469
|
-
from {
|
|
2470
|
-
transform: scale3d(1, 1, 1);
|
|
2471
|
-
}
|
|
2472
|
-
50% {
|
|
2473
|
-
transform: scale3d(1.03, 1.03, 1.03);
|
|
2474
|
-
}
|
|
2475
|
-
to {
|
|
2476
|
-
transform: scale3d(1, 1, 1);
|
|
2477
|
-
}
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2480
|
-
@keyframes shake {
|
|
2481
|
-
15% {
|
|
2482
|
-
transform: translateX(0.5rem);
|
|
2483
|
-
}
|
|
2484
|
-
30% {
|
|
2485
|
-
transform: translateX(-0.4rem);
|
|
2486
|
-
}
|
|
2487
|
-
45% {
|
|
2488
|
-
transform: translateX(0.3rem);
|
|
2489
|
-
}
|
|
2490
|
-
60% {
|
|
2491
|
-
transform: translateX(-0.2rem);
|
|
2492
|
-
}
|
|
2493
|
-
75% {
|
|
2494
|
-
transform: translateX(0.1rem);
|
|
2495
|
-
}
|
|
2496
|
-
90% {
|
|
2497
|
-
transform: translateX(0);
|
|
2498
|
-
}
|
|
2499
|
-
90% {
|
|
2500
|
-
transform: translateX(0);
|
|
2501
|
-
}
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
|
-
.fadeIn {
|
|
2505
|
-
animation: fadeIn 250ms;
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
|
-
.fadeOut {
|
|
2509
|
-
animation: fadeOut 250ms;
|
|
2510
|
-
}
|
|
2511
|
-
|
|
2512
|
-
.zoomIn {
|
|
2513
|
-
animation: zoomIn 200ms;
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
|
-
.zoomOut {
|
|
2517
|
-
animation: zoomOut 500ms;
|
|
2518
|
-
}
|
|
2519
|
-
|
|
2520
|
-
.slideInRight {
|
|
2521
|
-
animation: slideInRight 500ms;
|
|
2522
|
-
}
|
|
2523
|
-
|
|
2524
|
-
.slideInLeft {
|
|
2525
|
-
animation: slideInLeft 500ms;
|
|
2526
|
-
}
|
|
2527
|
-
|
|
2528
|
-
.slideInDown {
|
|
2529
|
-
animation: slideInDown 500ms;
|
|
2530
|
-
}
|
|
2531
|
-
|
|
2532
|
-
.slideOutLeft {
|
|
2533
|
-
animation: slideOutLeft 500ms;
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
.slideOutRight {
|
|
2537
|
-
animation: slideOutRight 500ms;
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
|
-
.slideOutUp {
|
|
2541
|
-
animation: slideOutUp 500ms;
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
.slideUp {
|
|
2545
|
-
overflow: hidden;
|
|
2546
|
-
animation: slideUp 200ms ease-in-out;
|
|
2547
|
-
}
|
|
2548
|
-
|
|
2549
|
-
.slideDown {
|
|
2550
|
-
overflow: hidden;
|
|
2551
|
-
animation: slideDown 80ms ease-in-out;
|
|
2552
|
-
}
|
|
2553
|
-
|
|
2554
|
-
.flipIn {
|
|
2555
|
-
animation: flipIn 250ms cubic-bezier(0.5, -0.5, 0.5, 1.5);
|
|
2556
|
-
}
|
|
2557
|
-
|
|
2558
|
-
.flipOut {
|
|
2559
|
-
animation: flipOut 500ms cubic-bezier(0.5, -0.5, 0.5, 1.5);
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
.rotate {
|
|
2563
|
-
animation: rotate 500ms;
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
|
-
.pulse {
|
|
2567
|
-
animation: pulse 250ms 2;
|
|
2568
|
-
}
|
|
2569
|
-
|
|
2570
|
-
.shake {
|
|
2571
|
-
animation: shake 500ms;
|
|
2572
|
-
}
|
|
2573
|
-
|
|
2574
|
-
.dropdown {
|
|
2575
|
-
position: absolute;
|
|
2576
|
-
z-index: 100;
|
|
2577
|
-
top: 0;
|
|
2578
|
-
right: 0;
|
|
2579
|
-
width: 280px;
|
|
2580
|
-
color: #000;
|
|
2581
|
-
font-size: 15px;
|
|
2582
|
-
background: #fff;
|
|
2583
|
-
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
|
|
2584
|
-
border-radius: 3px;
|
|
2585
|
-
max-height: 300px;
|
|
2586
|
-
margin: 0;
|
|
2587
|
-
padding: 0;
|
|
2588
|
-
overflow: hidden;
|
|
2589
|
-
}
|
|
2590
|
-
.dropdown.dropdown-mobile {
|
|
2591
|
-
position: fixed;
|
|
2592
|
-
top: 0;
|
|
2593
|
-
left: 0;
|
|
2594
|
-
right: 0;
|
|
2595
|
-
bottom: 0;
|
|
2596
|
-
width: 100%;
|
|
2597
|
-
max-height: none;
|
|
2598
|
-
border: none;
|
|
2599
|
-
}
|
|
2600
|
-
.dropdown .close {
|
|
2601
|
-
margin: 20px auto;
|
|
2602
|
-
}
|
|
2603
|
-
.dropdown.open {
|
|
2604
|
-
overflow: auto;
|
|
2605
|
-
}
|
|
2606
|
-
.dropdown ul {
|
|
2607
|
-
list-style: none;
|
|
2608
|
-
margin: 0;
|
|
2609
|
-
}
|
|
2610
|
-
.dropdown ul li {
|
|
2611
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
|
|
2612
|
-
}
|
|
2613
|
-
.dropdown ul li:last-child {
|
|
2614
|
-
border-bottom: none;
|
|
2615
|
-
}
|
|
2616
|
-
.dropdown ul a {
|
|
2617
|
-
display: block;
|
|
2618
|
-
padding: 12px;
|
|
2619
|
-
text-decoration: none;
|
|
2620
|
-
color: #000;
|
|
2621
|
-
}
|
|
2622
|
-
.dropdown ul a:hover {
|
|
2623
|
-
background: rgba(0, 0, 0, 0.05);
|
|
2624
|
-
}
|
|
2625
|
-
|
|
2626
|
-
.message {
|
|
2627
|
-
font-family: Consolas, Monaco, 'Courier New', monospace;
|
|
2628
|
-
font-size: 14px;
|
|
2629
|
-
line-height: 20px;
|
|
2630
|
-
background: #e0e1e1;
|
|
2631
|
-
color: #313439;
|
|
2632
|
-
padding: 1rem;
|
|
2633
|
-
padding-right: 2.5em;
|
|
2634
|
-
padding-bottom: 0.75rem;
|
|
2635
|
-
margin-bottom: 24px;
|
|
2636
|
-
position: relative;
|
|
2637
|
-
}
|
|
2638
|
-
.message a {
|
|
2639
|
-
color: inherit;
|
|
2640
|
-
}
|
|
2641
|
-
.message h2,
|
|
2642
|
-
.message h3,
|
|
2643
|
-
.message h4,
|
|
2644
|
-
.message h5,
|
|
2645
|
-
.message h6 {
|
|
2646
|
-
margin-bottom: 0;
|
|
2647
|
-
}
|
|
2648
|
-
.message .close {
|
|
2649
|
-
position: absolute;
|
|
2650
|
-
right: 1rem;
|
|
2651
|
-
top: 1.1rem;
|
|
2652
|
-
}
|
|
2653
|
-
|
|
2654
|
-
.message.error {
|
|
2655
|
-
background: #f03c69;
|
|
2656
|
-
color: #fff;
|
|
2657
|
-
}
|
|
2658
|
-
|
|
2659
|
-
.message.success {
|
|
2660
|
-
background: #35beb1;
|
|
2661
|
-
color: #fff;
|
|
2662
|
-
}
|
|
2663
|
-
|
|
2664
|
-
.message.warning {
|
|
2665
|
-
background: #f7ba45;
|
|
2666
|
-
}
|
|
2667
|
-
|
|
2668
|
-
.message.focus {
|
|
2669
|
-
background: #1c86f2;
|
|
2670
|
-
color: #fff;
|
|
2671
|
-
}
|
|
2672
|
-
|
|
2673
|
-
.message.black {
|
|
2674
|
-
background: #0d0d0e;
|
|
2675
|
-
color: #fff;
|
|
2676
|
-
}
|
|
2677
|
-
|
|
2678
|
-
.message.inverted {
|
|
2679
|
-
background: #fff;
|
|
2680
|
-
}
|
|
2681
|
-
|
|
2682
|
-
.modal-box {
|
|
2683
|
-
position: fixed;
|
|
2684
|
-
top: 0;
|
|
2685
|
-
left: 0;
|
|
2686
|
-
bottom: 0;
|
|
2687
|
-
right: 0;
|
|
2688
|
-
overflow-x: hidden;
|
|
2689
|
-
overflow-y: auto;
|
|
2690
|
-
z-index: 200;
|
|
2691
|
-
}
|
|
2692
|
-
|
|
2693
|
-
.modal {
|
|
2694
|
-
position: relative;
|
|
2695
|
-
margin: auto;
|
|
2696
|
-
margin-top: 16px;
|
|
2697
|
-
padding: 0;
|
|
2698
|
-
background: #fff;
|
|
2699
|
-
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
|
|
2700
|
-
border-radius: 8px;
|
|
2701
|
-
color: #000;
|
|
2702
|
-
}
|
|
2703
|
-
@media (max-width: 768px) {
|
|
2704
|
-
.modal input,
|
|
2705
|
-
.modal textarea {
|
|
2706
|
-
font-size: 16px;
|
|
2707
|
-
}
|
|
2708
|
-
}
|
|
2709
|
-
.modal .close {
|
|
2710
|
-
position: absolute;
|
|
2711
|
-
top: 18px;
|
|
2712
|
-
right: 16px;
|
|
2713
|
-
opacity: 0.3;
|
|
2714
|
-
}
|
|
2715
|
-
.modal .close:hover {
|
|
2716
|
-
opacity: 1;
|
|
2717
|
-
}
|
|
2718
|
-
|
|
2719
|
-
.modal-header {
|
|
2720
|
-
padding: 24px 32px;
|
|
2721
|
-
font-size: 18px;
|
|
2722
|
-
font-weight: bold;
|
|
2723
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
2724
|
-
}
|
|
2725
|
-
.modal-header:empty {
|
|
2726
|
-
display: none;
|
|
2727
|
-
}
|
|
2728
|
-
|
|
2729
|
-
.modal-body {
|
|
2730
|
-
padding: 36px 56px;
|
|
2731
|
-
}
|
|
2732
|
-
|
|
2733
|
-
@media (max-width: 768px) {
|
|
2734
|
-
.modal-header,
|
|
2735
|
-
.modal-body {
|
|
2736
|
-
padding: 24px;
|
|
2737
|
-
}
|
|
2738
|
-
}
|
|
2739
|
-
|
|
2740
|
-
.offcanvas {
|
|
2741
|
-
background: #fff;
|
|
2742
|
-
position: fixed;
|
|
2743
|
-
padding: 24px;
|
|
2744
|
-
height: 100%;
|
|
2745
|
-
top: 0;
|
|
2746
|
-
left: 0;
|
|
2747
|
-
z-index: 300;
|
|
2748
|
-
overflow-y: scroll;
|
|
2749
|
-
}
|
|
2750
|
-
|
|
2751
|
-
.offcanvas .close {
|
|
2752
|
-
position: absolute;
|
|
2753
|
-
top: 8px;
|
|
2754
|
-
right: 8px;
|
|
2755
|
-
}
|
|
2756
|
-
|
|
2757
|
-
.offcanvas-left {
|
|
2758
|
-
border-right: 1px solid rgba(0, 0, 0, 0.1);
|
|
2759
|
-
}
|
|
2760
|
-
|
|
2761
|
-
.offcanvas-right {
|
|
2762
|
-
left: auto;
|
|
2763
|
-
right: 0;
|
|
2764
|
-
border-left: 1px solid rgba(0, 0, 0, 0.1);
|
|
2765
|
-
}
|
|
2766
|
-
|
|
2767
|
-
.offcanvas-push-body {
|
|
2768
|
-
position: relative;
|
|
2769
|
-
}
|
|
2770
|
-
|
|
2771
|
-
.tabs {
|
|
2772
|
-
margin-bottom: 24px;
|
|
2773
|
-
font-size: 14px;
|
|
2774
|
-
}
|
|
2775
|
-
.tabs li em,
|
|
2776
|
-
.tabs li.active a {
|
|
2777
|
-
color: #313439;
|
|
2778
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
2779
|
-
cursor: default;
|
|
2780
|
-
text-decoration: none;
|
|
2781
|
-
background: none;
|
|
2782
|
-
}
|
|
2783
|
-
.tabs em,
|
|
2784
|
-
.tabs a {
|
|
2785
|
-
position: relative;
|
|
2786
|
-
top: 1px;
|
|
2787
|
-
font-style: normal;
|
|
2788
|
-
display: block;
|
|
2789
|
-
padding: 0.5rem 1rem;
|
|
2790
|
-
border: 1px solid transparent;
|
|
2791
|
-
color: rgba(0, 0, 0, 0.5);
|
|
2792
|
-
text-decoration: none;
|
|
2793
|
-
}
|
|
2794
|
-
.tabs a:hover {
|
|
2795
|
-
-moz-transition: all linear 0.2s;
|
|
2796
|
-
transition: all linear 0.2s;
|
|
2797
|
-
color: #313439;
|
|
2798
|
-
text-decoration: underline;
|
|
2799
|
-
background-color: #e0e1e1;
|
|
2800
|
-
}
|
|
2801
|
-
|
|
2802
|
-
@media (min-width: 768px) {
|
|
2803
|
-
.tabs ul {
|
|
2804
|
-
display: flex;
|
|
2805
|
-
margin-top: -1px;
|
|
2806
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
2807
|
-
}
|
|
2808
|
-
.tabs li em,
|
|
2809
|
-
.tabs li.active a {
|
|
2810
|
-
border-bottom: 1px solid #fff;
|
|
2811
|
-
}
|
|
2812
|
-
}
|
|
2813
|
-
|
|
2814
|
-
footer {
|
|
2815
|
-
height: 120px;
|
|
2816
|
-
}
|