1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | ion-action-sheet {
|
11 | left: 0;
|
12 | top: 0;
|
13 | position: absolute;
|
14 | z-index: 1000;
|
15 | display: block;
|
16 | width: 100%;
|
17 | height: 100%; }
|
18 |
|
19 | .action-sheet-wrapper {
|
20 | left: 0;
|
21 | right: 0;
|
22 | top: 0;
|
23 | bottom: 0;
|
24 | margin: auto;
|
25 | -webkit-transform: translate3d(0, 100%, 0);
|
26 | transform: translate3d(0, 100%, 0);
|
27 | position: absolute;
|
28 | z-index: 10;
|
29 | display: block;
|
30 | width: 100%;
|
31 | max-width: 500px;
|
32 | pointer-events: none; }
|
33 |
|
34 | .action-sheet-button {
|
35 | width: 100%; }
|
36 |
|
37 | .action-sheet-container {
|
38 | display: -webkit-flex;
|
39 | display: -ms-flexbox;
|
40 | display: flex;
|
41 | -webkit-flex-flow: column;
|
42 | -ms-flex-flow: column;
|
43 | flex-flow: column;
|
44 | -webkit-justify-content: flex-end;
|
45 | -ms-flex-pack: end;
|
46 | justify-content: flex-end;
|
47 | height: 100%;
|
48 | max-height: 100%; }
|
49 |
|
50 | .action-sheet-group {
|
51 | overflow: scroll;
|
52 | -webkit-flex-shrink: 2;
|
53 | -ms-flex-negative: 2;
|
54 | flex-shrink: 2;
|
55 | pointer-events: all; }
|
56 |
|
57 | .action-sheet-group-cancel {
|
58 | overflow: hidden;
|
59 | -webkit-flex-shrink: 0;
|
60 | -ms-flex-negative: 0;
|
61 | flex-shrink: 0; }
|
62 |
|
63 | .action-sheet-ios {
|
64 | text-align: center; }
|
65 |
|
66 | .action-sheet-ios .action-sheet-wrapper {
|
67 | margin: constant(safe-area-inset-top) auto constant(safe-area-inset-bottom);
|
68 | margin: env(safe-area-inset-top) auto env(safe-area-inset-bottom); }
|
69 |
|
70 | .action-sheet-ios .action-sheet-container {
|
71 | padding: 0 10px; }
|
72 |
|
73 | .action-sheet-ios .action-sheet-group {
|
74 | border-radius: 13px;
|
75 | margin-bottom: 8px;
|
76 | background: #f9f9f9; }
|
77 |
|
78 | .action-sheet-ios .action-sheet-group:first-child {
|
79 | margin-top: 10px; }
|
80 |
|
81 | .action-sheet-ios .action-sheet-group:last-child {
|
82 | margin-bottom: 10px; }
|
83 |
|
84 | .action-sheet-ios .action-sheet-title {
|
85 | padding: 1.5rem;
|
86 | text-align: center;
|
87 | border-radius: 0;
|
88 | border-bottom: 0.55px solid #d6d6da;
|
89 | font-size: 1.3rem;
|
90 | font-weight: 400;
|
91 | color: #8f8f8f; }
|
92 |
|
93 | .action-sheet-ios .action-sheet-button {
|
94 | margin: 0;
|
95 | padding: 18px;
|
96 | min-height: 5.6rem;
|
97 | border-bottom: 0.55px solid #d6d6da;
|
98 | font-size: 2rem;
|
99 | color: #007aff;
|
100 | background: transparent; }
|
101 |
|
102 | .action-sheet-ios .action-sheet-button:last-child {
|
103 | border-bottom-color: transparent; }
|
104 |
|
105 | .action-sheet-ios .action-sheet-button.activated {
|
106 | margin-top: -0.55px;
|
107 | border-top: 0.55px solid #ebebeb;
|
108 | border-bottom-color: #ebebeb;
|
109 | background: #ebebeb; }
|
110 |
|
111 | .action-sheet-ios .action-sheet-selected {
|
112 | font-weight: bold;
|
113 | background: #fff; }
|
114 |
|
115 | .action-sheet-ios .action-sheet-destructive {
|
116 | color: #f53d3d; }
|
117 |
|
118 | .action-sheet-ios .action-sheet-cancel {
|
119 | font-weight: 600;
|
120 | background: #fff; }
|
121 |
|
122 | .action-sheet-md .action-sheet-title {
|
123 | text-align: left;
|
124 | text-align: start;
|
125 | font-size: 1.6rem;
|
126 | color: #757575;
|
127 | padding: 11px 16px 17px; }
|
128 |
|
129 | .action-sheet-md .action-sheet-button {
|
130 | text-align: left;
|
131 | text-align: start;
|
132 | position: relative;
|
133 | overflow: hidden;
|
134 | min-height: 4.8rem;
|
135 | font-size: 1.6rem;
|
136 | color: #222;
|
137 | background: transparent;
|
138 | padding: 0 16px; }
|
139 |
|
140 | .action-sheet-md .action-sheet-button.activated {
|
141 | background: #f1f1f1; }
|
142 |
|
143 | .action-sheet-md .action-sheet-icon {
|
144 | padding: 0;
|
145 | text-align: center;
|
146 | width: 2.3rem;
|
147 | font-size: 2.4rem;
|
148 | vertical-align: middle;
|
149 | margin: 0 32px 0 0; }
|
150 |
|
151 | .action-sheet-md .action-sheet-group {
|
152 | background: #fafafa; }
|
153 |
|
154 | .action-sheet-md .action-sheet-group:first-child {
|
155 | padding-top: 0.8rem; }
|
156 |
|
157 | .action-sheet-md .action-sheet-group:last-child {
|
158 | padding-bottom: 0.8rem; }
|
159 |
|
160 | .action-sheet-md .action-sheet-group .button-inner {
|
161 | -webkit-justify-content: flex-start;
|
162 | -ms-flex-pack: start;
|
163 | justify-content: flex-start; }
|
164 |
|
165 | .action-sheet-md .action-sheet-selected {
|
166 | font-weight: bold; }
|
167 |
|
168 | .action-sheet-wp .action-sheet-title {
|
169 | text-align: left;
|
170 | text-align: start;
|
171 | font-size: 2rem;
|
172 | color: #4d4d4d;
|
173 | padding: 11px 16px 17px; }
|
174 |
|
175 | .action-sheet-wp .action-sheet-button {
|
176 | text-align: left;
|
177 | text-align: start;
|
178 | min-height: 4.8rem;
|
179 | font-size: 1.5rem;
|
180 | color: #4d4d4d;
|
181 | background: transparent;
|
182 | padding: 0 16px; }
|
183 |
|
184 | .action-sheet-wp .action-sheet-button.activated {
|
185 | background: #aaa; }
|
186 |
|
187 | .action-sheet-wp .action-sheet-icon {
|
188 | padding: 0;
|
189 | text-align: center;
|
190 | width: 2.3rem;
|
191 | font-size: 2.4rem;
|
192 | vertical-align: middle;
|
193 | margin: 0 20px 0 0; }
|
194 |
|
195 | .action-sheet-wp .action-sheet-group {
|
196 | background: #fff; }
|
197 |
|
198 | .action-sheet-wp .action-sheet-group:first-child {
|
199 | padding-top: 0.8rem;
|
200 | box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); }
|
201 |
|
202 | .action-sheet-wp .action-sheet-group:last-child {
|
203 | padding-bottom: 0.8rem; }
|
204 |
|
205 | .action-sheet-wp .action-sheet-group .button-inner {
|
206 | -webkit-justify-content: flex-start;
|
207 | -ms-flex-pack: start;
|
208 | justify-content: flex-start; }
|
209 |
|
210 | .action-sheet-wp .action-sheet-selected {
|
211 | font-weight: bold; }
|
212 |
|
213 | .action-sheet-wp .action-sheet-cancel {
|
214 | background: transparent; }
|
215 |
|
216 | ion-alert {
|
217 | left: 0;
|
218 | right: 0;
|
219 | top: 0;
|
220 | bottom: 0;
|
221 | position: absolute;
|
222 | z-index: 1000;
|
223 | display: -webkit-flex;
|
224 | display: -ms-flexbox;
|
225 | display: flex;
|
226 | -webkit-align-items: center;
|
227 | -ms-flex-align: center;
|
228 | align-items: center;
|
229 | -webkit-justify-content: center;
|
230 | -ms-flex-pack: center;
|
231 | justify-content: center;
|
232 | contain: strict; }
|
233 |
|
234 | ion-alert.alert-top {
|
235 | padding-top: 50px;
|
236 | -webkit-align-items: flex-start;
|
237 | -ms-flex-align: start;
|
238 | align-items: flex-start; }
|
239 |
|
240 | ion-alert input {
|
241 | width: 100%; }
|
242 |
|
243 | .alert-wrapper {
|
244 | z-index: 10;
|
245 | display: -webkit-flex;
|
246 | display: -ms-flexbox;
|
247 | display: flex;
|
248 | -webkit-flex-direction: column;
|
249 | -ms-flex-direction: column;
|
250 | flex-direction: column;
|
251 | min-width: 250px;
|
252 | max-height: 90%;
|
253 | opacity: 0;
|
254 | contain: content; }
|
255 |
|
256 | .alert-title {
|
257 | margin: 0;
|
258 | padding: 0; }
|
259 |
|
260 | .alert-sub-title {
|
261 | margin: 5px 0 0;
|
262 | padding: 0;
|
263 | font-weight: normal; }
|
264 |
|
265 | .alert-message {
|
266 | overflow-y: scroll;
|
267 | -webkit-overflow-scrolling: touch; }
|
268 |
|
269 | .alert-input {
|
270 | padding: 10px 0;
|
271 | border: 0;
|
272 | background: inherit; }
|
273 | .alert-input::-moz-placeholder {
|
274 | color: #999; }
|
275 | .alert-input:-ms-input-placeholder {
|
276 | color: #999; }
|
277 | .alert-input::-webkit-input-placeholder {
|
278 | text-indent: 0;
|
279 | color: #999; }
|
280 |
|
281 | .alert-button-group {
|
282 | display: -webkit-flex;
|
283 | display: -ms-flexbox;
|
284 | display: flex;
|
285 | -webkit-flex-direction: row;
|
286 | -ms-flex-direction: row;
|
287 | flex-direction: row; }
|
288 |
|
289 | .alert-button-group-vertical {
|
290 | -webkit-flex-direction: column;
|
291 | -ms-flex-direction: column;
|
292 | flex-direction: column;
|
293 | -webkit-flex-wrap: nowrap;
|
294 | -ms-flex-wrap: nowrap;
|
295 | flex-wrap: nowrap; }
|
296 |
|
297 | .alert-button {
|
298 | margin: 0;
|
299 | z-index: 0;
|
300 | display: block;
|
301 | font-size: 14px;
|
302 | line-height: 20px; }
|
303 |
|
304 | .alert-tappable {
|
305 | text-align: left;
|
306 | text-align: start;
|
307 | -moz-appearance: none;
|
308 | -ms-appearance: none;
|
309 | -webkit-appearance: none;
|
310 | appearance: none;
|
311 | margin: 0;
|
312 | padding: 0;
|
313 | width: 100%;
|
314 | font-size: inherit;
|
315 | line-height: initial;
|
316 | background: transparent; }
|
317 |
|
318 | .alert-ios .alert-wrapper {
|
319 | border-radius: 13px;
|
320 | overflow: hidden;
|
321 | max-width: 270px;
|
322 | background-color: #f8f8f8;
|
323 | box-shadow: none; }
|
324 |
|
325 | .alert-ios .alert-head {
|
326 | text-align: center;
|
327 | padding: 12px 16px 7px; }
|
328 |
|
329 | .alert-ios .alert-title {
|
330 | margin-top: 8px;
|
331 | font-size: 17px;
|
332 | font-weight: 600; }
|
333 |
|
334 | .alert-ios .alert-sub-title {
|
335 | font-size: 14px;
|
336 | color: #666; }
|
337 |
|
338 | .alert-ios .alert-message,
|
339 | .alert-ios .alert-input-group {
|
340 | text-align: center;
|
341 | font-size: 13px;
|
342 | color: inherit;
|
343 | padding: 0 16px 21px; }
|
344 |
|
345 | .alert-ios .alert-message {
|
346 | max-height: 240px; }
|
347 |
|
348 | .alert-ios .alert-message:empty {
|
349 | padding: 0 0 12px; }
|
350 |
|
351 | .alert-ios .alert-input {
|
352 | -moz-appearance: none;
|
353 | -ms-appearance: none;
|
354 | -webkit-appearance: none;
|
355 | appearance: none;
|
356 | margin-top: 10px;
|
357 | border-radius: 4px;
|
358 | border: 0.55px solid #ccc;
|
359 | background-color: #fff;
|
360 | padding: 6px; }
|
361 |
|
362 | .alert-ios .alert-radio-group,
|
363 | .alert-ios .alert-checkbox-group {
|
364 | overflow: scroll;
|
365 | max-height: 240px;
|
366 | border-top: 0.55px solid #dbdbdf;
|
367 | -webkit-overflow-scrolling: touch; }
|
368 |
|
369 | .alert-ios .alert-tappable {
|
370 | display: -webkit-flex;
|
371 | display: -ms-flexbox;
|
372 | display: flex;
|
373 | min-height: 44px; }
|
374 |
|
375 | .alert-ios .alert-radio-label {
|
376 | overflow: hidden;
|
377 | -webkit-flex: 1;
|
378 | -ms-flex: 1;
|
379 | flex: 1;
|
380 | -webkit-order: 0;
|
381 | -ms-flex-order: 0;
|
382 | order: 0;
|
383 | text-overflow: ellipsis;
|
384 | white-space: nowrap;
|
385 | color: initial;
|
386 | padding: 13px; }
|
387 |
|
388 | .alert-ios [aria-checked=true] .alert-radio-label {
|
389 | color: #007aff; }
|
390 |
|
391 | .alert-ios .alert-radio-icon {
|
392 | position: relative;
|
393 | -webkit-order: 1;
|
394 | -ms-flex-order: 1;
|
395 | order: 1;
|
396 | min-width: 30px; }
|
397 |
|
398 | .alert-ios [aria-checked=true] .alert-radio-inner {
|
399 | left: 7px;
|
400 | top: -7px;
|
401 | position: absolute;
|
402 | width: 6px;
|
403 | height: 12px;
|
404 | border-width: 2px;
|
405 | border-top-width: 0;
|
406 | border-left-width: 0;
|
407 | border-style: solid;
|
408 | border-color: #007aff;
|
409 | -webkit-transform: rotate(45deg);
|
410 | transform: rotate(45deg); }
|
411 |
|
412 | .alert-ios .alert-checkbox-label {
|
413 | overflow: hidden;
|
414 | -webkit-flex: 1;
|
415 | -ms-flex: 1;
|
416 | flex: 1;
|
417 | text-overflow: ellipsis;
|
418 | white-space: nowrap;
|
419 | color: initial;
|
420 | padding: 13px; }
|
421 |
|
422 | .alert-ios [aria-checked=true] .alert-checkbox-label {
|
423 | color: initial; }
|
424 |
|
425 | .alert-ios .alert-checkbox-icon {
|
426 | border-radius: 50%;
|
427 | position: relative;
|
428 | width: 21px;
|
429 | height: 21px;
|
430 | border-width: 0.55px;
|
431 | border-style: solid;
|
432 | border-color: #000;
|
433 | background-color: #242424;
|
434 | margin: 10px 6px 10px 16px; }
|
435 |
|
436 | .alert-ios [aria-checked=true] .alert-checkbox-icon {
|
437 | border-color: #007aff;
|
438 | background-color: #007aff; }
|
439 |
|
440 | .alert-ios [aria-checked=true] .alert-checkbox-inner {
|
441 | left: 7px;
|
442 | top: 4px;
|
443 | position: absolute;
|
444 | width: 4px;
|
445 | height: 9px;
|
446 | border-width: 0.55px;
|
447 | border-top-width: 0;
|
448 | border-left-width: 0;
|
449 | border-style: solid;
|
450 | border-color: #191919;
|
451 | -webkit-transform: rotate(45deg);
|
452 | transform: rotate(45deg); }
|
453 |
|
454 | .alert-ios .alert-button-group {
|
455 | margin-right: -0.55px;
|
456 | -webkit-flex-wrap: wrap;
|
457 | -ms-flex-wrap: wrap;
|
458 | flex-wrap: wrap; }
|
459 |
|
460 | .alert-ios .alert-button {
|
461 | margin: 0;
|
462 | border-radius: 0;
|
463 | overflow: hidden;
|
464 | -webkit-flex: 1 1 auto;
|
465 | -ms-flex: 1 1 auto;
|
466 | flex: 1 1 auto;
|
467 | min-width: 50%;
|
468 | height: 44px;
|
469 | border-top: 0.55px solid #dbdbdf;
|
470 | border-right: 0.55px solid #dbdbdf;
|
471 | font-size: 17px;
|
472 | color: #007aff;
|
473 | background-color: transparent; }
|
474 |
|
475 | .alert-ios .alert-button:last-child {
|
476 | border-right: 0;
|
477 | font-weight: bold; }
|
478 |
|
479 | .alert-ios .alert-button.activated {
|
480 | background-color: #e9e9e9; }
|
481 |
|
482 | .alert-md .alert-wrapper {
|
483 | border-radius: 2px;
|
484 | max-width: 280px;
|
485 | background-color: #fafafa;
|
486 | box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4); }
|
487 |
|
488 | .alert-md .alert-head {
|
489 | text-align: left;
|
490 | text-align: start;
|
491 | padding: 24px 24px 20px; }
|
492 |
|
493 | .alert-md .alert-title {
|
494 | font-size: 22px; }
|
495 |
|
496 | .alert-md .alert-sub-title {
|
497 | font-size: 16px; }
|
498 |
|
499 | .alert-md .alert-message,
|
500 | .alert-md .alert-input-group {
|
501 | color: rgba(0, 0, 0, 0.5);
|
502 | padding: 0 24px 24px; }
|
503 |
|
504 | .alert-md .alert-message {
|
505 | max-height: 240px;
|
506 | font-size: 15px; }
|
507 |
|
508 | .alert-md .alert-message:empty {
|
509 | padding: 0; }
|
510 |
|
511 | .alert-md .alert-input {
|
512 | margin: 5px 0;
|
513 | border-bottom: 1px solid #dedede;
|
514 | color: #000; }
|
515 |
|
516 | .alert-md .alert-input:focus {
|
517 | margin-bottom: 4px;
|
518 | border-bottom: 2px solid #007aff; }
|
519 |
|
520 | .alert-md .alert-radio-group,
|
521 | .alert-md .alert-checkbox-group {
|
522 | position: relative;
|
523 | overflow: auto;
|
524 | max-height: 240px;
|
525 | border-top: 1px solid #dedede;
|
526 | border-bottom: 1px solid #dedede; }
|
527 |
|
528 | .alert-md .alert-tappable {
|
529 | position: relative;
|
530 | display: -webkit-flex;
|
531 | display: -ms-flexbox;
|
532 | display: flex;
|
533 | overflow: hidden;
|
534 | min-height: 4.4rem; }
|
535 |
|
536 | .alert-md .alert-radio-label {
|
537 | overflow: hidden;
|
538 | -webkit-flex: 1;
|
539 | -ms-flex: 1;
|
540 | flex: 1;
|
541 | text-overflow: ellipsis;
|
542 | white-space: nowrap;
|
543 | color: initial;
|
544 | padding: 13px 26px; }
|
545 |
|
546 | .alert-md .alert-radio-icon {
|
547 | left: 13px;
|
548 | top: 0;
|
549 | border-radius: 50%;
|
550 | position: relative;
|
551 | display: block;
|
552 | width: 16px;
|
553 | height: 16px;
|
554 | border-width: 2px;
|
555 | border-style: solid;
|
556 | border-color: #787878; }
|
557 |
|
558 | .alert-md .alert-radio-inner {
|
559 | left: 2px;
|
560 | top: 2px;
|
561 | border-radius: 50%;
|
562 | position: absolute;
|
563 | width: 8px;
|
564 | height: 8px;
|
565 | background-color: #007aff;
|
566 | -webkit-transform: scale3d(0, 0, 0);
|
567 | transform: scale3d(0, 0, 0);
|
568 | transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
569 | transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
570 | transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1); }
|
571 |
|
572 | .alert-md [aria-checked=true] .alert-radio-label {
|
573 | color: #007aff; }
|
574 |
|
575 | .alert-md [aria-checked=true] .alert-radio-icon {
|
576 | border-color: #007aff; }
|
577 |
|
578 | .alert-md [aria-checked=true] .alert-radio-inner {
|
579 | -webkit-transform: scale3d(1, 1, 1);
|
580 | transform: scale3d(1, 1, 1); }
|
581 |
|
582 | .alert-md .alert-checkbox-label {
|
583 | overflow: hidden;
|
584 | -webkit-flex: 1;
|
585 | -ms-flex: 1;
|
586 | flex: 1;
|
587 | text-overflow: ellipsis;
|
588 | white-space: nowrap;
|
589 | color: initial;
|
590 | padding: 13px 26px; }
|
591 |
|
592 | .alert-md [aria-checked=true] .alert-checkbox-label {
|
593 | color: initial; }
|
594 |
|
595 | .alert-md .alert-checkbox-icon {
|
596 | left: 13px;
|
597 | top: 0;
|
598 | border-radius: 2px;
|
599 | position: relative;
|
600 | width: 16px;
|
601 | height: 16px;
|
602 | border-width: 2px;
|
603 | border-style: solid;
|
604 | border-color: #787878; }
|
605 |
|
606 | .alert-md [aria-checked=true] .alert-checkbox-icon {
|
607 | border-color: #007aff;
|
608 | background-color: #007aff; }
|
609 |
|
610 | .alert-md [aria-checked=true] .alert-checkbox-inner {
|
611 | left: 3px;
|
612 | top: 0;
|
613 | position: absolute;
|
614 | width: 6px;
|
615 | height: 10px;
|
616 | border-width: 2px;
|
617 | border-top-width: 0;
|
618 | border-left-width: 0;
|
619 | border-style: solid;
|
620 | border-color: #fff;
|
621 | -webkit-transform: rotate(45deg);
|
622 | transform: rotate(45deg); }
|
623 |
|
624 | .alert-md .alert-button-group {
|
625 | -webkit-flex-wrap: wrap-reverse;
|
626 | -ms-flex-wrap: wrap-reverse;
|
627 | flex-wrap: wrap-reverse;
|
628 | -webkit-justify-content: flex-end;
|
629 | -ms-flex-pack: end;
|
630 | justify-content: flex-end;
|
631 | padding: 8px 8px 8px 24px; }
|
632 |
|
633 | .alert-md .alert-button {
|
634 | text-align: right;
|
635 | text-align: end;
|
636 | border-radius: 2px;
|
637 | position: relative;
|
638 | overflow: hidden;
|
639 | font-weight: 500;
|
640 | text-transform: uppercase;
|
641 | color: #007aff;
|
642 | background-color: transparent;
|
643 | margin: 0 8px 0 0;
|
644 | padding: 10px; }
|
645 |
|
646 | .alert-md .alert-button.activated {
|
647 | background-color: rgba(158, 158, 158, 0.2); }
|
648 |
|
649 | .alert-md .alert-button .button-inner {
|
650 | -webkit-justify-content: flex-end;
|
651 | -ms-flex-pack: end;
|
652 | justify-content: flex-end; }
|
653 |
|
654 | .alert-wp ion-backdrop {
|
655 | background: #fff; }
|
656 |
|
657 | .alert-wp .alert-wrapper {
|
658 | border-radius: 0;
|
659 | width: 100%;
|
660 | max-width: 520px;
|
661 | border: 1px solid #007aff;
|
662 | background: #e6e6e6; }
|
663 |
|
664 | .alert-wp .alert-head {
|
665 | text-align: left;
|
666 | text-align: start;
|
667 | padding: 20px 22px 5px; }
|
668 |
|
669 | .alert-wp .alert-title {
|
670 | font-size: 20px;
|
671 | font-weight: 400; }
|
672 |
|
673 | .alert-wp .alert-sub-title {
|
674 | font-size: 16px; }
|
675 |
|
676 | .alert-wp .alert-message,
|
677 | .alert-wp .alert-input-group {
|
678 | color: #000;
|
679 | padding: 0 22px 8px; }
|
680 |
|
681 | .alert-wp .alert-message {
|
682 | max-height: 240px;
|
683 | font-size: 13px; }
|
684 |
|
685 | .alert-wp .alert-message:empty {
|
686 | padding: 0; }
|
687 |
|
688 | .alert-wp .alert-input {
|
689 | border: 2px solid rgba(0, 0, 0, 0.5);
|
690 | line-height: 3rem;
|
691 | color: #000;
|
692 | margin: 5px 0;
|
693 | padding: 0 8px; }
|
694 |
|
695 | .alert-wp .alert-input:focus {
|
696 | border-color: #007aff; }
|
697 |
|
698 | .alert-wp .alert-radio-group,
|
699 | .alert-wp .alert-checkbox-group {
|
700 | position: relative;
|
701 | overflow: auto;
|
702 | max-height: 240px; }
|
703 |
|
704 | .alert-wp .alert-tappable {
|
705 | position: relative;
|
706 | display: -webkit-flex;
|
707 | display: -ms-flexbox;
|
708 | display: flex;
|
709 | overflow: hidden;
|
710 | min-height: 4.4rem; }
|
711 |
|
712 | .alert-wp .alert-radio-label {
|
713 | overflow: hidden;
|
714 | -webkit-flex: 1;
|
715 | -ms-flex: 1;
|
716 | flex: 1;
|
717 | text-overflow: ellipsis;
|
718 | white-space: nowrap;
|
719 | color: initial;
|
720 | padding: 13px 26px; }
|
721 |
|
722 | .alert-wp .alert-radio-icon {
|
723 | left: 13px;
|
724 | top: 0;
|
725 | margin: 0;
|
726 | border-radius: 50%;
|
727 | position: relative;
|
728 | display: block;
|
729 | width: 16px;
|
730 | height: 16px;
|
731 | border-width: 2px;
|
732 | border-style: solid;
|
733 | border-color: rgba(0, 0, 0, 0.5); }
|
734 |
|
735 | .alert-wp .alert-radio-inner {
|
736 | left: 2px;
|
737 | top: 2px;
|
738 | border-radius: 50%;
|
739 | position: absolute;
|
740 | display: none;
|
741 | width: 8px;
|
742 | height: 8px;
|
743 | background: #007aff; }
|
744 |
|
745 | .alert-wp [aria-checked=true] .alert-radio-label {
|
746 | color: #000; }
|
747 |
|
748 | .alert-wp [aria-checked=true] .alert-radio-icon {
|
749 | border-color: rgba(0, 0, 0, 0.5); }
|
750 |
|
751 | .alert-wp [aria-checked=true] .alert-radio-inner {
|
752 | display: block; }
|
753 |
|
754 | .alert-wp .alert-checkbox-label {
|
755 | overflow: hidden;
|
756 | -webkit-flex: 1;
|
757 | -ms-flex: 1;
|
758 | flex: 1;
|
759 | text-overflow: ellipsis;
|
760 | white-space: nowrap;
|
761 | color: initial;
|
762 | padding: 13px 26px; }
|
763 |
|
764 | .alert-wp [aria-checked=true] .alert-checkbox-label {
|
765 | color: initial; }
|
766 |
|
767 | .alert-wp .alert-checkbox-icon {
|
768 | left: 13px;
|
769 | top: 0;
|
770 | border-radius: 0;
|
771 | position: relative;
|
772 | width: 16px;
|
773 | height: 16px;
|
774 | border-width: 2px;
|
775 | border-style: solid;
|
776 | border-color: rgba(0, 0, 0, 0.5);
|
777 | background: transparent; }
|
778 |
|
779 | .alert-wp [aria-checked=true] .alert-checkbox-icon {
|
780 | border-color: #007aff;
|
781 | background: #007aff; }
|
782 |
|
783 | .alert-wp [aria-checked=true] .alert-checkbox-inner {
|
784 | left: 3px;
|
785 | top: -2px;
|
786 | position: absolute;
|
787 | width: 6px;
|
788 | height: 12px;
|
789 | border-width: 1px;
|
790 | border-top-width: 0;
|
791 | border-left-width: 0;
|
792 | border-style: solid;
|
793 | border-color: #fff;
|
794 | -webkit-transform: rotate(45deg);
|
795 | transform: rotate(45deg); }
|
796 |
|
797 | .alert-wp .alert-button-group {
|
798 | -webkit-flex-wrap: wrap-reverse;
|
799 | -ms-flex-wrap: wrap-reverse;
|
800 | flex-wrap: wrap-reverse;
|
801 | -webkit-justify-content: flex-end;
|
802 | -ms-flex-pack: end;
|
803 | justify-content: flex-end;
|
804 | padding: 20px 22px; }
|
805 |
|
806 | .alert-wp .alert-button-group-vertical .alert-button {
|
807 | margin-top: 5px;
|
808 | width: 100%; }
|
809 |
|
810 | .alert-wp .alert-button-group-vertical .alert-button:first-child:not(:only-child) {
|
811 | margin-right: 0;
|
812 | margin-top: 0; }
|
813 |
|
814 | .alert-wp .alert-button {
|
815 | border-radius: 0;
|
816 | width: 49.5%;
|
817 | font-weight: 400;
|
818 | color: #000;
|
819 | background: #b8b8b8;
|
820 | padding: 5px; }
|
821 |
|
822 | .alert-wp .alert-button:first-child:not(:only-child) {
|
823 | margin-right: 1%; }
|
824 |
|
825 | .alert-wp .alert-button.activated {
|
826 | background: darkgray; }
|
827 |
|
828 | audio,
|
829 | canvas,
|
830 | progress,
|
831 | video {
|
832 | vertical-align: baseline; }
|
833 |
|
834 | audio:not([controls]) {
|
835 | display: none;
|
836 | height: 0; }
|
837 |
|
838 | b,
|
839 | strong {
|
840 | font-weight: bold; }
|
841 |
|
842 | img {
|
843 | max-width: 100%;
|
844 | border: 0; }
|
845 |
|
846 | svg:not(:root) {
|
847 | overflow: hidden; }
|
848 |
|
849 | figure {
|
850 | margin: 1em 40px; }
|
851 |
|
852 | hr {
|
853 | height: 1px;
|
854 | border-width: 0;
|
855 | box-sizing: content-box; }
|
856 |
|
857 | pre {
|
858 | overflow: auto; }
|
859 |
|
860 | code,
|
861 | kbd,
|
862 | pre,
|
863 | samp {
|
864 | font-family: monospace, monospace;
|
865 | font-size: 1em; }
|
866 |
|
867 | label,
|
868 | input,
|
869 | select,
|
870 | textarea {
|
871 | font-family: inherit;
|
872 | line-height: normal; }
|
873 |
|
874 | textarea {
|
875 | overflow: auto;
|
876 | height: auto;
|
877 | font: inherit;
|
878 | color: inherit; }
|
879 |
|
880 | textarea::-webkit-input-placeholder {
|
881 | padding-left: 2px; }
|
882 |
|
883 | textarea:-ms-input-placeholder {
|
884 | padding-left: 2px; }
|
885 |
|
886 | textarea::placeholder {
|
887 | padding-left: 2px; }
|
888 |
|
889 | form,
|
890 | input,
|
891 | optgroup,
|
892 | select {
|
893 | margin: 0;
|
894 | font: inherit;
|
895 | color: inherit; }
|
896 |
|
897 | html input[type="button"],
|
898 | input[type="reset"],
|
899 | input[type="submit"] {
|
900 | cursor: pointer;
|
901 | -webkit-appearance: button; }
|
902 |
|
903 | a,
|
904 | a div,
|
905 | a span,
|
906 | a ion-icon,
|
907 | a ion-label,
|
908 | button,
|
909 | button div,
|
910 | button span,
|
911 | button ion-icon,
|
912 | button ion-label,
|
913 | [tappable],
|
914 | [tappable] div,
|
915 | [tappable] span,
|
916 | [tappable] ion-icon,
|
917 | [tappable] ion-label,
|
918 | input,
|
919 | textarea {
|
920 | -ms-touch-action: manipulation;
|
921 | touch-action: manipulation; }
|
922 |
|
923 | a ion-label,
|
924 | button ion-label {
|
925 | pointer-events: none; }
|
926 |
|
927 | button {
|
928 | border: 0;
|
929 | font-family: inherit;
|
930 | font-style: inherit;
|
931 | font-variant: inherit;
|
932 | line-height: 1;
|
933 | text-transform: none;
|
934 | cursor: pointer;
|
935 | -webkit-appearance: button; }
|
936 |
|
937 | [tappable] {
|
938 | cursor: pointer; }
|
939 |
|
940 | a[disabled],
|
941 | button[disabled],
|
942 | html input[disabled] {
|
943 | cursor: default; }
|
944 |
|
945 | button::-moz-focus-inner,
|
946 | input::-moz-focus-inner {
|
947 | padding: 0;
|
948 | border: 0; }
|
949 |
|
950 | input[type="checkbox"],
|
951 | input[type="radio"] {
|
952 | padding: 0;
|
953 | box-sizing: border-box; }
|
954 |
|
955 | input[type="number"]::-webkit-inner-spin-button,
|
956 | input[type="number"]::-webkit-outer-spin-button {
|
957 | height: auto; }
|
958 |
|
959 | input[type="search"]::-webkit-search-cancel-button,
|
960 | input[type="search"]::-webkit-search-decoration {
|
961 | -webkit-appearance: none; }
|
962 |
|
963 | table {
|
964 | border-collapse: collapse;
|
965 | border-spacing: 0; }
|
966 |
|
967 | td,
|
968 | th {
|
969 | padding: 0; }
|
970 |
|
971 | .hide,
|
972 | [hidden],
|
973 | template {
|
974 | display: none !important; }
|
975 |
|
976 | .sticky {
|
977 | position: -webkit-sticky;
|
978 | position: sticky;
|
979 | top: 0; }
|
980 |
|
981 | :focus,
|
982 | :active {
|
983 | outline: none; }
|
984 |
|
985 | .focus-outline :focus {
|
986 | outline: thin dotted;
|
987 | outline-offset: -1px; }
|
988 |
|
989 | .focus-outline button:focus,
|
990 | .focus-outline [ion-button]:focus {
|
991 | border-color: #51a7e8;
|
992 | outline: 2px solid #51a7e8;
|
993 | box-shadow: 0 0 8px 1px #51a7e8; }
|
994 |
|
995 | ion-input :focus {
|
996 | outline: none; }
|
997 |
|
998 | .click-block {
|
999 | display: none; }
|
1000 |
|
1001 | .click-block-enabled {
|
1002 | left: 0;
|
1003 | right: 0;
|
1004 | top: 0;
|
1005 | bottom: 0;
|
1006 | -webkit-transform: translate3d(0, -100%, 0) translateY(1px);
|
1007 | transform: translate3d(0, -100%, 0) translateY(1px);
|
1008 | position: absolute;
|
1009 | z-index: 99999;
|
1010 | display: block;
|
1011 | opacity: 0;
|
1012 | contain: strict; }
|
1013 |
|
1014 | .click-block-active {
|
1015 | -webkit-transform: translate3d(0, 0, 0);
|
1016 | transform: translate3d(0, 0, 0); }
|
1017 |
|
1018 | * {
|
1019 | box-sizing: border-box;
|
1020 | -webkit-tap-highlight-color: transparent;
|
1021 | -webkit-tap-highlight-color: transparent;
|
1022 | -webkit-touch-callout: none; }
|
1023 |
|
1024 | html {
|
1025 | width: 100%;
|
1026 | height: 100%;
|
1027 | font-size: 62.5%;
|
1028 | -webkit-text-size-adjust: 100%;
|
1029 | -ms-text-size-adjust: 100%;
|
1030 | text-size-adjust: 100%; }
|
1031 |
|
1032 | body {
|
1033 | margin: 0;
|
1034 | padding: 0;
|
1035 | position: fixed;
|
1036 | overflow: hidden;
|
1037 | width: 100%;
|
1038 | max-width: 100%;
|
1039 | height: 100%;
|
1040 | max-height: 100%;
|
1041 | -webkit-font-smoothing: antialiased;
|
1042 | font-smoothing: antialiased;
|
1043 | text-rendering: optimizeLegibility;
|
1044 | -webkit-user-drag: none;
|
1045 | -ms-content-zooming: none;
|
1046 | -ms-touch-action: manipulation;
|
1047 | touch-action: manipulation;
|
1048 | word-wrap: break-word;
|
1049 | -webkit-text-size-adjust: none;
|
1050 | -ms-text-size-adjust: none;
|
1051 | text-size-adjust: none;
|
1052 | -webkit-user-select: none;
|
1053 | -moz-user-select: none;
|
1054 | -ms-user-select: none;
|
1055 | user-select: none; }
|
1056 |
|
1057 | a {
|
1058 | background-color: transparent; }
|
1059 |
|
1060 | .enable-hover a:hover {
|
1061 | opacity: .7; }
|
1062 |
|
1063 | h1,
|
1064 | h2,
|
1065 | h3,
|
1066 | h4,
|
1067 | h5,
|
1068 | h6 {
|
1069 | margin-top: 1.6rem;
|
1070 | margin-bottom: 1rem;
|
1071 | font-weight: 500;
|
1072 | line-height: 1.2; }
|
1073 |
|
1074 | [padding] h1:first-child,
|
1075 | [padding] h2:first-child,
|
1076 | [padding] h3:first-child,
|
1077 | [padding] h4:first-child,
|
1078 | [padding] h5:first-child,
|
1079 | [padding] h6:first-child {
|
1080 | margin-top: -0.3rem; }
|
1081 |
|
1082 | h1 + h2,
|
1083 | h1 + h3,
|
1084 | h2 + h3 {
|
1085 | margin-top: -0.3rem; }
|
1086 |
|
1087 | h1 {
|
1088 | margin-top: 2rem;
|
1089 | font-size: 2.6rem; }
|
1090 |
|
1091 | h2 {
|
1092 | margin-top: 1.8rem;
|
1093 | font-size: 2.4rem; }
|
1094 |
|
1095 | h3 {
|
1096 | font-size: 2.2rem; }
|
1097 |
|
1098 | h4 {
|
1099 | font-size: 2rem; }
|
1100 |
|
1101 | h5 {
|
1102 | font-size: 1.8rem; }
|
1103 |
|
1104 | h6 {
|
1105 | font-size: 1.6rem; }
|
1106 |
|
1107 | small {
|
1108 | font-size: 75%; }
|
1109 |
|
1110 | sub,
|
1111 | sup {
|
1112 | position: relative;
|
1113 | font-size: 75%;
|
1114 | line-height: 0;
|
1115 | vertical-align: baseline; }
|
1116 |
|
1117 | sup {
|
1118 | top: -.5em; }
|
1119 |
|
1120 | sub {
|
1121 | bottom: -.25em; }
|
1122 |
|
1123 | ion-app,
|
1124 | ion-nav,
|
1125 | ion-tab,
|
1126 | ion-tabs,
|
1127 | .app-root {
|
1128 | left: 0;
|
1129 | top: 0;
|
1130 | position: absolute;
|
1131 | z-index: 0;
|
1132 | display: block;
|
1133 | width: 100%;
|
1134 | height: 100%; }
|
1135 |
|
1136 | ion-nav,
|
1137 | ion-tab,
|
1138 | ion-tabs {
|
1139 | overflow: hidden; }
|
1140 |
|
1141 | ion-tab {
|
1142 | display: none; }
|
1143 |
|
1144 | ion-tab.show-tab {
|
1145 | display: block; }
|
1146 |
|
1147 | ion-app,
|
1148 | ion-nav,
|
1149 | ion-tab,
|
1150 | ion-tabs,
|
1151 | .app-root,
|
1152 | .ion-page {
|
1153 | contain: strict; }
|
1154 |
|
1155 | .ion-page {
|
1156 | left: 0;
|
1157 | top: 0;
|
1158 | position: absolute;
|
1159 | display: block;
|
1160 | width: 100%;
|
1161 | height: 100%;
|
1162 | opacity: 0; }
|
1163 |
|
1164 | .ion-page.show-page {
|
1165 | opacity: 1; }
|
1166 |
|
1167 | ion-header {
|
1168 | left: 0;
|
1169 | top: 0;
|
1170 | position: absolute;
|
1171 | z-index: 10;
|
1172 | display: block;
|
1173 | width: 100%; }
|
1174 |
|
1175 | ion-footer {
|
1176 | left: 0;
|
1177 | bottom: 0;
|
1178 | position: absolute;
|
1179 | z-index: 10;
|
1180 | display: block;
|
1181 | width: 100%; }
|
1182 |
|
1183 | [app-viewport],
|
1184 | [overlay-portal],
|
1185 | [nav-viewport],
|
1186 | [tab-portal],
|
1187 | .nav-decor {
|
1188 | display: none; }
|
1189 |
|
1190 | [text-center] {
|
1191 | text-align: center !important; }
|
1192 |
|
1193 | [text-justify] {
|
1194 | text-align: justify !important; }
|
1195 |
|
1196 | [text-start] {
|
1197 | text-align: left;
|
1198 | text-align: start !important; }
|
1199 |
|
1200 | [text-end] {
|
1201 | text-align: right;
|
1202 | text-align: end !important; }
|
1203 |
|
1204 | [text-left] {
|
1205 | text-align: left !important; }
|
1206 |
|
1207 | [text-right] {
|
1208 | text-align: right !important; }
|
1209 |
|
1210 | [text-nowrap] {
|
1211 | white-space: nowrap !important; }
|
1212 |
|
1213 | [text-wrap] {
|
1214 | white-space: normal !important; }
|
1215 |
|
1216 | @media (min-width: 576px) {
|
1217 | [text-sm-center] {
|
1218 | text-align: center !important; }
|
1219 | [text-sm-justify] {
|
1220 | text-align: justify !important; }
|
1221 | [text-sm-start] {
|
1222 | text-align: left;
|
1223 | text-align: start !important; }
|
1224 | [text-sm-end] {
|
1225 | text-align: right;
|
1226 | text-align: end !important; }
|
1227 | [text-sm-left] {
|
1228 | text-align: left !important; }
|
1229 | [text-sm-right] {
|
1230 | text-align: right !important; }
|
1231 | [text-sm-nowrap] {
|
1232 | white-space: nowrap !important; }
|
1233 | [text-sm-wrap] {
|
1234 | white-space: normal !important; } }
|
1235 |
|
1236 | @media (min-width: 768px) {
|
1237 | [text-md-center] {
|
1238 | text-align: center !important; }
|
1239 | [text-md-justify] {
|
1240 | text-align: justify !important; }
|
1241 | [text-md-start] {
|
1242 | text-align: left;
|
1243 | text-align: start !important; }
|
1244 | [text-md-end] {
|
1245 | text-align: right;
|
1246 | text-align: end !important; }
|
1247 | [text-md-left] {
|
1248 | text-align: left !important; }
|
1249 | [text-md-right] {
|
1250 | text-align: right !important; }
|
1251 | [text-md-nowrap] {
|
1252 | white-space: nowrap !important; }
|
1253 | [text-md-wrap] {
|
1254 | white-space: normal !important; } }
|
1255 |
|
1256 | @media (min-width: 992px) {
|
1257 | [text-lg-center] {
|
1258 | text-align: center !important; }
|
1259 | [text-lg-justify] {
|
1260 | text-align: justify !important; }
|
1261 | [text-lg-start] {
|
1262 | text-align: left;
|
1263 | text-align: start !important; }
|
1264 | [text-lg-end] {
|
1265 | text-align: right;
|
1266 | text-align: end !important; }
|
1267 | [text-lg-left] {
|
1268 | text-align: left !important; }
|
1269 | [text-lg-right] {
|
1270 | text-align: right !important; }
|
1271 | [text-lg-nowrap] {
|
1272 | white-space: nowrap !important; }
|
1273 | [text-lg-wrap] {
|
1274 | white-space: normal !important; } }
|
1275 |
|
1276 | @media (min-width: 1200px) {
|
1277 | [text-xl-center] {
|
1278 | text-align: center !important; }
|
1279 | [text-xl-justify] {
|
1280 | text-align: justify !important; }
|
1281 | [text-xl-start] {
|
1282 | text-align: left;
|
1283 | text-align: start !important; }
|
1284 | [text-xl-end] {
|
1285 | text-align: right;
|
1286 | text-align: end !important; }
|
1287 | [text-xl-left] {
|
1288 | text-align: left !important; }
|
1289 | [text-xl-right] {
|
1290 | text-align: right !important; }
|
1291 | [text-xl-nowrap] {
|
1292 | white-space: nowrap !important; }
|
1293 | [text-xl-wrap] {
|
1294 | white-space: normal !important; } }
|
1295 |
|
1296 | [text-uppercase] {
|
1297 | text-transform: uppercase !important; }
|
1298 |
|
1299 | [text-lowercase] {
|
1300 | text-transform: lowercase !important; }
|
1301 |
|
1302 | [text-capitalize] {
|
1303 | text-transform: capitalize !important; }
|
1304 |
|
1305 | @media (min-width: 576px) {
|
1306 | [text-sm-uppercase] {
|
1307 | text-transform: uppercase !important; }
|
1308 | [text-sm-lowercase] {
|
1309 | text-transform: lowercase !important; }
|
1310 | [text-sm-capitalize] {
|
1311 | text-transform: capitalize !important; } }
|
1312 |
|
1313 | @media (min-width: 768px) {
|
1314 | [text-md-uppercase] {
|
1315 | text-transform: uppercase !important; }
|
1316 | [text-md-lowercase] {
|
1317 | text-transform: lowercase !important; }
|
1318 | [text-md-capitalize] {
|
1319 | text-transform: capitalize !important; } }
|
1320 |
|
1321 | @media (min-width: 992px) {
|
1322 | [text-lg-uppercase] {
|
1323 | text-transform: uppercase !important; }
|
1324 | [text-lg-lowercase] {
|
1325 | text-transform: lowercase !important; }
|
1326 | [text-lg-capitalize] {
|
1327 | text-transform: capitalize !important; } }
|
1328 |
|
1329 | @media (min-width: 1200px) {
|
1330 | [text-xl-uppercase] {
|
1331 | text-transform: uppercase !important; }
|
1332 | [text-xl-lowercase] {
|
1333 | text-transform: lowercase !important; }
|
1334 | [text-xl-capitalize] {
|
1335 | text-transform: capitalize !important; } }
|
1336 |
|
1337 | [float-left] {
|
1338 | float: left !important; }
|
1339 |
|
1340 | [float-right] {
|
1341 | float: right !important; }
|
1342 |
|
1343 | [float-start] {
|
1344 | float: left !important; }
|
1345 |
|
1346 | [float-end] {
|
1347 | float: right !important; }
|
1348 |
|
1349 | @media (min-width: 576px) {
|
1350 | [float-sm-left] {
|
1351 | float: left !important; }
|
1352 | [float-sm-right] {
|
1353 | float: right !important; }
|
1354 | [float-sm-start] {
|
1355 | float: left !important; }
|
1356 | [float-sm-end] {
|
1357 | float: right !important; } }
|
1358 |
|
1359 | @media (min-width: 768px) {
|
1360 | [float-md-left] {
|
1361 | float: left !important; }
|
1362 | [float-md-right] {
|
1363 | float: right !important; }
|
1364 | [float-md-start] {
|
1365 | float: left !important; }
|
1366 | [float-md-end] {
|
1367 | float: right !important; } }
|
1368 |
|
1369 | @media (min-width: 992px) {
|
1370 | [float-lg-left] {
|
1371 | float: left !important; }
|
1372 | [float-lg-right] {
|
1373 | float: right !important; }
|
1374 | [float-lg-start] {
|
1375 | float: left !important; }
|
1376 | [float-lg-end] {
|
1377 | float: right !important; } }
|
1378 |
|
1379 | @media (min-width: 1200px) {
|
1380 | [float-xl-left] {
|
1381 | float: left !important; }
|
1382 | [float-xl-right] {
|
1383 | float: right !important; }
|
1384 | [float-xl-start] {
|
1385 | float: left !important; }
|
1386 | [float-xl-end] {
|
1387 | float: right !important; } }
|
1388 |
|
1389 | ion-app.ios {
|
1390 | font-family: -apple-system, "Helvetica Neue", "Roboto", sans-serif;
|
1391 | font-size: 1.4rem;
|
1392 | background-color: #191919; }
|
1393 |
|
1394 | ion-app.md {
|
1395 | font-family: "Roboto", "Helvetica Neue", sans-serif;
|
1396 | font-size: 1.4rem;
|
1397 | background-color: #191919; }
|
1398 |
|
1399 | ion-app.wp {
|
1400 | font-family: "Segoe UI", "Noto Sans", sans-serif;
|
1401 | font-size: 1.4rem;
|
1402 | background-color: #191919; }
|
1403 |
|
1404 | ion-backdrop {
|
1405 | left: 0;
|
1406 | top: 0;
|
1407 | position: absolute;
|
1408 | z-index: 2;
|
1409 | display: block;
|
1410 | width: 100%;
|
1411 | height: 100%;
|
1412 | background-color: #000;
|
1413 | opacity: .01;
|
1414 | -webkit-transform: translateZ(0);
|
1415 | transform: translateZ(0); }
|
1416 |
|
1417 | ion-backdrop.backdrop-no-tappable {
|
1418 | cursor: auto; }
|
1419 |
|
1420 | ion-badge {
|
1421 | padding: 3px 8px;
|
1422 | text-align: center;
|
1423 | display: inline-block;
|
1424 | min-width: 10px;
|
1425 | font-size: 1.3rem;
|
1426 | font-weight: bold;
|
1427 | line-height: 1;
|
1428 | white-space: nowrap;
|
1429 | vertical-align: baseline; }
|
1430 |
|
1431 | ion-badge:empty {
|
1432 | display: none; }
|
1433 |
|
1434 | .badge-ios {
|
1435 | border-radius: 10px;
|
1436 | color: #fff;
|
1437 | background-color: #007aff; }
|
1438 |
|
1439 | .badge-ios-primary {
|
1440 | color: #fff;
|
1441 | background-color: #007aff; }
|
1442 |
|
1443 | .badge-ios-secondary {
|
1444 | color: #fff;
|
1445 | background-color: #32db64; }
|
1446 |
|
1447 | .badge-ios-danger {
|
1448 | color: #fff;
|
1449 | background-color: #d91e18; }
|
1450 |
|
1451 | .badge-ios-light {
|
1452 | color: #000;
|
1453 | background-color: #f4f4f4; }
|
1454 |
|
1455 | .badge-ios-dark {
|
1456 | color: #fff;
|
1457 | background-color: #222; }
|
1458 |
|
1459 | .badge-md {
|
1460 | border-radius: 4px;
|
1461 | color: #fff;
|
1462 | background-color: #007aff; }
|
1463 |
|
1464 | .badge-md-primary {
|
1465 | color: #fff;
|
1466 | background-color: #007aff; }
|
1467 |
|
1468 | .badge-md-secondary {
|
1469 | color: #fff;
|
1470 | background-color: #32db64; }
|
1471 |
|
1472 | .badge-md-danger {
|
1473 | color: #fff;
|
1474 | background-color: #d91e18; }
|
1475 |
|
1476 | .badge-md-light {
|
1477 | color: #000;
|
1478 | background-color: #f4f4f4; }
|
1479 |
|
1480 | .badge-md-dark {
|
1481 | color: #fff;
|
1482 | background-color: #222; }
|
1483 |
|
1484 | .badge-wp {
|
1485 | border-radius: 0;
|
1486 | color: #fff;
|
1487 | background-color: #007aff; }
|
1488 |
|
1489 | .badge-wp-primary {
|
1490 | color: #fff;
|
1491 | background-color: #007aff; }
|
1492 |
|
1493 | .badge-wp-secondary {
|
1494 | color: #fff;
|
1495 | background-color: #32db64; }
|
1496 |
|
1497 | .badge-wp-danger {
|
1498 | color: #fff;
|
1499 | background-color: #d91e18; }
|
1500 |
|
1501 | .badge-wp-light {
|
1502 | color: #000;
|
1503 | background-color: #f4f4f4; }
|
1504 |
|
1505 | .badge-wp-dark {
|
1506 | color: #fff;
|
1507 | background-color: #222; }
|
1508 |
|
1509 | .button {
|
1510 | text-align: center;
|
1511 | -moz-appearance: none;
|
1512 | -ms-appearance: none;
|
1513 | -webkit-appearance: none;
|
1514 | appearance: none;
|
1515 | position: relative;
|
1516 | z-index: 0;
|
1517 | display: inline-block;
|
1518 | text-overflow: ellipsis;
|
1519 | text-transform: none;
|
1520 | white-space: nowrap;
|
1521 | cursor: pointer;
|
1522 | vertical-align: top;
|
1523 | vertical-align: -webkit-baseline-middle;
|
1524 | transition: background-color, opacity 100ms linear;
|
1525 | -webkit-font-kerning: none;
|
1526 | font-kerning: none;
|
1527 | -webkit-user-select: none;
|
1528 | -moz-user-select: none;
|
1529 | -ms-user-select: none;
|
1530 | user-select: none;
|
1531 | contain: content; }
|
1532 |
|
1533 | .button-inner {
|
1534 | display: -webkit-flex;
|
1535 | display: -ms-flexbox;
|
1536 | display: flex;
|
1537 | -webkit-flex-flow: row nowrap;
|
1538 | -ms-flex-flow: row nowrap;
|
1539 | flex-flow: row nowrap;
|
1540 | -webkit-flex-shrink: 0;
|
1541 | -ms-flex-negative: 0;
|
1542 | flex-shrink: 0;
|
1543 | -webkit-align-items: center;
|
1544 | -ms-flex-align: center;
|
1545 | align-items: center;
|
1546 | -webkit-justify-content: center;
|
1547 | -ms-flex-pack: center;
|
1548 | justify-content: center;
|
1549 | width: 100%;
|
1550 | height: 100%; }
|
1551 |
|
1552 | [ion-button] {
|
1553 | text-decoration: none; }
|
1554 |
|
1555 | a[disabled],
|
1556 | button[disabled],
|
1557 | [ion-button][disabled] {
|
1558 | cursor: default;
|
1559 | opacity: .4;
|
1560 | pointer-events: none; }
|
1561 |
|
1562 | .button-block {
|
1563 | display: block;
|
1564 | clear: both;
|
1565 | width: 100%;
|
1566 | contain: strict; }
|
1567 |
|
1568 | .button-block::after {
|
1569 | clear: both; }
|
1570 |
|
1571 | .button-full {
|
1572 | display: block;
|
1573 | width: 100%;
|
1574 | contain: strict; }
|
1575 |
|
1576 | .button-full.button-outline {
|
1577 | border-radius: 0;
|
1578 | border-right-width: 0;
|
1579 | border-left-width: 0; }
|
1580 |
|
1581 | [icon-left] ion-icon,
|
1582 | [icon-start] ion-icon {
|
1583 | font-size: 1.4em;
|
1584 | line-height: .67;
|
1585 | pointer-events: none;
|
1586 | padding-right: 0.3em; }
|
1587 |
|
1588 | [icon-right] ion-icon,
|
1589 | [icon-end] ion-icon {
|
1590 | font-size: 1.4em;
|
1591 | line-height: .67;
|
1592 | pointer-events: none;
|
1593 | padding-left: 0.4em; }
|
1594 |
|
1595 | .button[icon-only] {
|
1596 | padding: 0;
|
1597 | min-width: .9em; }
|
1598 |
|
1599 | [icon-only] ion-icon {
|
1600 | padding: 0 0.5em;
|
1601 | font-size: 1.8em;
|
1602 | line-height: .67;
|
1603 | pointer-events: none; }
|
1604 |
|
1605 | .button-ios {
|
1606 | border-radius: 4px;
|
1607 | height: 2.8em;
|
1608 | font-size: 1.6rem;
|
1609 | color: #fff;
|
1610 | background-color: #007aff;
|
1611 | margin: 0.4rem 0.2rem;
|
1612 | padding: 0 1em; }
|
1613 |
|
1614 | .button-ios.activated {
|
1615 | background-color: #1485ff;
|
1616 | opacity: 1; }
|
1617 |
|
1618 | .button-ios:hover:not(.disable-hover) {
|
1619 | opacity: 0.8; }
|
1620 |
|
1621 | .button-large-ios {
|
1622 | height: 2.8em;
|
1623 | font-size: 2rem;
|
1624 | padding: 0 1em; }
|
1625 |
|
1626 | .button-small-ios {
|
1627 | height: 2.1em;
|
1628 | font-size: 1.3rem;
|
1629 | padding: 0 0.9em; }
|
1630 |
|
1631 | .button-small-ios[icon-only] ion-icon {
|
1632 | font-size: 1.3em; }
|
1633 |
|
1634 | .button-block-ios {
|
1635 | margin-left: 0;
|
1636 | margin-right: 0; }
|
1637 |
|
1638 | .button-full-ios {
|
1639 | margin-left: 0;
|
1640 | margin-right: 0;
|
1641 | border-radius: 0;
|
1642 | border-right-width: 0;
|
1643 | border-left-width: 0; }
|
1644 |
|
1645 | .button-outline-ios {
|
1646 | border-radius: 4px;
|
1647 | border-width: 1px;
|
1648 | border-style: solid;
|
1649 | border-color: #007aff;
|
1650 | color: #007aff;
|
1651 | background-color: transparent; }
|
1652 |
|
1653 | .button-outline-ios.activated {
|
1654 | color: #fff;
|
1655 | background-color: #007aff;
|
1656 | opacity: 1; }
|
1657 |
|
1658 | .button-clear-ios {
|
1659 | border-color: transparent;
|
1660 | color: #007aff;
|
1661 | background-color: transparent; }
|
1662 |
|
1663 | .button-clear-ios.activated {
|
1664 | background-color: transparent;
|
1665 | opacity: 0.4; }
|
1666 |
|
1667 | .button-clear-ios:hover:not(.disable-hover) {
|
1668 | color: #007aff;
|
1669 | opacity: 0.6; }
|
1670 |
|
1671 | .button-round-ios {
|
1672 | border-radius: 64px;
|
1673 | padding: 0 2.6rem; }
|
1674 |
|
1675 | .button-ios-primary {
|
1676 | color: #fff;
|
1677 | background-color: #007aff; }
|
1678 |
|
1679 | .button-ios-primary.activated {
|
1680 | background-color: #1485ff; }
|
1681 |
|
1682 | .button-outline-ios-primary {
|
1683 | border-color: #007aff;
|
1684 | color: #007aff;
|
1685 | background-color: transparent; }
|
1686 |
|
1687 | .button-outline-ios-primary.activated {
|
1688 | color: #fff;
|
1689 | background-color: #007aff; }
|
1690 |
|
1691 | .button-clear-ios-primary {
|
1692 | border-color: transparent;
|
1693 | color: #007aff;
|
1694 | background-color: transparent; }
|
1695 |
|
1696 | .button-clear-ios-primary.activated {
|
1697 | opacity: 0.4; }
|
1698 |
|
1699 | .button-clear-ios-primary:hover:not(.disable-hover) {
|
1700 | color: #007aff; }
|
1701 |
|
1702 | .button-ios-secondary {
|
1703 | color: #fff;
|
1704 | background-color: #32db64; }
|
1705 |
|
1706 | .button-ios-secondary.activated {
|
1707 | background-color: #2ec95c; }
|
1708 |
|
1709 | .button-outline-ios-secondary {
|
1710 | border-color: #32db64;
|
1711 | color: #32db64;
|
1712 | background-color: transparent; }
|
1713 |
|
1714 | .button-outline-ios-secondary.activated {
|
1715 | color: #fff;
|
1716 | background-color: #32db64; }
|
1717 |
|
1718 | .button-clear-ios-secondary {
|
1719 | border-color: transparent;
|
1720 | color: #32db64;
|
1721 | background-color: transparent; }
|
1722 |
|
1723 | .button-clear-ios-secondary.activated {
|
1724 | opacity: 0.4; }
|
1725 |
|
1726 | .button-clear-ios-secondary:hover:not(.disable-hover) {
|
1727 | color: #32db64; }
|
1728 |
|
1729 | .button-ios-danger {
|
1730 | color: #fff;
|
1731 | background-color: #d91e18; }
|
1732 |
|
1733 | .button-ios-danger.activated {
|
1734 | background-color: #dc302a; }
|
1735 |
|
1736 | .button-outline-ios-danger {
|
1737 | border-color: #d91e18;
|
1738 | color: #d91e18;
|
1739 | background-color: transparent; }
|
1740 |
|
1741 | .button-outline-ios-danger.activated {
|
1742 | color: #fff;
|
1743 | background-color: #d91e18; }
|
1744 |
|
1745 | .button-clear-ios-danger {
|
1746 | border-color: transparent;
|
1747 | color: #d91e18;
|
1748 | background-color: transparent; }
|
1749 |
|
1750 | .button-clear-ios-danger.activated {
|
1751 | opacity: 0.4; }
|
1752 |
|
1753 | .button-clear-ios-danger:hover:not(.disable-hover) {
|
1754 | color: #d91e18; }
|
1755 |
|
1756 | .button-ios-light {
|
1757 | color: #000;
|
1758 | background-color: #f4f4f4; }
|
1759 |
|
1760 | .button-ios-light.activated {
|
1761 | background-color: #e0e0e0; }
|
1762 |
|
1763 | .button-outline-ios-light {
|
1764 | border-color: #f4f4f4;
|
1765 | color: #f4f4f4;
|
1766 | background-color: transparent; }
|
1767 |
|
1768 | .button-outline-ios-light.activated {
|
1769 | color: #000;
|
1770 | background-color: #f4f4f4; }
|
1771 |
|
1772 | .button-clear-ios-light {
|
1773 | border-color: transparent;
|
1774 | color: #f4f4f4;
|
1775 | background-color: transparent; }
|
1776 |
|
1777 | .button-clear-ios-light.activated {
|
1778 | opacity: 0.4; }
|
1779 |
|
1780 | .button-clear-ios-light:hover:not(.disable-hover) {
|
1781 | color: #f4f4f4; }
|
1782 |
|
1783 | .button-ios-dark {
|
1784 | color: #fff;
|
1785 | background-color: #222; }
|
1786 |
|
1787 | .button-ios-dark.activated {
|
1788 | background-color: #343434; }
|
1789 |
|
1790 | .button-outline-ios-dark {
|
1791 | border-color: #222;
|
1792 | color: #222;
|
1793 | background-color: transparent; }
|
1794 |
|
1795 | .button-outline-ios-dark.activated {
|
1796 | color: #fff;
|
1797 | background-color: #222; }
|
1798 |
|
1799 | .button-clear-ios-dark {
|
1800 | border-color: transparent;
|
1801 | color: #222;
|
1802 | background-color: transparent; }
|
1803 |
|
1804 | .button-clear-ios-dark.activated {
|
1805 | opacity: 0.4; }
|
1806 |
|
1807 | .button-clear-ios-dark:hover:not(.disable-hover) {
|
1808 | color: #222; }
|
1809 |
|
1810 | .button-strong-ios {
|
1811 | font-weight: 600; }
|
1812 |
|
1813 | .button-md {
|
1814 | border-radius: 2px;
|
1815 | overflow: hidden;
|
1816 | height: 3.6rem;
|
1817 | font-size: 1.4rem;
|
1818 | font-weight: 500;
|
1819 | text-transform: uppercase;
|
1820 | color: #fff;
|
1821 | background-color: #007aff;
|
1822 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
1823 | transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
1824 | margin: 0.4rem 0.2rem;
|
1825 | padding: 0 1.1em; }
|
1826 |
|
1827 | .button-md:hover:not(.disable-hover) {
|
1828 | background-color: #007aff; }
|
1829 |
|
1830 | .button-md.activated {
|
1831 | background-color: #1485ff;
|
1832 | box-shadow: 0 3px 5px rgba(0, 0, 0, 0.14), 0 3px 5px rgba(0, 0, 0, 0.21), 0 0 0 0 transparent; }
|
1833 |
|
1834 | .button-md .button-effect {
|
1835 | background-color: #fff; }
|
1836 |
|
1837 | .button-large-md {
|
1838 | height: 2.8em;
|
1839 | font-size: 2rem;
|
1840 | padding: 0 1em; }
|
1841 |
|
1842 | .button-small-md {
|
1843 | height: 2.1em;
|
1844 | font-size: 1.3rem;
|
1845 | padding: 0 0.9em; }
|
1846 |
|
1847 | .button-small-md[icon-only] ion-icon {
|
1848 | font-size: 1.4em; }
|
1849 |
|
1850 | .button-block-md {
|
1851 | margin-left: 0;
|
1852 | margin-right: 0; }
|
1853 |
|
1854 | .button-full-md {
|
1855 | margin-left: 0;
|
1856 | margin-right: 0;
|
1857 | border-radius: 0;
|
1858 | border-right-width: 0;
|
1859 | border-left-width: 0; }
|
1860 |
|
1861 | .button-outline-md {
|
1862 | border-width: 1px;
|
1863 | border-style: solid;
|
1864 | border-color: #007aff;
|
1865 | color: #007aff;
|
1866 | background-color: transparent;
|
1867 | box-shadow: none; }
|
1868 |
|
1869 | .button-outline-md:hover:not(.disable-hover) {
|
1870 | background-color: rgba(158, 158, 158, 0.1); }
|
1871 |
|
1872 | .button-outline-md.activated {
|
1873 | background-color: transparent;
|
1874 | box-shadow: none;
|
1875 | opacity: 1; }
|
1876 |
|
1877 | .button-outline-md .button-effect {
|
1878 | background-color: #007aff; }
|
1879 |
|
1880 | .button-clear-md {
|
1881 | border-color: transparent;
|
1882 | color: #007aff;
|
1883 | background-color: transparent;
|
1884 | box-shadow: none;
|
1885 | opacity: 1; }
|
1886 |
|
1887 | .button-clear-md.activated {
|
1888 | background-color: rgba(158, 158, 158, 0.2);
|
1889 | box-shadow: none; }
|
1890 |
|
1891 | .button-clear-md:hover:not(.disable-hover) {
|
1892 | background-color: rgba(158, 158, 158, 0.1); }
|
1893 |
|
1894 | .button-clear-md .button-effect {
|
1895 | background-color: #999; }
|
1896 |
|
1897 | .button-round-md {
|
1898 | border-radius: 64px;
|
1899 | padding: 0 2.6rem; }
|
1900 |
|
1901 | .button-md [icon-only] {
|
1902 | padding: 0; }
|
1903 |
|
1904 | .button-effect {
|
1905 | border-radius: 50%;
|
1906 | -webkit-transform-origin: center center;
|
1907 | transform-origin: center center;
|
1908 | position: absolute;
|
1909 | z-index: 0;
|
1910 | display: none;
|
1911 | background-color: #555;
|
1912 | opacity: .2;
|
1913 | transition-timing-function: ease-in-out;
|
1914 | pointer-events: none;
|
1915 | top: 0;
|
1916 | left: 0; }
|
1917 |
|
1918 | .md button .button-effect {
|
1919 | display: block; }
|
1920 |
|
1921 | .button-md-primary {
|
1922 | color: #fff;
|
1923 | background-color: #007aff; }
|
1924 |
|
1925 | .button-md-primary:hover:not(.disable-hover) {
|
1926 | background-color: #007aff; }
|
1927 |
|
1928 | .button-md-primary.activated {
|
1929 | background-color: #1485ff;
|
1930 | opacity: 1; }
|
1931 |
|
1932 | .button-md-primary .button-effect {
|
1933 | background-color: #fff; }
|
1934 |
|
1935 | .button-outline-md-primary {
|
1936 | border-color: #0d81ff;
|
1937 | color: #0d81ff;
|
1938 | background-color: transparent; }
|
1939 |
|
1940 | .button-outline-md-primary:hover:not(.disable-hover) {
|
1941 | background-color: rgba(158, 158, 158, 0.1); }
|
1942 |
|
1943 | .button-outline-md-primary.activated {
|
1944 | background-color: transparent; }
|
1945 |
|
1946 | .button-outline-md-primary .button-effect {
|
1947 | background-color: #0d81ff; }
|
1948 |
|
1949 | .button-clear-md-primary {
|
1950 | border-color: transparent;
|
1951 | color: #007aff;
|
1952 | background-color: transparent; }
|
1953 |
|
1954 | .button-clear-md-primary.activated {
|
1955 | background-color: rgba(158, 158, 158, 0.2);
|
1956 | box-shadow: none; }
|
1957 |
|
1958 | .button-clear-md-primary:hover:not(.disable-hover) {
|
1959 | color: #007aff; }
|
1960 |
|
1961 | .button-md-secondary {
|
1962 | color: #fff;
|
1963 | background-color: #32db64; }
|
1964 |
|
1965 | .button-md-secondary:hover:not(.disable-hover) {
|
1966 | background-color: #32db64; }
|
1967 |
|
1968 | .button-md-secondary.activated {
|
1969 | background-color: #2ec95c;
|
1970 | opacity: 1; }
|
1971 |
|
1972 | .button-md-secondary .button-effect {
|
1973 | background-color: #fff; }
|
1974 |
|
1975 | .button-outline-md-secondary {
|
1976 | border-color: #30d05f;
|
1977 | color: #30d05f;
|
1978 | background-color: transparent; }
|
1979 |
|
1980 | .button-outline-md-secondary:hover:not(.disable-hover) {
|
1981 | background-color: rgba(158, 158, 158, 0.1); }
|
1982 |
|
1983 | .button-outline-md-secondary.activated {
|
1984 | background-color: transparent; }
|
1985 |
|
1986 | .button-outline-md-secondary .button-effect {
|
1987 | background-color: #30d05f; }
|
1988 |
|
1989 | .button-clear-md-secondary {
|
1990 | border-color: transparent;
|
1991 | color: #32db64;
|
1992 | background-color: transparent; }
|
1993 |
|
1994 | .button-clear-md-secondary.activated {
|
1995 | background-color: rgba(158, 158, 158, 0.2);
|
1996 | box-shadow: none; }
|
1997 |
|
1998 | .button-clear-md-secondary:hover:not(.disable-hover) {
|
1999 | color: #32db64; }
|
2000 |
|
2001 | .button-md-danger {
|
2002 | color: #fff;
|
2003 | background-color: #d91e18; }
|
2004 |
|
2005 | .button-md-danger:hover:not(.disable-hover) {
|
2006 | background-color: #d91e18; }
|
2007 |
|
2008 | .button-md-danger.activated {
|
2009 | background-color: #dc302a;
|
2010 | opacity: 1; }
|
2011 |
|
2012 | .button-md-danger .button-effect {
|
2013 | background-color: #fff; }
|
2014 |
|
2015 | .button-outline-md-danger {
|
2016 | border-color: #db2924;
|
2017 | color: #db2924;
|
2018 | background-color: transparent; }
|
2019 |
|
2020 | .button-outline-md-danger:hover:not(.disable-hover) {
|
2021 | background-color: rgba(158, 158, 158, 0.1); }
|
2022 |
|
2023 | .button-outline-md-danger.activated {
|
2024 | background-color: transparent; }
|
2025 |
|
2026 | .button-outline-md-danger .button-effect {
|
2027 | background-color: #db2924; }
|
2028 |
|
2029 | .button-clear-md-danger {
|
2030 | border-color: transparent;
|
2031 | color: #d91e18;
|
2032 | background-color: transparent; }
|
2033 |
|
2034 | .button-clear-md-danger.activated {
|
2035 | background-color: rgba(158, 158, 158, 0.2);
|
2036 | box-shadow: none; }
|
2037 |
|
2038 | .button-clear-md-danger:hover:not(.disable-hover) {
|
2039 | color: #d91e18; }
|
2040 |
|
2041 | .button-md-light {
|
2042 | color: #000;
|
2043 | background-color: #f4f4f4; }
|
2044 |
|
2045 | .button-md-light:hover:not(.disable-hover) {
|
2046 | background-color: #f4f4f4; }
|
2047 |
|
2048 | .button-md-light.activated {
|
2049 | background-color: #e0e0e0;
|
2050 | opacity: 1; }
|
2051 |
|
2052 | .button-md-light .button-effect {
|
2053 | background-color: #000; }
|
2054 |
|
2055 | .button-outline-md-light {
|
2056 | border-color: #e8e8e8;
|
2057 | color: #e8e8e8;
|
2058 | background-color: transparent; }
|
2059 |
|
2060 | .button-outline-md-light:hover:not(.disable-hover) {
|
2061 | background-color: rgba(158, 158, 158, 0.1); }
|
2062 |
|
2063 | .button-outline-md-light.activated {
|
2064 | background-color: transparent; }
|
2065 |
|
2066 | .button-outline-md-light .button-effect {
|
2067 | background-color: #e8e8e8; }
|
2068 |
|
2069 | .button-clear-md-light {
|
2070 | border-color: transparent;
|
2071 | color: #f4f4f4;
|
2072 | background-color: transparent; }
|
2073 |
|
2074 | .button-clear-md-light.activated {
|
2075 | background-color: rgba(158, 158, 158, 0.2);
|
2076 | box-shadow: none; }
|
2077 |
|
2078 | .button-clear-md-light:hover:not(.disable-hover) {
|
2079 | color: #f4f4f4; }
|
2080 |
|
2081 | .button-md-dark {
|
2082 | color: #fff;
|
2083 | background-color: #222; }
|
2084 |
|
2085 | .button-md-dark:hover:not(.disable-hover) {
|
2086 | background-color: #222; }
|
2087 |
|
2088 | .button-md-dark.activated {
|
2089 | background-color: #343434;
|
2090 | opacity: 1; }
|
2091 |
|
2092 | .button-md-dark .button-effect {
|
2093 | background-color: #fff; }
|
2094 |
|
2095 | .button-outline-md-dark {
|
2096 | border-color: #2d2d2d;
|
2097 | color: #2d2d2d;
|
2098 | background-color: transparent; }
|
2099 |
|
2100 | .button-outline-md-dark:hover:not(.disable-hover) {
|
2101 | background-color: rgba(158, 158, 158, 0.1); }
|
2102 |
|
2103 | .button-outline-md-dark.activated {
|
2104 | background-color: transparent; }
|
2105 |
|
2106 | .button-outline-md-dark .button-effect {
|
2107 | background-color: #2d2d2d; }
|
2108 |
|
2109 | .button-clear-md-dark {
|
2110 | border-color: transparent;
|
2111 | color: #222;
|
2112 | background-color: transparent; }
|
2113 |
|
2114 | .button-clear-md-dark.activated {
|
2115 | background-color: rgba(158, 158, 158, 0.2);
|
2116 | box-shadow: none; }
|
2117 |
|
2118 | .button-clear-md-dark:hover:not(.disable-hover) {
|
2119 | color: #222; }
|
2120 |
|
2121 | .button-strong-md {
|
2122 | font-weight: bold; }
|
2123 |
|
2124 | .button-wp {
|
2125 | border-radius: 0;
|
2126 | height: 3.6rem;
|
2127 | border: 3px solid transparent;
|
2128 | font-size: 1.4rem;
|
2129 | color: #fff;
|
2130 | background-color: #007aff;
|
2131 | margin: 0.4rem 0.2rem;
|
2132 | padding: 0 1.1em; }
|
2133 |
|
2134 | .button-wp:hover:not(.disable-hover) {
|
2135 | border-color: #1485ff;
|
2136 | background-color: #007aff; }
|
2137 |
|
2138 | .button-wp.activated {
|
2139 | background-color: #1485ff; }
|
2140 |
|
2141 | .button-large-wp {
|
2142 | height: 2.8em;
|
2143 | font-size: 2rem;
|
2144 | padding: 0 1em; }
|
2145 |
|
2146 | .button-small-wp {
|
2147 | height: 2.1em;
|
2148 | font-size: 1.3rem;
|
2149 | padding: 0 0.9em; }
|
2150 |
|
2151 | .button-small-wp[icon-only] ion-icon {
|
2152 | font-size: 1.4em; }
|
2153 |
|
2154 | .button-block-wp {
|
2155 | margin-left: 0;
|
2156 | margin-right: 0; }
|
2157 |
|
2158 | .button-full-wp {
|
2159 | margin-left: 0;
|
2160 | margin-right: 0;
|
2161 | border-radius: 0;
|
2162 | border-right-width: 0;
|
2163 | border-left-width: 0; }
|
2164 |
|
2165 | .button-outline-wp {
|
2166 | border-width: 1px;
|
2167 | border-style: solid;
|
2168 | border-color: #007aff;
|
2169 | color: #007aff;
|
2170 | background-color: transparent; }
|
2171 |
|
2172 | .button-outline-wp:hover:not(.disable-hover) {
|
2173 | background-color: rgba(158, 158, 158, 0.1); }
|
2174 |
|
2175 | .button-outline-wp.activated {
|
2176 | background-color: rgba(0, 122, 255, 0.16); }
|
2177 |
|
2178 | .button-clear-wp {
|
2179 | color: #007aff;
|
2180 | background-color: transparent; }
|
2181 |
|
2182 | .button-clear-wp.activated {
|
2183 | background-color: rgba(158, 158, 158, 0.2); }
|
2184 |
|
2185 | .button-clear-wp:hover:not(.disable-hover) {
|
2186 | background-color: rgba(158, 158, 158, 0.1); }
|
2187 |
|
2188 | .button-round-wp {
|
2189 | border-radius: 64px;
|
2190 | padding: 0 2.6rem; }
|
2191 |
|
2192 | .button-wp [icon-only] {
|
2193 | padding: 0; }
|
2194 |
|
2195 | .button-wp-primary {
|
2196 | color: #fff;
|
2197 | background-color: #007aff; }
|
2198 |
|
2199 | .button-wp-primary:hover:not(.disable-hover) {
|
2200 | border-color: #1485ff;
|
2201 | background-color: #007aff; }
|
2202 |
|
2203 | .button-wp-primary.activated {
|
2204 | background-color: #1485ff; }
|
2205 |
|
2206 | .button-outline-wp-primary {
|
2207 | border-color: #0d81ff;
|
2208 | color: #0d81ff;
|
2209 | background-color: transparent; }
|
2210 |
|
2211 | .button-outline-wp-primary:hover:not(.disable-hover) {
|
2212 | border-color: #0d81ff;
|
2213 | background-color: rgba(158, 158, 158, 0.1); }
|
2214 |
|
2215 | .button-outline-wp-primary.activated {
|
2216 | background-color: rgba(13, 129, 255, 0.16); }
|
2217 |
|
2218 | .button-clear-wp-primary {
|
2219 | color: #007aff;
|
2220 | background-color: transparent; }
|
2221 |
|
2222 | .button-clear-wp-primary.activated {
|
2223 | background-color: rgba(158, 158, 158, 0.2); }
|
2224 |
|
2225 | .button-clear-wp-primary:hover:not(.disable-hover) {
|
2226 | color: #007aff; }
|
2227 |
|
2228 | .button-wp-secondary {
|
2229 | color: #fff;
|
2230 | background-color: #32db64; }
|
2231 |
|
2232 | .button-wp-secondary:hover:not(.disable-hover) {
|
2233 | border-color: #2ec95c;
|
2234 | background-color: #32db64; }
|
2235 |
|
2236 | .button-wp-secondary.activated {
|
2237 | background-color: #2ec95c; }
|
2238 |
|
2239 | .button-outline-wp-secondary {
|
2240 | border-color: #30d05f;
|
2241 | color: #30d05f;
|
2242 | background-color: transparent; }
|
2243 |
|
2244 | .button-outline-wp-secondary:hover:not(.disable-hover) {
|
2245 | border-color: #30d05f;
|
2246 | background-color: rgba(158, 158, 158, 0.1); }
|
2247 |
|
2248 | .button-outline-wp-secondary.activated {
|
2249 | background-color: rgba(48, 208, 95, 0.16); }
|
2250 |
|
2251 | .button-clear-wp-secondary {
|
2252 | color: #32db64;
|
2253 | background-color: transparent; }
|
2254 |
|
2255 | .button-clear-wp-secondary.activated {
|
2256 | background-color: rgba(158, 158, 158, 0.2); }
|
2257 |
|
2258 | .button-clear-wp-secondary:hover:not(.disable-hover) {
|
2259 | color: #32db64; }
|
2260 |
|
2261 | .button-wp-danger {
|
2262 | color: #fff;
|
2263 | background-color: #d91e18; }
|
2264 |
|
2265 | .button-wp-danger:hover:not(.disable-hover) {
|
2266 | border-color: #dc302a;
|
2267 | background-color: #d91e18; }
|
2268 |
|
2269 | .button-wp-danger.activated {
|
2270 | background-color: #dc302a; }
|
2271 |
|
2272 | .button-outline-wp-danger {
|
2273 | border-color: #db2924;
|
2274 | color: #db2924;
|
2275 | background-color: transparent; }
|
2276 |
|
2277 | .button-outline-wp-danger:hover:not(.disable-hover) {
|
2278 | border-color: #db2924;
|
2279 | background-color: rgba(158, 158, 158, 0.1); }
|
2280 |
|
2281 | .button-outline-wp-danger.activated {
|
2282 | background-color: rgba(219, 41, 36, 0.16); }
|
2283 |
|
2284 | .button-clear-wp-danger {
|
2285 | color: #d91e18;
|
2286 | background-color: transparent; }
|
2287 |
|
2288 | .button-clear-wp-danger.activated {
|
2289 | background-color: rgba(158, 158, 158, 0.2); }
|
2290 |
|
2291 | .button-clear-wp-danger:hover:not(.disable-hover) {
|
2292 | color: #d91e18; }
|
2293 |
|
2294 | .button-wp-light {
|
2295 | color: #000;
|
2296 | background-color: #f4f4f4; }
|
2297 |
|
2298 | .button-wp-light:hover:not(.disable-hover) {
|
2299 | border-color: #e0e0e0;
|
2300 | background-color: #f4f4f4; }
|
2301 |
|
2302 | .button-wp-light.activated {
|
2303 | background-color: #e0e0e0; }
|
2304 |
|
2305 | .button-outline-wp-light {
|
2306 | border-color: #e8e8e8;
|
2307 | color: #e8e8e8;
|
2308 | background-color: transparent; }
|
2309 |
|
2310 | .button-outline-wp-light:hover:not(.disable-hover) {
|
2311 | border-color: #e8e8e8;
|
2312 | background-color: rgba(158, 158, 158, 0.1); }
|
2313 |
|
2314 | .button-outline-wp-light.activated {
|
2315 | background-color: rgba(232, 232, 232, 0.16); }
|
2316 |
|
2317 | .button-clear-wp-light {
|
2318 | color: #f4f4f4;
|
2319 | background-color: transparent; }
|
2320 |
|
2321 | .button-clear-wp-light.activated {
|
2322 | background-color: rgba(158, 158, 158, 0.2); }
|
2323 |
|
2324 | .button-clear-wp-light:hover:not(.disable-hover) {
|
2325 | color: #f4f4f4; }
|
2326 |
|
2327 | .button-wp-dark {
|
2328 | color: #fff;
|
2329 | background-color: #222; }
|
2330 |
|
2331 | .button-wp-dark:hover:not(.disable-hover) {
|
2332 | border-color: #343434;
|
2333 | background-color: #222; }
|
2334 |
|
2335 | .button-wp-dark.activated {
|
2336 | background-color: #343434; }
|
2337 |
|
2338 | .button-outline-wp-dark {
|
2339 | border-color: #2d2d2d;
|
2340 | color: #2d2d2d;
|
2341 | background-color: transparent; }
|
2342 |
|
2343 | .button-outline-wp-dark:hover:not(.disable-hover) {
|
2344 | border-color: #2d2d2d;
|
2345 | background-color: rgba(158, 158, 158, 0.1); }
|
2346 |
|
2347 | .button-outline-wp-dark.activated {
|
2348 | background-color: rgba(45, 45, 45, 0.16); }
|
2349 |
|
2350 | .button-clear-wp-dark {
|
2351 | color: #222;
|
2352 | background-color: transparent; }
|
2353 |
|
2354 | .button-clear-wp-dark.activated {
|
2355 | background-color: rgba(158, 158, 158, 0.2); }
|
2356 |
|
2357 | .button-clear-wp-dark:hover:not(.disable-hover) {
|
2358 | color: #222; }
|
2359 |
|
2360 | .button-strong-wp {
|
2361 | font-weight: bold; }
|
2362 |
|
2363 | ion-card {
|
2364 | display: block;
|
2365 | overflow: hidden; }
|
2366 |
|
2367 | ion-card img {
|
2368 | display: block;
|
2369 | width: 100%; }
|
2370 |
|
2371 | ion-card-header {
|
2372 | display: block;
|
2373 | overflow: hidden;
|
2374 | text-overflow: ellipsis;
|
2375 | white-space: nowrap; }
|
2376 |
|
2377 | ion-card-content {
|
2378 | display: block; }
|
2379 |
|
2380 | .card-ios {
|
2381 | margin: 12px;
|
2382 | border-radius: 2px;
|
2383 | width: calc(100% - 24px);
|
2384 | font-size: 1.4rem;
|
2385 | background: #242424;
|
2386 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
|
2387 |
|
2388 | .card-ios ion-list {
|
2389 | margin-bottom: 0; }
|
2390 |
|
2391 | .card-ios > .item:last-child,
|
2392 | .card-ios > .item:last-child .item-inner,
|
2393 | .card-ios > .item-wrapper:last-child .item {
|
2394 | border-bottom: 0; }
|
2395 |
|
2396 | .card-ios .item-ios.item-block .item-inner {
|
2397 | border: 0; }
|
2398 |
|
2399 | .card-content-ios {
|
2400 | padding: 13px 16px 14px;
|
2401 | font-size: 1.4rem;
|
2402 | line-height: 1.4; }
|
2403 |
|
2404 | .card-header-ios {
|
2405 | font-size: 1.6rem;
|
2406 | font-weight: 500;
|
2407 | color: #333;
|
2408 | padding: 16px; }
|
2409 |
|
2410 | .card-header-ios + .card-content-ios,
|
2411 | .card-ios .item + .card-content-ios {
|
2412 | padding-top: 0; }
|
2413 |
|
2414 | .card .note-ios {
|
2415 | font-size: 1.3rem; }
|
2416 |
|
2417 | .card-title-ios {
|
2418 | display: block;
|
2419 | font-size: 1.8rem;
|
2420 | line-height: 1.2;
|
2421 | color: #222;
|
2422 | margin: 2px 0;
|
2423 | padding: 8px 0; }
|
2424 |
|
2425 | .card-ios h1 {
|
2426 | margin: 0 0 2px;
|
2427 | font-size: 2.4rem;
|
2428 | font-weight: normal; }
|
2429 |
|
2430 | .card-ios h2 {
|
2431 | margin: 2px 0;
|
2432 | font-size: 1.6rem;
|
2433 | font-weight: normal; }
|
2434 |
|
2435 | .card-ios h3,
|
2436 | .card-ios h4,
|
2437 | .card-ios h5,
|
2438 | .card-ios h6 {
|
2439 | margin: 2px 0;
|
2440 | font-size: 1.4rem;
|
2441 | font-weight: normal; }
|
2442 |
|
2443 | .card-ios p {
|
2444 | margin: 0 0 2px;
|
2445 | font-size: 1.4rem;
|
2446 | color: #666; }
|
2447 |
|
2448 | .card-ios + ion-card {
|
2449 | margin-top: 0; }
|
2450 |
|
2451 | .card-ios .text-ios-primary {
|
2452 | color: #007aff; }
|
2453 |
|
2454 | .card-ios-primary {
|
2455 | color: #fff;
|
2456 | background-color: #007aff; }
|
2457 | .card-ios-primary .card-header-ios,
|
2458 | .card-ios-primary .card-title-ios,
|
2459 | .card-ios-primary .card-content-ios,
|
2460 | .card-ios-primary p {
|
2461 | color: #fff; }
|
2462 | .card-ios-primary .text-ios-primary,
|
2463 | .card-ios-primary .card-header-ios-primary,
|
2464 | .card-ios-primary .card-title-ios-primary,
|
2465 | .card-ios-primary .card-content-ios-primary {
|
2466 | color: #007aff; }
|
2467 | .card-ios-primary .text-ios-secondary,
|
2468 | .card-ios-primary .card-header-ios-secondary,
|
2469 | .card-ios-primary .card-title-ios-secondary,
|
2470 | .card-ios-primary .card-content-ios-secondary {
|
2471 | color: #32db64; }
|
2472 | .card-ios-primary .text-ios-danger,
|
2473 | .card-ios-primary .card-header-ios-danger,
|
2474 | .card-ios-primary .card-title-ios-danger,
|
2475 | .card-ios-primary .card-content-ios-danger {
|
2476 | color: #d91e18; }
|
2477 | .card-ios-primary .text-ios-light,
|
2478 | .card-ios-primary .card-header-ios-light,
|
2479 | .card-ios-primary .card-title-ios-light,
|
2480 | .card-ios-primary .card-content-ios-light {
|
2481 | color: #f4f4f4; }
|
2482 | .card-ios-primary .text-ios-dark,
|
2483 | .card-ios-primary .card-header-ios-dark,
|
2484 | .card-ios-primary .card-title-ios-dark,
|
2485 | .card-ios-primary .card-content-ios-dark {
|
2486 | color: #222; }
|
2487 |
|
2488 | .card-header-ios-primary,
|
2489 | .card-title-ios-primary,
|
2490 | .card-content-ios-primary {
|
2491 | color: #007aff; }
|
2492 |
|
2493 | .card-ios .text-ios-secondary {
|
2494 | color: #32db64; }
|
2495 |
|
2496 | .card-ios-secondary {
|
2497 | color: #fff;
|
2498 | background-color: #32db64; }
|
2499 | .card-ios-secondary .card-header-ios,
|
2500 | .card-ios-secondary .card-title-ios,
|
2501 | .card-ios-secondary .card-content-ios,
|
2502 | .card-ios-secondary p {
|
2503 | color: #fff; }
|
2504 | .card-ios-secondary .text-ios-primary,
|
2505 | .card-ios-secondary .card-header-ios-primary,
|
2506 | .card-ios-secondary .card-title-ios-primary,
|
2507 | .card-ios-secondary .card-content-ios-primary {
|
2508 | color: #007aff; }
|
2509 | .card-ios-secondary .text-ios-secondary,
|
2510 | .card-ios-secondary .card-header-ios-secondary,
|
2511 | .card-ios-secondary .card-title-ios-secondary,
|
2512 | .card-ios-secondary .card-content-ios-secondary {
|
2513 | color: #32db64; }
|
2514 | .card-ios-secondary .text-ios-danger,
|
2515 | .card-ios-secondary .card-header-ios-danger,
|
2516 | .card-ios-secondary .card-title-ios-danger,
|
2517 | .card-ios-secondary .card-content-ios-danger {
|
2518 | color: #d91e18; }
|
2519 | .card-ios-secondary .text-ios-light,
|
2520 | .card-ios-secondary .card-header-ios-light,
|
2521 | .card-ios-secondary .card-title-ios-light,
|
2522 | .card-ios-secondary .card-content-ios-light {
|
2523 | color: #f4f4f4; }
|
2524 | .card-ios-secondary .text-ios-dark,
|
2525 | .card-ios-secondary .card-header-ios-dark,
|
2526 | .card-ios-secondary .card-title-ios-dark,
|
2527 | .card-ios-secondary .card-content-ios-dark {
|
2528 | color: #222; }
|
2529 |
|
2530 | .card-header-ios-secondary,
|
2531 | .card-title-ios-secondary,
|
2532 | .card-content-ios-secondary {
|
2533 | color: #32db64; }
|
2534 |
|
2535 | .card-ios .text-ios-danger {
|
2536 | color: #d91e18; }
|
2537 |
|
2538 | .card-ios-danger {
|
2539 | color: #fff;
|
2540 | background-color: #d91e18; }
|
2541 | .card-ios-danger .card-header-ios,
|
2542 | .card-ios-danger .card-title-ios,
|
2543 | .card-ios-danger .card-content-ios,
|
2544 | .card-ios-danger p {
|
2545 | color: #fff; }
|
2546 | .card-ios-danger .text-ios-primary,
|
2547 | .card-ios-danger .card-header-ios-primary,
|
2548 | .card-ios-danger .card-title-ios-primary,
|
2549 | .card-ios-danger .card-content-ios-primary {
|
2550 | color: #007aff; }
|
2551 | .card-ios-danger .text-ios-secondary,
|
2552 | .card-ios-danger .card-header-ios-secondary,
|
2553 | .card-ios-danger .card-title-ios-secondary,
|
2554 | .card-ios-danger .card-content-ios-secondary {
|
2555 | color: #32db64; }
|
2556 | .card-ios-danger .text-ios-danger,
|
2557 | .card-ios-danger .card-header-ios-danger,
|
2558 | .card-ios-danger .card-title-ios-danger,
|
2559 | .card-ios-danger .card-content-ios-danger {
|
2560 | color: #d91e18; }
|
2561 | .card-ios-danger .text-ios-light,
|
2562 | .card-ios-danger .card-header-ios-light,
|
2563 | .card-ios-danger .card-title-ios-light,
|
2564 | .card-ios-danger .card-content-ios-light {
|
2565 | color: #f4f4f4; }
|
2566 | .card-ios-danger .text-ios-dark,
|
2567 | .card-ios-danger .card-header-ios-dark,
|
2568 | .card-ios-danger .card-title-ios-dark,
|
2569 | .card-ios-danger .card-content-ios-dark {
|
2570 | color: #222; }
|
2571 |
|
2572 | .card-header-ios-danger,
|
2573 | .card-title-ios-danger,
|
2574 | .card-content-ios-danger {
|
2575 | color: #d91e18; }
|
2576 |
|
2577 | .card-ios .text-ios-light {
|
2578 | color: #f4f4f4; }
|
2579 |
|
2580 | .card-ios-light {
|
2581 | color: #000;
|
2582 | background-color: #f4f4f4; }
|
2583 | .card-ios-light .card-header-ios,
|
2584 | .card-ios-light .card-title-ios,
|
2585 | .card-ios-light .card-content-ios,
|
2586 | .card-ios-light p {
|
2587 | color: #000; }
|
2588 | .card-ios-light .text-ios-primary,
|
2589 | .card-ios-light .card-header-ios-primary,
|
2590 | .card-ios-light .card-title-ios-primary,
|
2591 | .card-ios-light .card-content-ios-primary {
|
2592 | color: #007aff; }
|
2593 | .card-ios-light .text-ios-secondary,
|
2594 | .card-ios-light .card-header-ios-secondary,
|
2595 | .card-ios-light .card-title-ios-secondary,
|
2596 | .card-ios-light .card-content-ios-secondary {
|
2597 | color: #32db64; }
|
2598 | .card-ios-light .text-ios-danger,
|
2599 | .card-ios-light .card-header-ios-danger,
|
2600 | .card-ios-light .card-title-ios-danger,
|
2601 | .card-ios-light .card-content-ios-danger {
|
2602 | color: #d91e18; }
|
2603 | .card-ios-light .text-ios-light,
|
2604 | .card-ios-light .card-header-ios-light,
|
2605 | .card-ios-light .card-title-ios-light,
|
2606 | .card-ios-light .card-content-ios-light {
|
2607 | color: #f4f4f4; }
|
2608 | .card-ios-light .text-ios-dark,
|
2609 | .card-ios-light .card-header-ios-dark,
|
2610 | .card-ios-light .card-title-ios-dark,
|
2611 | .card-ios-light .card-content-ios-dark {
|
2612 | color: #222; }
|
2613 |
|
2614 | .card-header-ios-light,
|
2615 | .card-title-ios-light,
|
2616 | .card-content-ios-light {
|
2617 | color: #f4f4f4; }
|
2618 |
|
2619 | .card-ios .text-ios-dark {
|
2620 | color: #222; }
|
2621 |
|
2622 | .card-ios-dark {
|
2623 | color: #fff;
|
2624 | background-color: #222; }
|
2625 | .card-ios-dark .card-header-ios,
|
2626 | .card-ios-dark .card-title-ios,
|
2627 | .card-ios-dark .card-content-ios,
|
2628 | .card-ios-dark p {
|
2629 | color: #fff; }
|
2630 | .card-ios-dark .text-ios-primary,
|
2631 | .card-ios-dark .card-header-ios-primary,
|
2632 | .card-ios-dark .card-title-ios-primary,
|
2633 | .card-ios-dark .card-content-ios-primary {
|
2634 | color: #007aff; }
|
2635 | .card-ios-dark .text-ios-secondary,
|
2636 | .card-ios-dark .card-header-ios-secondary,
|
2637 | .card-ios-dark .card-title-ios-secondary,
|
2638 | .card-ios-dark .card-content-ios-secondary {
|
2639 | color: #32db64; }
|
2640 | .card-ios-dark .text-ios-danger,
|
2641 | .card-ios-dark .card-header-ios-danger,
|
2642 | .card-ios-dark .card-title-ios-danger,
|
2643 | .card-ios-dark .card-content-ios-danger {
|
2644 | color: #d91e18; }
|
2645 | .card-ios-dark .text-ios-light,
|
2646 | .card-ios-dark .card-header-ios-light,
|
2647 | .card-ios-dark .card-title-ios-light,
|
2648 | .card-ios-dark .card-content-ios-light {
|
2649 | color: #f4f4f4; }
|
2650 | .card-ios-dark .text-ios-dark,
|
2651 | .card-ios-dark .card-header-ios-dark,
|
2652 | .card-ios-dark .card-title-ios-dark,
|
2653 | .card-ios-dark .card-content-ios-dark {
|
2654 | color: #222; }
|
2655 |
|
2656 | .card-header-ios-dark,
|
2657 | .card-title-ios-dark,
|
2658 | .card-content-ios-dark {
|
2659 | color: #222; }
|
2660 |
|
2661 | .card-md {
|
2662 | margin: 10px;
|
2663 | border-radius: 2px;
|
2664 | width: calc(100% - 20px);
|
2665 | font-size: 1.4rem;
|
2666 | background: #242424;
|
2667 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
|
2668 |
|
2669 | .card-md ion-list {
|
2670 | margin-bottom: 0; }
|
2671 |
|
2672 | .card-md > .item:last-child,
|
2673 | .card-md > .item:last-child .item-inner,
|
2674 | .card-md > .item-wrapper:last-child .item {
|
2675 | border-bottom: 0; }
|
2676 |
|
2677 | .card-md .item-md.item-block .item-inner {
|
2678 | border: 0; }
|
2679 |
|
2680 | .card-content-md {
|
2681 | padding: 13px 16px;
|
2682 | font-size: 1.4rem;
|
2683 | line-height: 1.5; }
|
2684 |
|
2685 | .card-header-md {
|
2686 | font-size: 1.6rem;
|
2687 | color: #222;
|
2688 | padding: 16px; }
|
2689 |
|
2690 | .card-header-md + .card-content-md,
|
2691 | .card-md .item + .card-content-md {
|
2692 | padding-top: 0; }
|
2693 |
|
2694 | .card .note-md {
|
2695 | font-size: 1.3rem; }
|
2696 |
|
2697 | .card-title-md {
|
2698 | display: block;
|
2699 | font-size: 2.4rem;
|
2700 | line-height: 1.2;
|
2701 | color: #222;
|
2702 | margin: 2px 0;
|
2703 | padding: 8px 0; }
|
2704 |
|
2705 | .card-md h1 {
|
2706 | margin: 0 0 2px;
|
2707 | font-size: 2.4rem;
|
2708 | font-weight: normal;
|
2709 | color: #222; }
|
2710 |
|
2711 | .card-md h2 {
|
2712 | margin: 2px 0;
|
2713 | font-size: 1.6rem;
|
2714 | font-weight: normal;
|
2715 | color: #222; }
|
2716 |
|
2717 | .card-md h3,
|
2718 | .card-md h4,
|
2719 | .card-md h5,
|
2720 | .card-md h6 {
|
2721 | margin: 2px 0;
|
2722 | font-size: 1.4rem;
|
2723 | font-weight: normal;
|
2724 | color: #222; }
|
2725 |
|
2726 | .card-md p {
|
2727 | margin: 0 0 2px;
|
2728 | font-size: 1.4rem;
|
2729 | font-weight: normal;
|
2730 | line-height: 1.5;
|
2731 | color: #222; }
|
2732 |
|
2733 | .card-md + ion-card {
|
2734 | margin-top: 0; }
|
2735 |
|
2736 | .card-md .text-md-primary {
|
2737 | color: #007aff; }
|
2738 |
|
2739 | .card-md-primary {
|
2740 | color: #fff;
|
2741 | background-color: #007aff; }
|
2742 | .card-md-primary .card-header-md,
|
2743 | .card-md-primary .card-title-md,
|
2744 | .card-md-primary .card-content-md,
|
2745 | .card-md-primary h1,
|
2746 | .card-md-primary h2,
|
2747 | .card-md-primary h3,
|
2748 | .card-md-primary h4,
|
2749 | .card-md-primary h5,
|
2750 | .card-md-primary h6,
|
2751 | .card-md-primary p {
|
2752 | color: #fff; }
|
2753 | .card-md-primary .text-md-primary,
|
2754 | .card-md-primary .card-header-md-primary,
|
2755 | .card-md-primary .card-title-md-primary,
|
2756 | .card-md-primary .card-content-md-primary {
|
2757 | color: #007aff; }
|
2758 | .card-md-primary .text-md-secondary,
|
2759 | .card-md-primary .card-header-md-secondary,
|
2760 | .card-md-primary .card-title-md-secondary,
|
2761 | .card-md-primary .card-content-md-secondary {
|
2762 | color: #32db64; }
|
2763 | .card-md-primary .text-md-danger,
|
2764 | .card-md-primary .card-header-md-danger,
|
2765 | .card-md-primary .card-title-md-danger,
|
2766 | .card-md-primary .card-content-md-danger {
|
2767 | color: #d91e18; }
|
2768 | .card-md-primary .text-md-light,
|
2769 | .card-md-primary .card-header-md-light,
|
2770 | .card-md-primary .card-title-md-light,
|
2771 | .card-md-primary .card-content-md-light {
|
2772 | color: #f4f4f4; }
|
2773 | .card-md-primary .text-md-dark,
|
2774 | .card-md-primary .card-header-md-dark,
|
2775 | .card-md-primary .card-title-md-dark,
|
2776 | .card-md-primary .card-content-md-dark {
|
2777 | color: #222; }
|
2778 |
|
2779 | .card-header-md-primary,
|
2780 | .card-title-md-primary,
|
2781 | .card-content-md-primary {
|
2782 | color: #007aff; }
|
2783 |
|
2784 | .card-md .text-md-secondary {
|
2785 | color: #32db64; }
|
2786 |
|
2787 | .card-md-secondary {
|
2788 | color: #fff;
|
2789 | background-color: #32db64; }
|
2790 | .card-md-secondary .card-header-md,
|
2791 | .card-md-secondary .card-title-md,
|
2792 | .card-md-secondary .card-content-md,
|
2793 | .card-md-secondary h1,
|
2794 | .card-md-secondary h2,
|
2795 | .card-md-secondary h3,
|
2796 | .card-md-secondary h4,
|
2797 | .card-md-secondary h5,
|
2798 | .card-md-secondary h6,
|
2799 | .card-md-secondary p {
|
2800 | color: #fff; }
|
2801 | .card-md-secondary .text-md-primary,
|
2802 | .card-md-secondary .card-header-md-primary,
|
2803 | .card-md-secondary .card-title-md-primary,
|
2804 | .card-md-secondary .card-content-md-primary {
|
2805 | color: #007aff; }
|
2806 | .card-md-secondary .text-md-secondary,
|
2807 | .card-md-secondary .card-header-md-secondary,
|
2808 | .card-md-secondary .card-title-md-secondary,
|
2809 | .card-md-secondary .card-content-md-secondary {
|
2810 | color: #32db64; }
|
2811 | .card-md-secondary .text-md-danger,
|
2812 | .card-md-secondary .card-header-md-danger,
|
2813 | .card-md-secondary .card-title-md-danger,
|
2814 | .card-md-secondary .card-content-md-danger {
|
2815 | color: #d91e18; }
|
2816 | .card-md-secondary .text-md-light,
|
2817 | .card-md-secondary .card-header-md-light,
|
2818 | .card-md-secondary .card-title-md-light,
|
2819 | .card-md-secondary .card-content-md-light {
|
2820 | color: #f4f4f4; }
|
2821 | .card-md-secondary .text-md-dark,
|
2822 | .card-md-secondary .card-header-md-dark,
|
2823 | .card-md-secondary .card-title-md-dark,
|
2824 | .card-md-secondary .card-content-md-dark {
|
2825 | color: #222; }
|
2826 |
|
2827 | .card-header-md-secondary,
|
2828 | .card-title-md-secondary,
|
2829 | .card-content-md-secondary {
|
2830 | color: #32db64; }
|
2831 |
|
2832 | .card-md .text-md-danger {
|
2833 | color: #d91e18; }
|
2834 |
|
2835 | .card-md-danger {
|
2836 | color: #fff;
|
2837 | background-color: #d91e18; }
|
2838 | .card-md-danger .card-header-md,
|
2839 | .card-md-danger .card-title-md,
|
2840 | .card-md-danger .card-content-md,
|
2841 | .card-md-danger h1,
|
2842 | .card-md-danger h2,
|
2843 | .card-md-danger h3,
|
2844 | .card-md-danger h4,
|
2845 | .card-md-danger h5,
|
2846 | .card-md-danger h6,
|
2847 | .card-md-danger p {
|
2848 | color: #fff; }
|
2849 | .card-md-danger .text-md-primary,
|
2850 | .card-md-danger .card-header-md-primary,
|
2851 | .card-md-danger .card-title-md-primary,
|
2852 | .card-md-danger .card-content-md-primary {
|
2853 | color: #007aff; }
|
2854 | .card-md-danger .text-md-secondary,
|
2855 | .card-md-danger .card-header-md-secondary,
|
2856 | .card-md-danger .card-title-md-secondary,
|
2857 | .card-md-danger .card-content-md-secondary {
|
2858 | color: #32db64; }
|
2859 | .card-md-danger .text-md-danger,
|
2860 | .card-md-danger .card-header-md-danger,
|
2861 | .card-md-danger .card-title-md-danger,
|
2862 | .card-md-danger .card-content-md-danger {
|
2863 | color: #d91e18; }
|
2864 | .card-md-danger .text-md-light,
|
2865 | .card-md-danger .card-header-md-light,
|
2866 | .card-md-danger .card-title-md-light,
|
2867 | .card-md-danger .card-content-md-light {
|
2868 | color: #f4f4f4; }
|
2869 | .card-md-danger .text-md-dark,
|
2870 | .card-md-danger .card-header-md-dark,
|
2871 | .card-md-danger .card-title-md-dark,
|
2872 | .card-md-danger .card-content-md-dark {
|
2873 | color: #222; }
|
2874 |
|
2875 | .card-header-md-danger,
|
2876 | .card-title-md-danger,
|
2877 | .card-content-md-danger {
|
2878 | color: #d91e18; }
|
2879 |
|
2880 | .card-md .text-md-light {
|
2881 | color: #f4f4f4; }
|
2882 |
|
2883 | .card-md-light {
|
2884 | color: #000;
|
2885 | background-color: #f4f4f4; }
|
2886 | .card-md-light .card-header-md,
|
2887 | .card-md-light .card-title-md,
|
2888 | .card-md-light .card-content-md,
|
2889 | .card-md-light h1,
|
2890 | .card-md-light h2,
|
2891 | .card-md-light h3,
|
2892 | .card-md-light h4,
|
2893 | .card-md-light h5,
|
2894 | .card-md-light h6,
|
2895 | .card-md-light p {
|
2896 | color: #000; }
|
2897 | .card-md-light .text-md-primary,
|
2898 | .card-md-light .card-header-md-primary,
|
2899 | .card-md-light .card-title-md-primary,
|
2900 | .card-md-light .card-content-md-primary {
|
2901 | color: #007aff; }
|
2902 | .card-md-light .text-md-secondary,
|
2903 | .card-md-light .card-header-md-secondary,
|
2904 | .card-md-light .card-title-md-secondary,
|
2905 | .card-md-light .card-content-md-secondary {
|
2906 | color: #32db64; }
|
2907 | .card-md-light .text-md-danger,
|
2908 | .card-md-light .card-header-md-danger,
|
2909 | .card-md-light .card-title-md-danger,
|
2910 | .card-md-light .card-content-md-danger {
|
2911 | color: #d91e18; }
|
2912 | .card-md-light .text-md-light,
|
2913 | .card-md-light .card-header-md-light,
|
2914 | .card-md-light .card-title-md-light,
|
2915 | .card-md-light .card-content-md-light {
|
2916 | color: #f4f4f4; }
|
2917 | .card-md-light .text-md-dark,
|
2918 | .card-md-light .card-header-md-dark,
|
2919 | .card-md-light .card-title-md-dark,
|
2920 | .card-md-light .card-content-md-dark {
|
2921 | color: #222; }
|
2922 |
|
2923 | .card-header-md-light,
|
2924 | .card-title-md-light,
|
2925 | .card-content-md-light {
|
2926 | color: #f4f4f4; }
|
2927 |
|
2928 | .card-md .text-md-dark {
|
2929 | color: #222; }
|
2930 |
|
2931 | .card-md-dark {
|
2932 | color: #fff;
|
2933 | background-color: #222; }
|
2934 | .card-md-dark .card-header-md,
|
2935 | .card-md-dark .card-title-md,
|
2936 | .card-md-dark .card-content-md,
|
2937 | .card-md-dark h1,
|
2938 | .card-md-dark h2,
|
2939 | .card-md-dark h3,
|
2940 | .card-md-dark h4,
|
2941 | .card-md-dark h5,
|
2942 | .card-md-dark h6,
|
2943 | .card-md-dark p {
|
2944 | color: #fff; }
|
2945 | .card-md-dark .text-md-primary,
|
2946 | .card-md-dark .card-header-md-primary,
|
2947 | .card-md-dark .card-title-md-primary,
|
2948 | .card-md-dark .card-content-md-primary {
|
2949 | color: #007aff; }
|
2950 | .card-md-dark .text-md-secondary,
|
2951 | .card-md-dark .card-header-md-secondary,
|
2952 | .card-md-dark .card-title-md-secondary,
|
2953 | .card-md-dark .card-content-md-secondary {
|
2954 | color: #32db64; }
|
2955 | .card-md-dark .text-md-danger,
|
2956 | .card-md-dark .card-header-md-danger,
|
2957 | .card-md-dark .card-title-md-danger,
|
2958 | .card-md-dark .card-content-md-danger {
|
2959 | color: #d91e18; }
|
2960 | .card-md-dark .text-md-light,
|
2961 | .card-md-dark .card-header-md-light,
|
2962 | .card-md-dark .card-title-md-light,
|
2963 | .card-md-dark .card-content-md-light {
|
2964 | color: #f4f4f4; }
|
2965 | .card-md-dark .text-md-dark,
|
2966 | .card-md-dark .card-header-md-dark,
|
2967 | .card-md-dark .card-title-md-dark,
|
2968 | .card-md-dark .card-content-md-dark {
|
2969 | color: #222; }
|
2970 |
|
2971 | .card-header-md-dark,
|
2972 | .card-title-md-dark,
|
2973 | .card-content-md-dark {
|
2974 | color: #222; }
|
2975 |
|
2976 | .card-wp {
|
2977 | margin: 8px;
|
2978 | border-radius: 1px;
|
2979 | width: calc(100% - 16px);
|
2980 | font-size: 1.4rem;
|
2981 | background: #242424;
|
2982 | box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.2); }
|
2983 |
|
2984 | .card-wp ion-list {
|
2985 | margin-bottom: 0; }
|
2986 |
|
2987 | .card-wp > .item:last-child,
|
2988 | .card-wp > .item:last-child .item-inner,
|
2989 | .card-wp > .item-wrapper:last-child .item {
|
2990 | border-bottom: 0; }
|
2991 |
|
2992 | .card-wp .item-wp.item-block .item-inner {
|
2993 | border: 0; }
|
2994 |
|
2995 | .card-content-wp {
|
2996 | padding: 13px 16px;
|
2997 | font-size: 1.4rem;
|
2998 | line-height: 1.5; }
|
2999 |
|
3000 | .card-header-wp {
|
3001 | font-size: 1.6rem;
|
3002 | color: #222;
|
3003 | padding: 16px; }
|
3004 |
|
3005 | .card-header-wp + .card-content-wp,
|
3006 | .card-wp .item + .card-content-wp {
|
3007 | padding-top: 0; }
|
3008 |
|
3009 | .card .note-wp {
|
3010 | font-size: 1.3rem; }
|
3011 |
|
3012 | .card-title-wp {
|
3013 | display: block;
|
3014 | font-size: 2.4rem;
|
3015 | line-height: 1.2;
|
3016 | color: #222;
|
3017 | margin: 2px 0;
|
3018 | padding: 8px 0; }
|
3019 |
|
3020 | .card-wp h1 {
|
3021 | margin: 0 0 2px;
|
3022 | font-size: 2.4rem;
|
3023 | font-weight: normal;
|
3024 | color: #222; }
|
3025 |
|
3026 | .card-wp h2 {
|
3027 | margin: 2px 0;
|
3028 | font-size: 1.6rem;
|
3029 | font-weight: normal;
|
3030 | color: #222; }
|
3031 |
|
3032 | .card-wp h3,
|
3033 | .card-wp h4,
|
3034 | .card-wp h5,
|
3035 | .card-wp h6 {
|
3036 | margin: 2px 0;
|
3037 | font-size: 1.4rem;
|
3038 | font-weight: normal;
|
3039 | color: #222; }
|
3040 |
|
3041 | .card-wp p {
|
3042 | margin: 0 0 2px;
|
3043 | font-size: 1.4rem;
|
3044 | font-weight: normal;
|
3045 | line-height: 1.5;
|
3046 | color: #222; }
|
3047 |
|
3048 | .card-wp + ion-card {
|
3049 | margin-top: 0; }
|
3050 |
|
3051 | .card-wp .text-wp-primary {
|
3052 | color: #007aff; }
|
3053 |
|
3054 | .card-wp-primary {
|
3055 | color: #fff;
|
3056 | background-color: #007aff; }
|
3057 | .card-wp-primary .card-header-wp,
|
3058 | .card-wp-primary .card-title-wp,
|
3059 | .card-wp-primary .card-content-wp,
|
3060 | .card-wp-primary h1,
|
3061 | .card-wp-primary h2,
|
3062 | .card-wp-primary h3,
|
3063 | .card-wp-primary h4,
|
3064 | .card-wp-primary h5,
|
3065 | .card-wp-primary h6,
|
3066 | .card-wp-primary p {
|
3067 | color: #fff; }
|
3068 | .card-wp-primary .text-wp-primary,
|
3069 | .card-wp-primary .card-header-wp-primary,
|
3070 | .card-wp-primary .card-title-wp-primary,
|
3071 | .card-wp-primary .card-content-wp-primary {
|
3072 | color: #007aff; }
|
3073 | .card-wp-primary .text-wp-secondary,
|
3074 | .card-wp-primary .card-header-wp-secondary,
|
3075 | .card-wp-primary .card-title-wp-secondary,
|
3076 | .card-wp-primary .card-content-wp-secondary {
|
3077 | color: #32db64; }
|
3078 | .card-wp-primary .text-wp-danger,
|
3079 | .card-wp-primary .card-header-wp-danger,
|
3080 | .card-wp-primary .card-title-wp-danger,
|
3081 | .card-wp-primary .card-content-wp-danger {
|
3082 | color: #d91e18; }
|
3083 | .card-wp-primary .text-wp-light,
|
3084 | .card-wp-primary .card-header-wp-light,
|
3085 | .card-wp-primary .card-title-wp-light,
|
3086 | .card-wp-primary .card-content-wp-light {
|
3087 | color: #f4f4f4; }
|
3088 | .card-wp-primary .text-wp-dark,
|
3089 | .card-wp-primary .card-header-wp-dark,
|
3090 | .card-wp-primary .card-title-wp-dark,
|
3091 | .card-wp-primary .card-content-wp-dark {
|
3092 | color: #222; }
|
3093 |
|
3094 | .card-header-wp-primary,
|
3095 | .card-title-wp-primary,
|
3096 | .card-content-wp-primary {
|
3097 | color: #007aff; }
|
3098 |
|
3099 | .card-wp .text-wp-secondary {
|
3100 | color: #32db64; }
|
3101 |
|
3102 | .card-wp-secondary {
|
3103 | color: #fff;
|
3104 | background-color: #32db64; }
|
3105 | .card-wp-secondary .card-header-wp,
|
3106 | .card-wp-secondary .card-title-wp,
|
3107 | .card-wp-secondary .card-content-wp,
|
3108 | .card-wp-secondary h1,
|
3109 | .card-wp-secondary h2,
|
3110 | .card-wp-secondary h3,
|
3111 | .card-wp-secondary h4,
|
3112 | .card-wp-secondary h5,
|
3113 | .card-wp-secondary h6,
|
3114 | .card-wp-secondary p {
|
3115 | color: #fff; }
|
3116 | .card-wp-secondary .text-wp-primary,
|
3117 | .card-wp-secondary .card-header-wp-primary,
|
3118 | .card-wp-secondary .card-title-wp-primary,
|
3119 | .card-wp-secondary .card-content-wp-primary {
|
3120 | color: #007aff; }
|
3121 | .card-wp-secondary .text-wp-secondary,
|
3122 | .card-wp-secondary .card-header-wp-secondary,
|
3123 | .card-wp-secondary .card-title-wp-secondary,
|
3124 | .card-wp-secondary .card-content-wp-secondary {
|
3125 | color: #32db64; }
|
3126 | .card-wp-secondary .text-wp-danger,
|
3127 | .card-wp-secondary .card-header-wp-danger,
|
3128 | .card-wp-secondary .card-title-wp-danger,
|
3129 | .card-wp-secondary .card-content-wp-danger {
|
3130 | color: #d91e18; }
|
3131 | .card-wp-secondary .text-wp-light,
|
3132 | .card-wp-secondary .card-header-wp-light,
|
3133 | .card-wp-secondary .card-title-wp-light,
|
3134 | .card-wp-secondary .card-content-wp-light {
|
3135 | color: #f4f4f4; }
|
3136 | .card-wp-secondary .text-wp-dark,
|
3137 | .card-wp-secondary .card-header-wp-dark,
|
3138 | .card-wp-secondary .card-title-wp-dark,
|
3139 | .card-wp-secondary .card-content-wp-dark {
|
3140 | color: #222; }
|
3141 |
|
3142 | .card-header-wp-secondary,
|
3143 | .card-title-wp-secondary,
|
3144 | .card-content-wp-secondary {
|
3145 | color: #32db64; }
|
3146 |
|
3147 | .card-wp .text-wp-danger {
|
3148 | color: #d91e18; }
|
3149 |
|
3150 | .card-wp-danger {
|
3151 | color: #fff;
|
3152 | background-color: #d91e18; }
|
3153 | .card-wp-danger .card-header-wp,
|
3154 | .card-wp-danger .card-title-wp,
|
3155 | .card-wp-danger .card-content-wp,
|
3156 | .card-wp-danger h1,
|
3157 | .card-wp-danger h2,
|
3158 | .card-wp-danger h3,
|
3159 | .card-wp-danger h4,
|
3160 | .card-wp-danger h5,
|
3161 | .card-wp-danger h6,
|
3162 | .card-wp-danger p {
|
3163 | color: #fff; }
|
3164 | .card-wp-danger .text-wp-primary,
|
3165 | .card-wp-danger .card-header-wp-primary,
|
3166 | .card-wp-danger .card-title-wp-primary,
|
3167 | .card-wp-danger .card-content-wp-primary {
|
3168 | color: #007aff; }
|
3169 | .card-wp-danger .text-wp-secondary,
|
3170 | .card-wp-danger .card-header-wp-secondary,
|
3171 | .card-wp-danger .card-title-wp-secondary,
|
3172 | .card-wp-danger .card-content-wp-secondary {
|
3173 | color: #32db64; }
|
3174 | .card-wp-danger .text-wp-danger,
|
3175 | .card-wp-danger .card-header-wp-danger,
|
3176 | .card-wp-danger .card-title-wp-danger,
|
3177 | .card-wp-danger .card-content-wp-danger {
|
3178 | color: #d91e18; }
|
3179 | .card-wp-danger .text-wp-light,
|
3180 | .card-wp-danger .card-header-wp-light,
|
3181 | .card-wp-danger .card-title-wp-light,
|
3182 | .card-wp-danger .card-content-wp-light {
|
3183 | color: #f4f4f4; }
|
3184 | .card-wp-danger .text-wp-dark,
|
3185 | .card-wp-danger .card-header-wp-dark,
|
3186 | .card-wp-danger .card-title-wp-dark,
|
3187 | .card-wp-danger .card-content-wp-dark {
|
3188 | color: #222; }
|
3189 |
|
3190 | .card-header-wp-danger,
|
3191 | .card-title-wp-danger,
|
3192 | .card-content-wp-danger {
|
3193 | color: #d91e18; }
|
3194 |
|
3195 | .card-wp .text-wp-light {
|
3196 | color: #f4f4f4; }
|
3197 |
|
3198 | .card-wp-light {
|
3199 | color: #000;
|
3200 | background-color: #f4f4f4; }
|
3201 | .card-wp-light .card-header-wp,
|
3202 | .card-wp-light .card-title-wp,
|
3203 | .card-wp-light .card-content-wp,
|
3204 | .card-wp-light h1,
|
3205 | .card-wp-light h2,
|
3206 | .card-wp-light h3,
|
3207 | .card-wp-light h4,
|
3208 | .card-wp-light h5,
|
3209 | .card-wp-light h6,
|
3210 | .card-wp-light p {
|
3211 | color: #000; }
|
3212 | .card-wp-light .text-wp-primary,
|
3213 | .card-wp-light .card-header-wp-primary,
|
3214 | .card-wp-light .card-title-wp-primary,
|
3215 | .card-wp-light .card-content-wp-primary {
|
3216 | color: #007aff; }
|
3217 | .card-wp-light .text-wp-secondary,
|
3218 | .card-wp-light .card-header-wp-secondary,
|
3219 | .card-wp-light .card-title-wp-secondary,
|
3220 | .card-wp-light .card-content-wp-secondary {
|
3221 | color: #32db64; }
|
3222 | .card-wp-light .text-wp-danger,
|
3223 | .card-wp-light .card-header-wp-danger,
|
3224 | .card-wp-light .card-title-wp-danger,
|
3225 | .card-wp-light .card-content-wp-danger {
|
3226 | color: #d91e18; }
|
3227 | .card-wp-light .text-wp-light,
|
3228 | .card-wp-light .card-header-wp-light,
|
3229 | .card-wp-light .card-title-wp-light,
|
3230 | .card-wp-light .card-content-wp-light {
|
3231 | color: #f4f4f4; }
|
3232 | .card-wp-light .text-wp-dark,
|
3233 | .card-wp-light .card-header-wp-dark,
|
3234 | .card-wp-light .card-title-wp-dark,
|
3235 | .card-wp-light .card-content-wp-dark {
|
3236 | color: #222; }
|
3237 |
|
3238 | .card-header-wp-light,
|
3239 | .card-title-wp-light,
|
3240 | .card-content-wp-light {
|
3241 | color: #f4f4f4; }
|
3242 |
|
3243 | .card-wp .text-wp-dark {
|
3244 | color: #222; }
|
3245 |
|
3246 | .card-wp-dark {
|
3247 | color: #fff;
|
3248 | background-color: #222; }
|
3249 | .card-wp-dark .card-header-wp,
|
3250 | .card-wp-dark .card-title-wp,
|
3251 | .card-wp-dark .card-content-wp,
|
3252 | .card-wp-dark h1,
|
3253 | .card-wp-dark h2,
|
3254 | .card-wp-dark h3,
|
3255 | .card-wp-dark h4,
|
3256 | .card-wp-dark h5,
|
3257 | .card-wp-dark h6,
|
3258 | .card-wp-dark p {
|
3259 | color: #fff; }
|
3260 | .card-wp-dark .text-wp-primary,
|
3261 | .card-wp-dark .card-header-wp-primary,
|
3262 | .card-wp-dark .card-title-wp-primary,
|
3263 | .card-wp-dark .card-content-wp-primary {
|
3264 | color: #007aff; }
|
3265 | .card-wp-dark .text-wp-secondary,
|
3266 | .card-wp-dark .card-header-wp-secondary,
|
3267 | .card-wp-dark .card-title-wp-secondary,
|
3268 | .card-wp-dark .card-content-wp-secondary {
|
3269 | color: #32db64; }
|
3270 | .card-wp-dark .text-wp-danger,
|
3271 | .card-wp-dark .card-header-wp-danger,
|
3272 | .card-wp-dark .card-title-wp-danger,
|
3273 | .card-wp-dark .card-content-wp-danger {
|
3274 | color: #d91e18; }
|
3275 | .card-wp-dark .text-wp-light,
|
3276 | .card-wp-dark .card-header-wp-light,
|
3277 | .card-wp-dark .card-title-wp-light,
|
3278 | .card-wp-dark .card-content-wp-light {
|
3279 | color: #f4f4f4; }
|
3280 | .card-wp-dark .text-wp-dark,
|
3281 | .card-wp-dark .card-header-wp-dark,
|
3282 | .card-wp-dark .card-title-wp-dark,
|
3283 | .card-wp-dark .card-content-wp-dark {
|
3284 | color: #222; }
|
3285 |
|
3286 | .card-header-wp-dark,
|
3287 | .card-title-wp-dark,
|
3288 | .card-content-wp-dark {
|
3289 | color: #222; }
|
3290 |
|
3291 | .checkbox-ios {
|
3292 | position: relative;
|
3293 | display: inline-block; }
|
3294 |
|
3295 | .checkbox-ios .checkbox-icon {
|
3296 | border-radius: 50%;
|
3297 | position: relative;
|
3298 | width: 21px;
|
3299 | height: 21px;
|
3300 | border-width: 1px;
|
3301 | border-style: solid;
|
3302 | border-color: #000;
|
3303 | background-color: #242424; }
|
3304 |
|
3305 | .checkbox-ios .checkbox-checked {
|
3306 | border-color: #007aff;
|
3307 | background-color: #007aff; }
|
3308 |
|
3309 | .checkbox-ios .checkbox-checked .checkbox-inner {
|
3310 | left: 7px;
|
3311 | top: 4px;
|
3312 | position: absolute;
|
3313 | width: 4px;
|
3314 | height: 9px;
|
3315 | border-width: 1px;
|
3316 | border-top-width: 0;
|
3317 | border-left-width: 0;
|
3318 | border-style: solid;
|
3319 | border-color: #fff;
|
3320 | -webkit-transform: rotate(45deg);
|
3321 | transform: rotate(45deg); }
|
3322 |
|
3323 | .checkbox-ios.checkbox-disabled,
|
3324 | .item-ios.item-checkbox-disabled ion-label {
|
3325 | opacity: 0.3;
|
3326 | pointer-events: none; }
|
3327 |
|
3328 | .item.item-ios .checkbox-ios {
|
3329 | position: static;
|
3330 | display: block;
|
3331 | margin: 8px 16px 8px 2px; }
|
3332 |
|
3333 | .item.item-ios .checkbox-ios[item-right],
|
3334 | .item.item-ios .checkbox-ios[item-end] {
|
3335 | margin: 10px 8px 9px 0; }
|
3336 |
|
3337 | .checkbox-ios-primary .checkbox-checked {
|
3338 | border-color: #007aff;
|
3339 | background-color: #007aff; }
|
3340 |
|
3341 | .checkbox-ios-primary .checkbox-checked .checkbox-inner {
|
3342 | border-color: #fff; }
|
3343 |
|
3344 | .checkbox-ios-secondary .checkbox-checked {
|
3345 | border-color: #32db64;
|
3346 | background-color: #32db64; }
|
3347 |
|
3348 | .checkbox-ios-secondary .checkbox-checked .checkbox-inner {
|
3349 | border-color: #fff; }
|
3350 |
|
3351 | .checkbox-ios-danger .checkbox-checked {
|
3352 | border-color: #d91e18;
|
3353 | background-color: #d91e18; }
|
3354 |
|
3355 | .checkbox-ios-danger .checkbox-checked .checkbox-inner {
|
3356 | border-color: #fff; }
|
3357 |
|
3358 | .checkbox-ios-light .checkbox-checked {
|
3359 | border-color: #f4f4f4;
|
3360 | background-color: #f4f4f4; }
|
3361 |
|
3362 | .checkbox-ios-light .checkbox-checked .checkbox-inner {
|
3363 | border-color: #000; }
|
3364 |
|
3365 | .checkbox-ios-dark .checkbox-checked {
|
3366 | border-color: #222;
|
3367 | background-color: #222; }
|
3368 |
|
3369 | .checkbox-ios-dark .checkbox-checked .checkbox-inner {
|
3370 | border-color: #fff; }
|
3371 |
|
3372 | .checkbox-md {
|
3373 | position: relative;
|
3374 | display: inline-block; }
|
3375 |
|
3376 | .checkbox-md .checkbox-icon {
|
3377 | border-radius: 2px;
|
3378 | position: relative;
|
3379 | width: 16px;
|
3380 | height: 16px;
|
3381 | border-width: 2px;
|
3382 | border-style: solid;
|
3383 | border-color: #787878;
|
3384 | background-color: #242424;
|
3385 | transition-duration: 280ms;
|
3386 | transition-property: background;
|
3387 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
3388 |
|
3389 | .checkbox-md .checkbox-checked {
|
3390 | border-color: #007aff;
|
3391 | background-color: #007aff; }
|
3392 |
|
3393 | .checkbox-md .checkbox-checked .checkbox-inner {
|
3394 | left: 4px;
|
3395 | top: 0;
|
3396 | position: absolute;
|
3397 | width: 5px;
|
3398 | height: 10px;
|
3399 | border-width: 2px;
|
3400 | border-top-width: 0;
|
3401 | border-left-width: 0;
|
3402 | border-style: solid;
|
3403 | border-color: #fff;
|
3404 | -webkit-transform: rotate(45deg);
|
3405 | transform: rotate(45deg); }
|
3406 |
|
3407 | .checkbox-md.checkbox-disabled,
|
3408 | .item-md.item-checkbox-disabled ion-label {
|
3409 | opacity: 0.3;
|
3410 | pointer-events: none; }
|
3411 |
|
3412 | .item.item-md .checkbox-md {
|
3413 | position: static;
|
3414 | display: block;
|
3415 | margin: 9px 36px 9px 4px; }
|
3416 |
|
3417 | .item.item-md .checkbox-md[item-right],
|
3418 | .item.item-md .checkbox-md[item-end] {
|
3419 | margin: 11px 10px 10px 0; }
|
3420 |
|
3421 | .checkbox-md + .item-inner ion-label {
|
3422 | margin-left: 0; }
|
3423 |
|
3424 | .checkbox-md-primary .checkbox-checked {
|
3425 | border-color: #007aff;
|
3426 | background-color: #007aff; }
|
3427 |
|
3428 | .checkbox-md-primary .checkbox-checked .checkbox-inner {
|
3429 | border-color: #fff; }
|
3430 |
|
3431 | .checkbox-md-secondary .checkbox-checked {
|
3432 | border-color: #32db64;
|
3433 | background-color: #32db64; }
|
3434 |
|
3435 | .checkbox-md-secondary .checkbox-checked .checkbox-inner {
|
3436 | border-color: #fff; }
|
3437 |
|
3438 | .checkbox-md-danger .checkbox-checked {
|
3439 | border-color: #d91e18;
|
3440 | background-color: #d91e18; }
|
3441 |
|
3442 | .checkbox-md-danger .checkbox-checked .checkbox-inner {
|
3443 | border-color: #fff; }
|
3444 |
|
3445 | .checkbox-md-light .checkbox-checked {
|
3446 | border-color: #f4f4f4;
|
3447 | background-color: #f4f4f4; }
|
3448 |
|
3449 | .checkbox-md-light .checkbox-checked .checkbox-inner {
|
3450 | border-color: #000; }
|
3451 |
|
3452 | .checkbox-md-dark .checkbox-checked {
|
3453 | border-color: #222;
|
3454 | background-color: #222; }
|
3455 |
|
3456 | .checkbox-md-dark .checkbox-checked .checkbox-inner {
|
3457 | border-color: #fff; }
|
3458 |
|
3459 | .checkbox-wp {
|
3460 | position: relative;
|
3461 | display: inline-block; }
|
3462 |
|
3463 | .checkbox-wp .checkbox-icon {
|
3464 | border-radius: 0;
|
3465 | position: relative;
|
3466 | width: 16px;
|
3467 | height: 16px;
|
3468 | border-width: 2px;
|
3469 | border-style: solid;
|
3470 | border-color: #333;
|
3471 | background-color: #242424; }
|
3472 |
|
3473 | .checkbox-wp .checkbox-checked {
|
3474 | border-color: #007aff;
|
3475 | background-color: #007aff; }
|
3476 |
|
3477 | .checkbox-wp .checkbox-checked .checkbox-inner {
|
3478 | left: 3px;
|
3479 | top: -2px;
|
3480 | position: absolute;
|
3481 | width: 6px;
|
3482 | height: 12px;
|
3483 | border-width: 1px;
|
3484 | border-top-width: 0;
|
3485 | border-left-width: 0;
|
3486 | border-style: solid;
|
3487 | border-color: #fff;
|
3488 | -webkit-transform: rotate(45deg);
|
3489 | transform: rotate(45deg); }
|
3490 |
|
3491 | .checkbox-wp.checkbox-disabled,
|
3492 | .item-wp.item-checkbox-disabled ion-label {
|
3493 | opacity: 0.3;
|
3494 | pointer-events: none; }
|
3495 |
|
3496 | .item.item-wp .checkbox-wp {
|
3497 | position: static;
|
3498 | display: block;
|
3499 | margin: 9px 16px 9px 4px; }
|
3500 |
|
3501 | .item.item-wp .checkbox-wp[item-right],
|
3502 | .item.item-wp .checkbox-wp[item-end] {
|
3503 | margin: 11px 10px 10px 0; }
|
3504 |
|
3505 | .checkbox-wp + .item-inner ion-label {
|
3506 | margin-left: 0; }
|
3507 |
|
3508 | .checkbox-wp-primary .checkbox-checked {
|
3509 | border-color: #007aff;
|
3510 | background-color: #007aff; }
|
3511 |
|
3512 | .checkbox-wp-primary .checkbox-checked .checkbox-inner {
|
3513 | border-color: #fff; }
|
3514 |
|
3515 | .checkbox-wp-secondary .checkbox-checked {
|
3516 | border-color: #32db64;
|
3517 | background-color: #32db64; }
|
3518 |
|
3519 | .checkbox-wp-secondary .checkbox-checked .checkbox-inner {
|
3520 | border-color: #fff; }
|
3521 |
|
3522 | .checkbox-wp-danger .checkbox-checked {
|
3523 | border-color: #d91e18;
|
3524 | background-color: #d91e18; }
|
3525 |
|
3526 | .checkbox-wp-danger .checkbox-checked .checkbox-inner {
|
3527 | border-color: #fff; }
|
3528 |
|
3529 | .checkbox-wp-light .checkbox-checked {
|
3530 | border-color: #f4f4f4;
|
3531 | background-color: #f4f4f4; }
|
3532 |
|
3533 | .checkbox-wp-light .checkbox-checked .checkbox-inner {
|
3534 | border-color: #000; }
|
3535 |
|
3536 | .checkbox-wp-dark .checkbox-checked {
|
3537 | border-color: #222;
|
3538 | background-color: #222; }
|
3539 |
|
3540 | .checkbox-wp-dark .checkbox-checked .checkbox-inner {
|
3541 | border-color: #fff; }
|
3542 |
|
3543 | ion-chip {
|
3544 | display: -webkit-inline-flex;
|
3545 | display: -ms-inline-flexbox;
|
3546 | display: inline-flex;
|
3547 | -webkit-align-self: center;
|
3548 | -ms-flex-item-align: center;
|
3549 | align-self: center;
|
3550 | font-weight: normal;
|
3551 | vertical-align: middle;
|
3552 | box-sizing: border-box; }
|
3553 |
|
3554 | ion-chip .button {
|
3555 | border-radius: 50%;
|
3556 | width: 32px;
|
3557 | height: 32px;
|
3558 | margin: 0; }
|
3559 |
|
3560 | ion-chip ion-icon {
|
3561 | text-align: center;
|
3562 | border-radius: 50%;
|
3563 | width: 32px;
|
3564 | height: 32px;
|
3565 | font-size: 18px;
|
3566 | line-height: 32px; }
|
3567 |
|
3568 | ion-chip ion-avatar {
|
3569 | border-radius: 50%;
|
3570 | width: 32px;
|
3571 | min-width: 32px;
|
3572 | height: 32px;
|
3573 | min-height: 32px; }
|
3574 |
|
3575 | ion-chip ion-avatar img {
|
3576 | border-radius: 50%;
|
3577 | display: block;
|
3578 | width: 100%;
|
3579 | max-width: 100%;
|
3580 | height: 100%;
|
3581 | max-height: 100%; }
|
3582 |
|
3583 | .chip-ios {
|
3584 | border-radius: 16px;
|
3585 | height: 32px;
|
3586 | font-size: 13px;
|
3587 | line-height: 32px;
|
3588 | color: rgba(0, 0, 0, 0.87);
|
3589 | background: rgba(0, 0, 0, 0.12);
|
3590 | margin: 2px 0; }
|
3591 |
|
3592 | .chip-ios > ion-label {
|
3593 | margin: 0 10px; }
|
3594 |
|
3595 | .chip-ios > ion-icon {
|
3596 | color: #fff;
|
3597 | background-color: #007aff; }
|
3598 |
|
3599 | .chip-ios-primary,
|
3600 | .chip-ios .icon-ios-primary {
|
3601 | color: #fff;
|
3602 | background-color: #007aff; }
|
3603 |
|
3604 | .chip-ios-secondary,
|
3605 | .chip-ios .icon-ios-secondary {
|
3606 | color: #fff;
|
3607 | background-color: #32db64; }
|
3608 |
|
3609 | .chip-ios-danger,
|
3610 | .chip-ios .icon-ios-danger {
|
3611 | color: #fff;
|
3612 | background-color: #d91e18; }
|
3613 |
|
3614 | .chip-ios-light,
|
3615 | .chip-ios .icon-ios-light {
|
3616 | color: #000;
|
3617 | background-color: #f4f4f4; }
|
3618 |
|
3619 | .chip-ios-dark,
|
3620 | .chip-ios .icon-ios-dark {
|
3621 | color: #fff;
|
3622 | background-color: #222; }
|
3623 |
|
3624 | .chip-md {
|
3625 | border-radius: 16px;
|
3626 | height: 32px;
|
3627 | font-size: 13px;
|
3628 | line-height: 32px;
|
3629 | color: rgba(0, 0, 0, 0.87);
|
3630 | background: rgba(0, 0, 0, 0.12);
|
3631 | margin: 2px 0; }
|
3632 |
|
3633 | .chip-md > ion-label {
|
3634 | margin: 0 10px; }
|
3635 |
|
3636 | .chip-md > ion-icon {
|
3637 | color: #fff;
|
3638 | background-color: #007aff; }
|
3639 |
|
3640 | .chip-md-primary,
|
3641 | .chip-md .icon-md-primary {
|
3642 | color: #fff;
|
3643 | background-color: #007aff; }
|
3644 |
|
3645 | .chip-md-secondary,
|
3646 | .chip-md .icon-md-secondary {
|
3647 | color: #fff;
|
3648 | background-color: #32db64; }
|
3649 |
|
3650 | .chip-md-danger,
|
3651 | .chip-md .icon-md-danger {
|
3652 | color: #fff;
|
3653 | background-color: #d91e18; }
|
3654 |
|
3655 | .chip-md-light,
|
3656 | .chip-md .icon-md-light {
|
3657 | color: #000;
|
3658 | background-color: #f4f4f4; }
|
3659 |
|
3660 | .chip-md-dark,
|
3661 | .chip-md .icon-md-dark {
|
3662 | color: #fff;
|
3663 | background-color: #222; }
|
3664 |
|
3665 | .chip-wp {
|
3666 | border-radius: 16px;
|
3667 | height: 32px;
|
3668 | font-size: 13px;
|
3669 | line-height: 32px;
|
3670 | color: rgba(0, 0, 0, 0.87);
|
3671 | background: rgba(0, 0, 0, 0.12);
|
3672 | margin: 2px 0; }
|
3673 |
|
3674 | .chip-wp > ion-label {
|
3675 | margin: 0 10px; }
|
3676 |
|
3677 | .chip-wp > ion-icon {
|
3678 | color: #fff;
|
3679 | background-color: #007aff; }
|
3680 |
|
3681 | .chip-wp .button {
|
3682 | border: 0; }
|
3683 |
|
3684 | .chip-wp-primary,
|
3685 | .chip-wp .icon-wp-primary {
|
3686 | color: #fff;
|
3687 | background-color: #007aff; }
|
3688 |
|
3689 | .chip-wp-secondary,
|
3690 | .chip-wp .icon-wp-secondary {
|
3691 | color: #fff;
|
3692 | background-color: #32db64; }
|
3693 |
|
3694 | .chip-wp-danger,
|
3695 | .chip-wp .icon-wp-danger {
|
3696 | color: #fff;
|
3697 | background-color: #d91e18; }
|
3698 |
|
3699 | .chip-wp-light,
|
3700 | .chip-wp .icon-wp-light {
|
3701 | color: #000;
|
3702 | background-color: #f4f4f4; }
|
3703 |
|
3704 | .chip-wp-dark,
|
3705 | .chip-wp .icon-wp-dark {
|
3706 | color: #fff;
|
3707 | background-color: #222; }
|
3708 |
|
3709 | ion-content {
|
3710 | left: 0;
|
3711 | top: 0;
|
3712 | position: relative;
|
3713 | display: block;
|
3714 | width: 100%;
|
3715 | height: 100%;
|
3716 | contain: size style; }
|
3717 |
|
3718 | .ion-page > ion-content {
|
3719 | position: absolute; }
|
3720 |
|
3721 | a {
|
3722 | color: #007aff; }
|
3723 |
|
3724 | .scroll-content {
|
3725 | left: 0;
|
3726 | right: 0;
|
3727 | top: 0;
|
3728 | bottom: 0;
|
3729 | position: absolute;
|
3730 | z-index: 1;
|
3731 | display: block;
|
3732 | overflow-x: hidden;
|
3733 | overflow-y: scroll;
|
3734 | -webkit-overflow-scrolling: touch;
|
3735 | will-change: scroll-position;
|
3736 | contain: size style layout; }
|
3737 |
|
3738 | ion-content.js-scroll > .scroll-content {
|
3739 | position: relative;
|
3740 | min-height: 100%;
|
3741 | overflow-x: initial;
|
3742 | overflow-y: initial;
|
3743 | -webkit-overflow-scrolling: auto;
|
3744 | will-change: initial; }
|
3745 |
|
3746 | .disable-scroll .ion-page {
|
3747 | pointer-events: none;
|
3748 | -ms-touch-action: none;
|
3749 | touch-action: none; }
|
3750 |
|
3751 | ion-content.has-refresher > .scroll-content {
|
3752 | background-color: inherit; }
|
3753 |
|
3754 | .fixed-content {
|
3755 | left: 0;
|
3756 | right: 0;
|
3757 | top: 0;
|
3758 | bottom: 0;
|
3759 | position: absolute;
|
3760 | display: block; }
|
3761 |
|
3762 | [ion-fixed] {
|
3763 | position: absolute;
|
3764 | z-index: 999;
|
3765 | -webkit-transform: translateZ(0);
|
3766 | transform: translateZ(0); }
|
3767 |
|
3768 | ion-app [no-padding],
|
3769 | ion-app [no-padding] .scroll-content {
|
3770 | padding: 0; }
|
3771 |
|
3772 | ion-app [no-margin],
|
3773 | ion-app [no-margin] .scroll-content {
|
3774 | margin: 0; }
|
3775 |
|
3776 | .content-ios {
|
3777 | color: #fff;
|
3778 | background-color: #191919; }
|
3779 |
|
3780 | .content-ios.outer-content {
|
3781 | background: #efeff4; }
|
3782 |
|
3783 | .content-ios hr {
|
3784 | height: 0.55px;
|
3785 | background-color: rgba(0, 0, 0, 0.12); }
|
3786 |
|
3787 | .ios .ion-page.show-page ~ .nav-decor {
|
3788 | left: 0;
|
3789 | top: 0;
|
3790 | position: absolute;
|
3791 | z-index: 0;
|
3792 | display: block;
|
3793 | width: 100%;
|
3794 | height: 100%;
|
3795 | background: #000;
|
3796 | pointer-events: none; }
|
3797 |
|
3798 | ion-app.ios [padding] {
|
3799 | padding: 16px; }
|
3800 |
|
3801 | ion-app.ios [padding-top] {
|
3802 | padding-top: 16px; }
|
3803 |
|
3804 | ion-app.ios [padding-left] {
|
3805 | padding-left: 16px; }
|
3806 |
|
3807 | ion-app.ios [padding-right] {
|
3808 | padding-right: 16px; }
|
3809 |
|
3810 | ion-app.ios [padding-bottom] {
|
3811 | padding-bottom: 16px; }
|
3812 |
|
3813 | ion-app.ios [padding-vertical] {
|
3814 | padding-top: 16px;
|
3815 | padding-bottom: 16px; }
|
3816 |
|
3817 | ion-app.ios [padding-horizontal] {
|
3818 | padding-left: 16px;
|
3819 | padding-right: 16px; }
|
3820 |
|
3821 | ion-app.ios [padding] .scroll-content {
|
3822 | padding: 16px; }
|
3823 | @media screen and (orientation: landscape) {
|
3824 | ion-app.ios [padding] .scroll-content {
|
3825 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
3826 | padding-top: 16px;
|
3827 | padding-bottom: 16px;
|
3828 | padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px); } }
|
3829 |
|
3830 | ion-app.ios [padding-top] .scroll-content {
|
3831 | padding-top: 16px; }
|
3832 | @media screen and (orientation: landscape) {
|
3833 | ion-app.ios [padding-top] .scroll-content {
|
3834 | padding-top: 16px;
|
3835 | padding-top: 16px; } }
|
3836 |
|
3837 | ion-app.ios [padding-left] .scroll-content {
|
3838 | padding-left: 16px; }
|
3839 | @media screen and (orientation: landscape) {
|
3840 | ion-app.ios [padding-left] .scroll-content {
|
3841 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
3842 | padding-left: calc(env(safe-area-inset-left) + 16px); } }
|
3843 |
|
3844 | ion-app.ios [padding-right] .scroll-content {
|
3845 | padding-right: 16px; }
|
3846 | @media screen and (orientation: landscape) {
|
3847 | ion-app.ios [padding-right] .scroll-content {
|
3848 | padding-right: calc(constant(safe-area-inset-right) + 16px);
|
3849 | padding-right: calc(env(safe-area-inset-right) + 16px); } }
|
3850 |
|
3851 | ion-app.ios [padding-bottom] .scroll-content {
|
3852 | padding-bottom: 16px; }
|
3853 | @media screen and (orientation: landscape) {
|
3854 | ion-app.ios [padding-bottom] .scroll-content {
|
3855 | padding-bottom: 16px;
|
3856 | padding-bottom: 16px; } }
|
3857 |
|
3858 | ion-app.ios [padding-vertical] .scroll-content {
|
3859 | padding-top: 16px;
|
3860 | padding-bottom: 16px; }
|
3861 | @media screen and (orientation: landscape) {
|
3862 | ion-app.ios [padding-vertical] .scroll-content {
|
3863 | padding-top: 16px;
|
3864 | padding-bottom: 16px;
|
3865 | padding-top: 16px;
|
3866 | padding-bottom: 16px; } }
|
3867 |
|
3868 | ion-app.ios [padding-horizontal] .scroll-content {
|
3869 | padding-left: 16px;
|
3870 | padding-right: 16px; }
|
3871 | @media screen and (orientation: landscape) {
|
3872 | ion-app.ios [padding-horizontal] .scroll-content {
|
3873 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
3874 | padding-right: calc(constant(safe-area-inset-right) + 16px);
|
3875 | padding-left: calc(env(safe-area-inset-left) + 16px);
|
3876 | padding-right: calc(env(safe-area-inset-right) + 16px); } }
|
3877 |
|
3878 | ion-app.ios [margin],
|
3879 | ion-app.ios [margin] .scroll-content {
|
3880 | margin: 16px; }
|
3881 |
|
3882 | ion-app.ios [margin-top],
|
3883 | ion-app.ios [margin-top] .scroll-content {
|
3884 | margin-top: 16px; }
|
3885 |
|
3886 | ion-app.ios [margin-left],
|
3887 | ion-app.ios [margin-left] .scroll-content {
|
3888 | margin-left: 16px; }
|
3889 |
|
3890 | ion-app.ios [margin-start],
|
3891 | ion-app.ios [margin-start] .scroll-content {
|
3892 | margin-left: 16px; }
|
3893 |
|
3894 | ion-app.ios [margin-right],
|
3895 | ion-app.ios [margin-right] .scroll-content {
|
3896 | margin-right: 16px; }
|
3897 |
|
3898 | ion-app.ios [margin-end],
|
3899 | ion-app.ios [margin-end] .scroll-content {
|
3900 | margin-right: 16px; }
|
3901 |
|
3902 | ion-app.ios [margin-bottom],
|
3903 | ion-app.ios [margin-bottom] .scroll-content {
|
3904 | margin-bottom: 16px; }
|
3905 |
|
3906 | ion-app.ios [margin-vertical],
|
3907 | ion-app.ios [margin-vertical] .scroll-content {
|
3908 | margin-top: 16px;
|
3909 | margin-bottom: 16px; }
|
3910 |
|
3911 | ion-app.ios [margin-horizontal],
|
3912 | ion-app.ios [margin-horizontal] .scroll-content {
|
3913 | margin-left: 16px;
|
3914 | margin-right: 16px; }
|
3915 |
|
3916 | .content-ios:not([no-bounce]) > .scroll-content::before,
|
3917 | .content-ios:not([no-bounce]) > .scroll-content::after {
|
3918 | position: absolute;
|
3919 | width: 1px;
|
3920 | height: 1px;
|
3921 | content: ""; }
|
3922 |
|
3923 | .content-ios:not([no-bounce]) > .scroll-content::before {
|
3924 | bottom: -1px; }
|
3925 |
|
3926 | .content-ios:not([no-bounce]) > .scroll-content::after {
|
3927 | top: -1px; }
|
3928 |
|
3929 | .platform-core .content-ios .scroll-content::after,
|
3930 | .platform-core .content-ios .scroll-content::before {
|
3931 | position: initial;
|
3932 | top: initial;
|
3933 | bottom: initial;
|
3934 | width: initial;
|
3935 | height: initial; }
|
3936 |
|
3937 | .content-md {
|
3938 | color: #fff;
|
3939 | background-color: #191919; }
|
3940 |
|
3941 | .content-md hr {
|
3942 | background-color: rgba(0, 0, 0, 0.08); }
|
3943 |
|
3944 | ion-app.md [padding] {
|
3945 | padding: 16px; }
|
3946 |
|
3947 | ion-app.md [padding-top] {
|
3948 | padding-top: 16px; }
|
3949 |
|
3950 | ion-app.md [padding-left] {
|
3951 | padding-left: 16px; }
|
3952 |
|
3953 | ion-app.md [padding-right] {
|
3954 | padding-right: 16px; }
|
3955 |
|
3956 | ion-app.md [padding-bottom] {
|
3957 | padding-bottom: 16px; }
|
3958 |
|
3959 | ion-app.md [padding-vertical] {
|
3960 | padding-top: 16px;
|
3961 | padding-bottom: 16px; }
|
3962 |
|
3963 | ion-app.md [padding-horizontal] {
|
3964 | padding-left: 16px;
|
3965 | padding-right: 16px; }
|
3966 |
|
3967 | ion-app.md [padding] .scroll-content {
|
3968 | padding: 16px; }
|
3969 | @media screen and (orientation: landscape) {
|
3970 | ion-app.md [padding] .scroll-content {
|
3971 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
3972 | padding-top: 16px;
|
3973 | padding-bottom: 16px;
|
3974 | padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px); } }
|
3975 |
|
3976 | ion-app.md [padding-top] .scroll-content {
|
3977 | padding-top: 16px; }
|
3978 | @media screen and (orientation: landscape) {
|
3979 | ion-app.md [padding-top] .scroll-content {
|
3980 | padding-top: 16px;
|
3981 | padding-top: 16px; } }
|
3982 |
|
3983 | ion-app.md [padding-left] .scroll-content {
|
3984 | padding-left: 16px; }
|
3985 | @media screen and (orientation: landscape) {
|
3986 | ion-app.md [padding-left] .scroll-content {
|
3987 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
3988 | padding-left: calc(env(safe-area-inset-left) + 16px); } }
|
3989 |
|
3990 | ion-app.md [padding-right] .scroll-content {
|
3991 | padding-right: 16px; }
|
3992 | @media screen and (orientation: landscape) {
|
3993 | ion-app.md [padding-right] .scroll-content {
|
3994 | padding-right: calc(constant(safe-area-inset-right) + 16px);
|
3995 | padding-right: calc(env(safe-area-inset-right) + 16px); } }
|
3996 |
|
3997 | ion-app.md [padding-bottom] .scroll-content {
|
3998 | padding-bottom: 16px; }
|
3999 | @media screen and (orientation: landscape) {
|
4000 | ion-app.md [padding-bottom] .scroll-content {
|
4001 | padding-bottom: 16px;
|
4002 | padding-bottom: 16px; } }
|
4003 |
|
4004 | ion-app.md [padding-vertical] .scroll-content {
|
4005 | padding-top: 16px;
|
4006 | padding-bottom: 16px; }
|
4007 | @media screen and (orientation: landscape) {
|
4008 | ion-app.md [padding-vertical] .scroll-content {
|
4009 | padding-top: 16px;
|
4010 | padding-bottom: 16px;
|
4011 | padding-top: 16px;
|
4012 | padding-bottom: 16px; } }
|
4013 |
|
4014 | ion-app.md [padding-horizontal] .scroll-content {
|
4015 | padding-left: 16px;
|
4016 | padding-right: 16px; }
|
4017 | @media screen and (orientation: landscape) {
|
4018 | ion-app.md [padding-horizontal] .scroll-content {
|
4019 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
4020 | padding-right: calc(constant(safe-area-inset-right) + 16px);
|
4021 | padding-left: calc(env(safe-area-inset-left) + 16px);
|
4022 | padding-right: calc(env(safe-area-inset-right) + 16px); } }
|
4023 |
|
4024 | ion-app.md [margin],
|
4025 | ion-app.md [margin] .scroll-content {
|
4026 | margin: 16px; }
|
4027 |
|
4028 | ion-app.md [margin-top],
|
4029 | ion-app.md [margin-top] .scroll-content {
|
4030 | margin-top: 16px; }
|
4031 |
|
4032 | ion-app.md [margin-left],
|
4033 | ion-app.md [margin-left] .scroll-content {
|
4034 | margin-left: 16px; }
|
4035 |
|
4036 | ion-app.md [margin-start],
|
4037 | ion-app.md [margin-start] .scroll-content {
|
4038 | margin-left: 16px; }
|
4039 |
|
4040 | ion-app.md [margin-right],
|
4041 | ion-app.md [margin-right] .scroll-content {
|
4042 | margin-right: 16px; }
|
4043 |
|
4044 | ion-app.md [margin-end],
|
4045 | ion-app.md [margin-end] .scroll-content {
|
4046 | margin-right: 16px; }
|
4047 |
|
4048 | ion-app.md [margin-bottom],
|
4049 | ion-app.md [margin-bottom] .scroll-content {
|
4050 | margin-bottom: 16px; }
|
4051 |
|
4052 | ion-app.md [margin-vertical],
|
4053 | ion-app.md [margin-vertical] .scroll-content {
|
4054 | margin-top: 16px;
|
4055 | margin-bottom: 16px; }
|
4056 |
|
4057 | ion-app.md [margin-horizontal],
|
4058 | ion-app.md [margin-horizontal] .scroll-content {
|
4059 | margin-left: 16px;
|
4060 | margin-right: 16px; }
|
4061 |
|
4062 | .content-wp {
|
4063 | color: #fff;
|
4064 | background-color: #191919; }
|
4065 |
|
4066 | .content-wp hr {
|
4067 | background-color: rgba(0, 0, 0, 0.08); }
|
4068 |
|
4069 | ion-app.wp [padding] {
|
4070 | padding: 16px; }
|
4071 |
|
4072 | ion-app.wp [padding-top] {
|
4073 | padding-top: 16px; }
|
4074 |
|
4075 | ion-app.wp [padding-left] {
|
4076 | padding-left: 16px; }
|
4077 |
|
4078 | ion-app.wp [padding-right] {
|
4079 | padding-right: 16px; }
|
4080 |
|
4081 | ion-app.wp [padding-bottom] {
|
4082 | padding-bottom: 16px; }
|
4083 |
|
4084 | ion-app.wp [padding-vertical] {
|
4085 | padding-top: 16px;
|
4086 | padding-bottom: 16px; }
|
4087 |
|
4088 | ion-app.wp [padding-horizontal] {
|
4089 | padding-left: 16px;
|
4090 | padding-right: 16px; }
|
4091 |
|
4092 | ion-app.wp [padding] .scroll-content {
|
4093 | padding: 16px; }
|
4094 | @media screen and (orientation: landscape) {
|
4095 | ion-app.wp [padding] .scroll-content {
|
4096 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
4097 | padding-top: 16px;
|
4098 | padding-bottom: 16px;
|
4099 | padding: 16px calc(env(safe-area-inset-right) + 16px) 16px calc(env(safe-area-inset-left) + 16px); } }
|
4100 |
|
4101 | ion-app.wp [padding-top] .scroll-content {
|
4102 | padding-top: 16px; }
|
4103 | @media screen and (orientation: landscape) {
|
4104 | ion-app.wp [padding-top] .scroll-content {
|
4105 | padding-top: 16px;
|
4106 | padding-top: 16px; } }
|
4107 |
|
4108 | ion-app.wp [padding-left] .scroll-content {
|
4109 | padding-left: 16px; }
|
4110 | @media screen and (orientation: landscape) {
|
4111 | ion-app.wp [padding-left] .scroll-content {
|
4112 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
4113 | padding-left: calc(env(safe-area-inset-left) + 16px); } }
|
4114 |
|
4115 | ion-app.wp [padding-right] .scroll-content {
|
4116 | padding-right: 16px; }
|
4117 | @media screen and (orientation: landscape) {
|
4118 | ion-app.wp [padding-right] .scroll-content {
|
4119 | padding-right: calc(constant(safe-area-inset-right) + 16px);
|
4120 | padding-right: calc(env(safe-area-inset-right) + 16px); } }
|
4121 |
|
4122 | ion-app.wp [padding-bottom] .scroll-content {
|
4123 | padding-bottom: 16px; }
|
4124 | @media screen and (orientation: landscape) {
|
4125 | ion-app.wp [padding-bottom] .scroll-content {
|
4126 | padding-bottom: 16px;
|
4127 | padding-bottom: 16px; } }
|
4128 |
|
4129 | ion-app.wp [padding-vertical] .scroll-content {
|
4130 | padding-top: 16px;
|
4131 | padding-bottom: 16px; }
|
4132 | @media screen and (orientation: landscape) {
|
4133 | ion-app.wp [padding-vertical] .scroll-content {
|
4134 | padding-top: 16px;
|
4135 | padding-bottom: 16px;
|
4136 | padding-top: 16px;
|
4137 | padding-bottom: 16px; } }
|
4138 |
|
4139 | ion-app.wp [padding-horizontal] .scroll-content {
|
4140 | padding-left: 16px;
|
4141 | padding-right: 16px; }
|
4142 | @media screen and (orientation: landscape) {
|
4143 | ion-app.wp [padding-horizontal] .scroll-content {
|
4144 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
4145 | padding-right: calc(constant(safe-area-inset-right) + 16px);
|
4146 | padding-left: calc(env(safe-area-inset-left) + 16px);
|
4147 | padding-right: calc(env(safe-area-inset-right) + 16px); } }
|
4148 |
|
4149 | ion-app.wp [margin],
|
4150 | ion-app.wp [margin] .scroll-content {
|
4151 | margin: 16px; }
|
4152 |
|
4153 | ion-app.wp [margin-top],
|
4154 | ion-app.wp [margin-top] .scroll-content {
|
4155 | margin-top: 16px; }
|
4156 |
|
4157 | ion-app.wp [margin-left],
|
4158 | ion-app.wp [margin-left] .scroll-content {
|
4159 | margin-left: 16px; }
|
4160 |
|
4161 | ion-app.wp [margin-start],
|
4162 | ion-app.wp [margin-start] .scroll-content {
|
4163 | margin-left: 16px; }
|
4164 |
|
4165 | ion-app.wp [margin-right],
|
4166 | ion-app.wp [margin-right] .scroll-content {
|
4167 | margin-right: 16px; }
|
4168 |
|
4169 | ion-app.wp [margin-end],
|
4170 | ion-app.wp [margin-end] .scroll-content {
|
4171 | margin-right: 16px; }
|
4172 |
|
4173 | ion-app.wp [margin-bottom],
|
4174 | ion-app.wp [margin-bottom] .scroll-content {
|
4175 | margin-bottom: 16px; }
|
4176 |
|
4177 | ion-app.wp [margin-vertical],
|
4178 | ion-app.wp [margin-vertical] .scroll-content {
|
4179 | margin-top: 16px;
|
4180 | margin-bottom: 16px; }
|
4181 |
|
4182 | ion-app.wp [margin-horizontal],
|
4183 | ion-app.wp [margin-horizontal] .scroll-content {
|
4184 | margin-left: 16px;
|
4185 | margin-right: 16px; }
|
4186 |
|
4187 | ion-datetime {
|
4188 | display: -webkit-flex;
|
4189 | display: -ms-flexbox;
|
4190 | display: flex;
|
4191 | overflow: hidden; }
|
4192 |
|
4193 | .datetime-text {
|
4194 | overflow: hidden;
|
4195 | -webkit-flex: 1;
|
4196 | -ms-flex: 1;
|
4197 | flex: 1;
|
4198 | min-width: 16px;
|
4199 | min-height: 1.2em;
|
4200 | font-size: inherit;
|
4201 | line-height: 1.2;
|
4202 | text-overflow: ellipsis;
|
4203 | white-space: nowrap; }
|
4204 |
|
4205 | .datetime-disabled,
|
4206 | .item-datetime-disabled ion-label {
|
4207 | opacity: .4;
|
4208 | pointer-events: none; }
|
4209 |
|
4210 | .item-label-stacked ion-datetime,
|
4211 | .item-label-floating ion-datetime {
|
4212 | padding-left: 0;
|
4213 | width: 100%; }
|
4214 |
|
4215 | .datetime-ios {
|
4216 | padding: 11px 8px 11px 16px; }
|
4217 |
|
4218 | .datetime-ios .datetime-placeholder {
|
4219 | color: #999; }
|
4220 |
|
4221 | .datetime-md {
|
4222 | padding: 13px 8px 13px 16px; }
|
4223 |
|
4224 | .datetime-md .datetime-placeholder {
|
4225 | color: #999; }
|
4226 |
|
4227 | .datetime-wp {
|
4228 | padding: 13px 8px 13px 16px;
|
4229 | min-width: 45%; }
|
4230 |
|
4231 | .datetime-wp .datetime-text {
|
4232 | padding: 0 8px;
|
4233 | min-height: 3.4rem;
|
4234 | border: 2px solid rgba(0, 0, 0, 0.5);
|
4235 | line-height: 3rem; }
|
4236 |
|
4237 | .item-datetime .datetime-wp ion-label[floating] {
|
4238 | -webkit-transform: translate3d(8px, 41px, 0);
|
4239 | transform: translate3d(8px, 41px, 0); }
|
4240 |
|
4241 | .datetime-wp .datetime-placeholder {
|
4242 | color: rgba(0, 0, 0, 0.5); }
|
4243 |
|
4244 | .fab {
|
4245 | text-align: center;
|
4246 | -moz-appearance: none;
|
4247 | -ms-appearance: none;
|
4248 | -webkit-appearance: none;
|
4249 | appearance: none;
|
4250 | border-radius: 50%;
|
4251 | position: relative;
|
4252 | z-index: 0;
|
4253 | display: block;
|
4254 | overflow: hidden;
|
4255 | width: 56px;
|
4256 | height: 56px;
|
4257 | font-size: 14px;
|
4258 | line-height: 56px;
|
4259 | text-overflow: ellipsis;
|
4260 | text-transform: none;
|
4261 | white-space: nowrap;
|
4262 | cursor: pointer;
|
4263 | transition: background-color, opacity 100ms linear;
|
4264 | background-clip: padding-box;
|
4265 | -webkit-font-kerning: none;
|
4266 | font-kerning: none;
|
4267 | -webkit-user-select: none;
|
4268 | -moz-user-select: none;
|
4269 | -ms-user-select: none;
|
4270 | user-select: none;
|
4271 | contain: strict; }
|
4272 |
|
4273 | .fab ion-icon {
|
4274 | -webkit-flex: 1;
|
4275 | -ms-flex: 1;
|
4276 | flex: 1;
|
4277 | font-size: 2.4rem; }
|
4278 |
|
4279 | .fab[mini] {
|
4280 | margin: 8px;
|
4281 | width: 40px;
|
4282 | height: 40px;
|
4283 | line-height: 40px; }
|
4284 |
|
4285 | .fab[mini] .fab-close-icon {
|
4286 | line-height: 40px; }
|
4287 |
|
4288 | ion-fab {
|
4289 | position: absolute;
|
4290 | z-index: 999; }
|
4291 | ion-fab[center] {
|
4292 | left: 50%;
|
4293 | margin-left: -28px; }
|
4294 | ion-fab[middle] {
|
4295 | margin-top: -28px;
|
4296 | top: 50%; }
|
4297 | ion-fab[top] {
|
4298 | top: 10px; }
|
4299 | ion-fab[right] {
|
4300 | right: 10px;
|
4301 | right: calc(10px + constant(safe-area-inset-right));
|
4302 | right: calc(10px + env(safe-area-inset-right)); }
|
4303 | ion-fab[end] {
|
4304 | right: 10px;
|
4305 | right: calc(constant(safe-area-inset-right) + 10px);
|
4306 | right: calc(env(safe-area-inset-right) + 10px); }
|
4307 | ion-fab[bottom] {
|
4308 | bottom: 10px; }
|
4309 | ion-fab[left] {
|
4310 | left: 10px;
|
4311 | left: calc(10px + constant(safe-area-inset-left));
|
4312 | left: calc(10px + env(safe-area-inset-left)); }
|
4313 | ion-fab[start] {
|
4314 | left: 10px;
|
4315 | left: calc(constant(safe-area-inset-left) + 10px);
|
4316 | left: calc(env(safe-area-inset-left) + 10px); }
|
4317 | ion-fab[top][edge] {
|
4318 | top: -28px; }
|
4319 | ion-fab[bottom][edge] {
|
4320 | bottom: -28px; }
|
4321 |
|
4322 | ion-fab-list {
|
4323 | margin: 66px 0;
|
4324 | position: absolute;
|
4325 | top: 0;
|
4326 | display: none;
|
4327 | -webkit-flex-direction: column;
|
4328 | -ms-flex-direction: column;
|
4329 | flex-direction: column;
|
4330 | -webkit-align-items: center;
|
4331 | -ms-flex-align: center;
|
4332 | align-items: center;
|
4333 | min-width: 56px;
|
4334 | min-height: 56px; }
|
4335 |
|
4336 | .fab-in-list {
|
4337 | margin: 8px 0;
|
4338 | width: 40px;
|
4339 | height: 40px;
|
4340 | opacity: 0;
|
4341 | visibility: hidden;
|
4342 | -webkit-transform: scale(0);
|
4343 | transform: scale(0); }
|
4344 |
|
4345 | .fab-in-list.show {
|
4346 | opacity: 1;
|
4347 | visibility: visible;
|
4348 | -webkit-transform: scale(1);
|
4349 | transform: scale(1); }
|
4350 |
|
4351 | ion-fab-list[side=left] .fab-in-list,
|
4352 | ion-fab-list[side=right] .fab-in-list {
|
4353 | margin: 0 8px; }
|
4354 |
|
4355 | ion-fab-list[side=top] {
|
4356 | top: auto;
|
4357 | bottom: 0;
|
4358 | -webkit-flex-direction: column-reverse;
|
4359 | -ms-flex-direction: column-reverse;
|
4360 | flex-direction: column-reverse; }
|
4361 |
|
4362 | ion-fab-list[side=left] {
|
4363 | margin: 0 66px;
|
4364 | right: 0;
|
4365 | -webkit-flex-direction: row-reverse;
|
4366 | -ms-flex-direction: row-reverse;
|
4367 | flex-direction: row-reverse; }
|
4368 |
|
4369 | ion-fab-list[side=right] {
|
4370 | margin: 0 66px;
|
4371 | left: 0;
|
4372 | -webkit-flex-direction: row;
|
4373 | -ms-flex-direction: row;
|
4374 | flex-direction: row; }
|
4375 |
|
4376 | .fab-list-active {
|
4377 | display: -webkit-flex;
|
4378 | display: -ms-flexbox;
|
4379 | display: flex; }
|
4380 |
|
4381 | .fab-close-icon {
|
4382 | left: 0;
|
4383 | right: 0;
|
4384 | top: 0;
|
4385 | position: absolute;
|
4386 | line-height: 56px;
|
4387 | opacity: 0;
|
4388 | -webkit-transform: scale(0.4) rotateZ(-45deg);
|
4389 | transform: scale(0.4) rotateZ(-45deg);
|
4390 | transition: all ease-in-out 300ms;
|
4391 | transition-property: opacity, -webkit-transform;
|
4392 | transition-property: transform, opacity;
|
4393 | transition-property: transform, opacity, -webkit-transform; }
|
4394 |
|
4395 | .fab .button-inner {
|
4396 | transition: all ease-in-out 300ms;
|
4397 | transition-property: opacity, -webkit-transform;
|
4398 | transition-property: transform, opacity;
|
4399 | transition-property: transform, opacity, -webkit-transform; }
|
4400 |
|
4401 | .fab-close-active .fab-close-icon {
|
4402 | opacity: 1;
|
4403 | -webkit-transform: scale(1) rotateZ(0deg);
|
4404 | transform: scale(1) rotateZ(0deg); }
|
4405 |
|
4406 | .fab-close-active .button-inner {
|
4407 | opacity: 0;
|
4408 | -webkit-transform: scale(0.4) rotateZ(45deg);
|
4409 | transform: scale(0.4) rotateZ(45deg); }
|
4410 |
|
4411 | .fab-ios {
|
4412 | color: #fff;
|
4413 | background-color: #007aff; }
|
4414 |
|
4415 | .fab-ios.activated {
|
4416 | background-color: #1485ff; }
|
4417 |
|
4418 | .fab-ios-in-list {
|
4419 | color: #000;
|
4420 | background-color: #f4f4f4;
|
4421 | transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
|
4422 | transition: transform 200ms ease 10ms, opacity 200ms ease 10ms;
|
4423 | transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms; }
|
4424 |
|
4425 | .fab-ios-in-list.activated {
|
4426 | background-color: #e0e0e0; }
|
4427 |
|
4428 | .fab-ios-primary {
|
4429 | color: #fff;
|
4430 | background-color: #007aff; }
|
4431 |
|
4432 | .fab-ios-primary.activated {
|
4433 | background-color: #1485ff; }
|
4434 |
|
4435 | .fab-ios-secondary {
|
4436 | color: #fff;
|
4437 | background-color: #32db64; }
|
4438 |
|
4439 | .fab-ios-secondary.activated {
|
4440 | background-color: #2ec95c; }
|
4441 |
|
4442 | .fab-ios-danger {
|
4443 | color: #fff;
|
4444 | background-color: #d91e18; }
|
4445 |
|
4446 | .fab-ios-danger.activated {
|
4447 | background-color: #dc302a; }
|
4448 |
|
4449 | .fab-ios-light {
|
4450 | color: #000;
|
4451 | background-color: #f4f4f4; }
|
4452 |
|
4453 | .fab-ios-light.activated {
|
4454 | background-color: #e0e0e0; }
|
4455 |
|
4456 | .fab-ios-dark {
|
4457 | color: #fff;
|
4458 | background-color: #222; }
|
4459 |
|
4460 | .fab-ios-dark.activated {
|
4461 | background-color: #343434; }
|
4462 |
|
4463 | .fab-md {
|
4464 | color: #fff;
|
4465 | background-color: #007aff;
|
4466 | box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.1);
|
4467 | transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1); }
|
4468 |
|
4469 | .fab-md.activated {
|
4470 | background-color: #1485ff;
|
4471 | box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4), 0 4px 7px 0 rgba(0, 0, 0, 0.1); }
|
4472 |
|
4473 | .fab-md-in-list {
|
4474 | color: #000;
|
4475 | background-color: #f4f4f4;
|
4476 | transition: opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms;
|
4477 | transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
4478 | transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 200ms ease 10ms; }
|
4479 |
|
4480 | .fab-md-in-list.activated {
|
4481 | background-color: #e0e0e0; }
|
4482 |
|
4483 | .fab-md .button-effect {
|
4484 | background-color: #fff; }
|
4485 |
|
4486 | .fab-md-primary {
|
4487 | color: #fff;
|
4488 | background-color: #007aff; }
|
4489 |
|
4490 | .fab-md-primary.activated {
|
4491 | background-color: #1485ff; }
|
4492 |
|
4493 | .fab-md-primary .button-effect {
|
4494 | background-color: #fff; }
|
4495 |
|
4496 | .fab-md-secondary {
|
4497 | color: #fff;
|
4498 | background-color: #32db64; }
|
4499 |
|
4500 | .fab-md-secondary.activated {
|
4501 | background-color: #2ec95c; }
|
4502 |
|
4503 | .fab-md-secondary .button-effect {
|
4504 | background-color: #fff; }
|
4505 |
|
4506 | .fab-md-danger {
|
4507 | color: #fff;
|
4508 | background-color: #d91e18; }
|
4509 |
|
4510 | .fab-md-danger.activated {
|
4511 | background-color: #dc302a; }
|
4512 |
|
4513 | .fab-md-danger .button-effect {
|
4514 | background-color: #fff; }
|
4515 |
|
4516 | .fab-md-light {
|
4517 | color: #000;
|
4518 | background-color: #f4f4f4; }
|
4519 |
|
4520 | .fab-md-light.activated {
|
4521 | background-color: #e0e0e0; }
|
4522 |
|
4523 | .fab-md-light .button-effect {
|
4524 | background-color: #000; }
|
4525 |
|
4526 | .fab-md-dark {
|
4527 | color: #fff;
|
4528 | background-color: #222; }
|
4529 |
|
4530 | .fab-md-dark.activated {
|
4531 | background-color: #343434; }
|
4532 |
|
4533 | .fab-md-dark .button-effect {
|
4534 | background-color: #fff; }
|
4535 |
|
4536 | .fab-wp {
|
4537 | color: #fff;
|
4538 | background-color: #007aff; }
|
4539 |
|
4540 | .fab-wp.activated {
|
4541 | background-color: #1485ff; }
|
4542 |
|
4543 | .fab-wp-in-list {
|
4544 | color: #000;
|
4545 | background-color: #f4f4f4;
|
4546 | transition: opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms;
|
4547 | transition: transform 200ms ease 10ms, opacity 200ms ease 10ms;
|
4548 | transition: transform 200ms ease 10ms, opacity 200ms ease 10ms, -webkit-transform 200ms ease 10ms; }
|
4549 |
|
4550 | .fab-wp-in-list.activated {
|
4551 | background-color: #e0e0e0; }
|
4552 |
|
4553 | .fab-wp-primary {
|
4554 | color: #fff;
|
4555 | background-color: #007aff; }
|
4556 |
|
4557 | .fab-wp-primary.activated {
|
4558 | background-color: #1485ff; }
|
4559 |
|
4560 | .fab-wp-secondary {
|
4561 | color: #fff;
|
4562 | background-color: #32db64; }
|
4563 |
|
4564 | .fab-wp-secondary.activated {
|
4565 | background-color: #2ec95c; }
|
4566 |
|
4567 | .fab-wp-danger {
|
4568 | color: #fff;
|
4569 | background-color: #d91e18; }
|
4570 |
|
4571 | .fab-wp-danger.activated {
|
4572 | background-color: #dc302a; }
|
4573 |
|
4574 | .fab-wp-light {
|
4575 | color: #000;
|
4576 | background-color: #f4f4f4; }
|
4577 |
|
4578 | .fab-wp-light.activated {
|
4579 | background-color: #e0e0e0; }
|
4580 |
|
4581 | .fab-wp-dark {
|
4582 | color: #fff;
|
4583 | background-color: #222; }
|
4584 |
|
4585 | .fab-wp-dark.activated {
|
4586 | background-color: #343434; }
|
4587 |
|
4588 | .grid {
|
4589 | padding: 5px;
|
4590 | margin-left: auto;
|
4591 | margin-right: auto;
|
4592 | width: 100%;
|
4593 | display: -webkit-flex;
|
4594 | display: -ms-flexbox;
|
4595 | display: flex;
|
4596 | -webkit-flex-direction: column;
|
4597 | -ms-flex-direction: column;
|
4598 | flex-direction: column; }
|
4599 | .grid[no-padding] {
|
4600 | padding: 0; }
|
4601 | .grid[no-padding] > .row > .col {
|
4602 | padding: 0; }
|
4603 | @media (min-width: 576px) {
|
4604 | .grid[fixed] {
|
4605 | width: 540px;
|
4606 | max-width: 100%; } }
|
4607 | @media (min-width: 768px) {
|
4608 | .grid[fixed] {
|
4609 | width: 720px;
|
4610 | max-width: 100%; } }
|
4611 | @media (min-width: 992px) {
|
4612 | .grid[fixed] {
|
4613 | width: 960px;
|
4614 | max-width: 100%; } }
|
4615 | @media (min-width: 1200px) {
|
4616 | .grid[fixed] {
|
4617 | width: 1140px;
|
4618 | max-width: 100%; } }
|
4619 |
|
4620 | .row {
|
4621 | display: -webkit-flex;
|
4622 | display: -ms-flexbox;
|
4623 | display: flex;
|
4624 | -webkit-flex-wrap: wrap;
|
4625 | -ms-flex-wrap: wrap;
|
4626 | flex-wrap: wrap; }
|
4627 | .row[nowrap] {
|
4628 | -webkit-flex-wrap: nowrap;
|
4629 | -ms-flex-wrap: nowrap;
|
4630 | flex-wrap: nowrap; }
|
4631 | .row[wrap-reverse] {
|
4632 | -webkit-flex-wrap: wrap-reverse;
|
4633 | -ms-flex-wrap: wrap-reverse;
|
4634 | flex-wrap: wrap-reverse; }
|
4635 | .row[align-items-start] {
|
4636 | -webkit-align-items: flex-start;
|
4637 | -ms-flex-align: start;
|
4638 | align-items: flex-start; }
|
4639 | .row[align-items-center] {
|
4640 | -webkit-align-items: center;
|
4641 | -ms-flex-align: center;
|
4642 | align-items: center; }
|
4643 | .row[align-items-end] {
|
4644 | -webkit-align-items: flex-end;
|
4645 | -ms-flex-align: end;
|
4646 | align-items: flex-end; }
|
4647 | .row[align-items-stretch] {
|
4648 | -webkit-align-items: stretch;
|
4649 | -ms-flex-align: stretch;
|
4650 | align-items: stretch; }
|
4651 | .row[align-items-baseline] {
|
4652 | -webkit-align-items: baseline;
|
4653 | -ms-flex-align: baseline;
|
4654 | align-items: baseline; }
|
4655 | .row[justify-content-start] {
|
4656 | -webkit-justify-content: flex-start;
|
4657 | -ms-flex-pack: start;
|
4658 | justify-content: flex-start; }
|
4659 | .row[justify-content-center] {
|
4660 | -webkit-justify-content: center;
|
4661 | -ms-flex-pack: center;
|
4662 | justify-content: center; }
|
4663 | .row[justify-content-end] {
|
4664 | -webkit-justify-content: flex-end;
|
4665 | -ms-flex-pack: end;
|
4666 | justify-content: flex-end; }
|
4667 | .row[justify-content-around] {
|
4668 | -webkit-justify-content: space-around;
|
4669 | -ms-flex-pack: distribute;
|
4670 | justify-content: space-around; }
|
4671 | .row[justify-content-between] {
|
4672 | -webkit-justify-content: space-between;
|
4673 | -ms-flex-pack: justify;
|
4674 | justify-content: space-between; }
|
4675 |
|
4676 | .col {
|
4677 | padding: 5px;
|
4678 | position: relative;
|
4679 | width: 100%;
|
4680 | margin: 0;
|
4681 | min-height: 1px;
|
4682 | -webkit-flex-basis: 0;
|
4683 | -ms-flex-preferred-size: 0;
|
4684 | flex-basis: 0;
|
4685 | -webkit-flex-grow: 1;
|
4686 | -ms-flex-positive: 1;
|
4687 | flex-grow: 1;
|
4688 | max-width: 100%; }
|
4689 | .col[align-self-start] {
|
4690 | -webkit-align-self: flex-start;
|
4691 | -ms-flex-item-align: start;
|
4692 | align-self: flex-start; }
|
4693 | .col[align-self-end] {
|
4694 | -webkit-align-self: flex-end;
|
4695 | -ms-flex-item-align: end;
|
4696 | align-self: flex-end; }
|
4697 | .col[align-self-center] {
|
4698 | -webkit-align-self: center;
|
4699 | -ms-flex-item-align: center;
|
4700 | -ms-grid-row-align: center;
|
4701 | align-self: center; }
|
4702 | .col[align-self-stretch] {
|
4703 | -webkit-align-self: stretch;
|
4704 | -ms-flex-item-align: stretch;
|
4705 | -ms-grid-row-align: stretch;
|
4706 | align-self: stretch; }
|
4707 | .col[align-self-baseline] {
|
4708 | -webkit-align-self: baseline;
|
4709 | -ms-flex-item-align: baseline;
|
4710 | align-self: baseline; }
|
4711 |
|
4712 | [col-1] {
|
4713 | padding: 5px; }
|
4714 | @media (min-width: 576px) {
|
4715 | [col-1] {
|
4716 | padding: 5px; } }
|
4717 | @media (min-width: 768px) {
|
4718 | [col-1] {
|
4719 | padding: 5px; } }
|
4720 | @media (min-width: 992px) {
|
4721 | [col-1] {
|
4722 | padding: 5px; } }
|
4723 | @media (min-width: 1200px) {
|
4724 | [col-1] {
|
4725 | padding: 5px; } }
|
4726 |
|
4727 | [col-2] {
|
4728 | padding: 5px; }
|
4729 | @media (min-width: 576px) {
|
4730 | [col-2] {
|
4731 | padding: 5px; } }
|
4732 | @media (min-width: 768px) {
|
4733 | [col-2] {
|
4734 | padding: 5px; } }
|
4735 | @media (min-width: 992px) {
|
4736 | [col-2] {
|
4737 | padding: 5px; } }
|
4738 | @media (min-width: 1200px) {
|
4739 | [col-2] {
|
4740 | padding: 5px; } }
|
4741 |
|
4742 | [col-3] {
|
4743 | padding: 5px; }
|
4744 | @media (min-width: 576px) {
|
4745 | [col-3] {
|
4746 | padding: 5px; } }
|
4747 | @media (min-width: 768px) {
|
4748 | [col-3] {
|
4749 | padding: 5px; } }
|
4750 | @media (min-width: 992px) {
|
4751 | [col-3] {
|
4752 | padding: 5px; } }
|
4753 | @media (min-width: 1200px) {
|
4754 | [col-3] {
|
4755 | padding: 5px; } }
|
4756 |
|
4757 | [col-4] {
|
4758 | padding: 5px; }
|
4759 | @media (min-width: 576px) {
|
4760 | [col-4] {
|
4761 | padding: 5px; } }
|
4762 | @media (min-width: 768px) {
|
4763 | [col-4] {
|
4764 | padding: 5px; } }
|
4765 | @media (min-width: 992px) {
|
4766 | [col-4] {
|
4767 | padding: 5px; } }
|
4768 | @media (min-width: 1200px) {
|
4769 | [col-4] {
|
4770 | padding: 5px; } }
|
4771 |
|
4772 | [col-5] {
|
4773 | padding: 5px; }
|
4774 | @media (min-width: 576px) {
|
4775 | [col-5] {
|
4776 | padding: 5px; } }
|
4777 | @media (min-width: 768px) {
|
4778 | [col-5] {
|
4779 | padding: 5px; } }
|
4780 | @media (min-width: 992px) {
|
4781 | [col-5] {
|
4782 | padding: 5px; } }
|
4783 | @media (min-width: 1200px) {
|
4784 | [col-5] {
|
4785 | padding: 5px; } }
|
4786 |
|
4787 | [col-6] {
|
4788 | padding: 5px; }
|
4789 | @media (min-width: 576px) {
|
4790 | [col-6] {
|
4791 | padding: 5px; } }
|
4792 | @media (min-width: 768px) {
|
4793 | [col-6] {
|
4794 | padding: 5px; } }
|
4795 | @media (min-width: 992px) {
|
4796 | [col-6] {
|
4797 | padding: 5px; } }
|
4798 | @media (min-width: 1200px) {
|
4799 | [col-6] {
|
4800 | padding: 5px; } }
|
4801 |
|
4802 | [col-7] {
|
4803 | padding: 5px; }
|
4804 | @media (min-width: 576px) {
|
4805 | [col-7] {
|
4806 | padding: 5px; } }
|
4807 | @media (min-width: 768px) {
|
4808 | [col-7] {
|
4809 | padding: 5px; } }
|
4810 | @media (min-width: 992px) {
|
4811 | [col-7] {
|
4812 | padding: 5px; } }
|
4813 | @media (min-width: 1200px) {
|
4814 | [col-7] {
|
4815 | padding: 5px; } }
|
4816 |
|
4817 | [col-8] {
|
4818 | padding: 5px; }
|
4819 | @media (min-width: 576px) {
|
4820 | [col-8] {
|
4821 | padding: 5px; } }
|
4822 | @media (min-width: 768px) {
|
4823 | [col-8] {
|
4824 | padding: 5px; } }
|
4825 | @media (min-width: 992px) {
|
4826 | [col-8] {
|
4827 | padding: 5px; } }
|
4828 | @media (min-width: 1200px) {
|
4829 | [col-8] {
|
4830 | padding: 5px; } }
|
4831 |
|
4832 | [col-9] {
|
4833 | padding: 5px; }
|
4834 | @media (min-width: 576px) {
|
4835 | [col-9] {
|
4836 | padding: 5px; } }
|
4837 | @media (min-width: 768px) {
|
4838 | [col-9] {
|
4839 | padding: 5px; } }
|
4840 | @media (min-width: 992px) {
|
4841 | [col-9] {
|
4842 | padding: 5px; } }
|
4843 | @media (min-width: 1200px) {
|
4844 | [col-9] {
|
4845 | padding: 5px; } }
|
4846 |
|
4847 | [col-10] {
|
4848 | padding: 5px; }
|
4849 | @media (min-width: 576px) {
|
4850 | [col-10] {
|
4851 | padding: 5px; } }
|
4852 | @media (min-width: 768px) {
|
4853 | [col-10] {
|
4854 | padding: 5px; } }
|
4855 | @media (min-width: 992px) {
|
4856 | [col-10] {
|
4857 | padding: 5px; } }
|
4858 | @media (min-width: 1200px) {
|
4859 | [col-10] {
|
4860 | padding: 5px; } }
|
4861 |
|
4862 | [col-11] {
|
4863 | padding: 5px; }
|
4864 | @media (min-width: 576px) {
|
4865 | [col-11] {
|
4866 | padding: 5px; } }
|
4867 | @media (min-width: 768px) {
|
4868 | [col-11] {
|
4869 | padding: 5px; } }
|
4870 | @media (min-width: 992px) {
|
4871 | [col-11] {
|
4872 | padding: 5px; } }
|
4873 | @media (min-width: 1200px) {
|
4874 | [col-11] {
|
4875 | padding: 5px; } }
|
4876 |
|
4877 | [col-12] {
|
4878 | padding: 5px; }
|
4879 | @media (min-width: 576px) {
|
4880 | [col-12] {
|
4881 | padding: 5px; } }
|
4882 | @media (min-width: 768px) {
|
4883 | [col-12] {
|
4884 | padding: 5px; } }
|
4885 | @media (min-width: 992px) {
|
4886 | [col-12] {
|
4887 | padding: 5px; } }
|
4888 | @media (min-width: 1200px) {
|
4889 | [col-12] {
|
4890 | padding: 5px; } }
|
4891 |
|
4892 | [col] {
|
4893 | padding: 5px; }
|
4894 | @media (min-width: 576px) {
|
4895 | [col] {
|
4896 | padding: 5px; } }
|
4897 | @media (min-width: 768px) {
|
4898 | [col] {
|
4899 | padding: 5px; } }
|
4900 | @media (min-width: 992px) {
|
4901 | [col] {
|
4902 | padding: 5px; } }
|
4903 | @media (min-width: 1200px) {
|
4904 | [col] {
|
4905 | padding: 5px; } }
|
4906 |
|
4907 | [col] {
|
4908 | -webkit-flex-basis: 0;
|
4909 | -ms-flex-preferred-size: 0;
|
4910 | flex-basis: 0;
|
4911 | -webkit-flex-grow: 1;
|
4912 | -ms-flex-positive: 1;
|
4913 | flex-grow: 1;
|
4914 | max-width: 100%; }
|
4915 |
|
4916 | [col-auto] {
|
4917 | -webkit-flex: 0 0 auto;
|
4918 | -ms-flex: 0 0 auto;
|
4919 | flex: 0 0 auto;
|
4920 | width: auto; }
|
4921 |
|
4922 | [col-1] {
|
4923 | -webkit-flex: 0 0 8.33333%;
|
4924 | -ms-flex: 0 0 8.33333%;
|
4925 | flex: 0 0 8.33333%;
|
4926 | width: 8.33333%;
|
4927 | max-width: 8.33333%; }
|
4928 |
|
4929 | [col-2] {
|
4930 | -webkit-flex: 0 0 16.66667%;
|
4931 | -ms-flex: 0 0 16.66667%;
|
4932 | flex: 0 0 16.66667%;
|
4933 | width: 16.66667%;
|
4934 | max-width: 16.66667%; }
|
4935 |
|
4936 | [col-3] {
|
4937 | -webkit-flex: 0 0 25%;
|
4938 | -ms-flex: 0 0 25%;
|
4939 | flex: 0 0 25%;
|
4940 | width: 25%;
|
4941 | max-width: 25%; }
|
4942 |
|
4943 | [col-4] {
|
4944 | -webkit-flex: 0 0 33.33333%;
|
4945 | -ms-flex: 0 0 33.33333%;
|
4946 | flex: 0 0 33.33333%;
|
4947 | width: 33.33333%;
|
4948 | max-width: 33.33333%; }
|
4949 |
|
4950 | [col-5] {
|
4951 | -webkit-flex: 0 0 41.66667%;
|
4952 | -ms-flex: 0 0 41.66667%;
|
4953 | flex: 0 0 41.66667%;
|
4954 | width: 41.66667%;
|
4955 | max-width: 41.66667%; }
|
4956 |
|
4957 | [col-6] {
|
4958 | -webkit-flex: 0 0 50%;
|
4959 | -ms-flex: 0 0 50%;
|
4960 | flex: 0 0 50%;
|
4961 | width: 50%;
|
4962 | max-width: 50%; }
|
4963 |
|
4964 | [col-7] {
|
4965 | -webkit-flex: 0 0 58.33333%;
|
4966 | -ms-flex: 0 0 58.33333%;
|
4967 | flex: 0 0 58.33333%;
|
4968 | width: 58.33333%;
|
4969 | max-width: 58.33333%; }
|
4970 |
|
4971 | [col-8] {
|
4972 | -webkit-flex: 0 0 66.66667%;
|
4973 | -ms-flex: 0 0 66.66667%;
|
4974 | flex: 0 0 66.66667%;
|
4975 | width: 66.66667%;
|
4976 | max-width: 66.66667%; }
|
4977 |
|
4978 | [col-9] {
|
4979 | -webkit-flex: 0 0 75%;
|
4980 | -ms-flex: 0 0 75%;
|
4981 | flex: 0 0 75%;
|
4982 | width: 75%;
|
4983 | max-width: 75%; }
|
4984 |
|
4985 | [col-10] {
|
4986 | -webkit-flex: 0 0 83.33333%;
|
4987 | -ms-flex: 0 0 83.33333%;
|
4988 | flex: 0 0 83.33333%;
|
4989 | width: 83.33333%;
|
4990 | max-width: 83.33333%; }
|
4991 |
|
4992 | [col-11] {
|
4993 | -webkit-flex: 0 0 91.66667%;
|
4994 | -ms-flex: 0 0 91.66667%;
|
4995 | flex: 0 0 91.66667%;
|
4996 | width: 91.66667%;
|
4997 | max-width: 91.66667%; }
|
4998 |
|
4999 | [col-12] {
|
5000 | -webkit-flex: 0 0 100%;
|
5001 | -ms-flex: 0 0 100%;
|
5002 | flex: 0 0 100%;
|
5003 | width: 100%;
|
5004 | max-width: 100%; }
|
5005 |
|
5006 | [pull-0] {
|
5007 | right: auto; }
|
5008 |
|
5009 | [pull-1] {
|
5010 | right: 8.33333%; }
|
5011 |
|
5012 | [pull-2] {
|
5013 | right: 16.66667%; }
|
5014 |
|
5015 | [pull-3] {
|
5016 | right: 25%; }
|
5017 |
|
5018 | [pull-4] {
|
5019 | right: 33.33333%; }
|
5020 |
|
5021 | [pull-5] {
|
5022 | right: 41.66667%; }
|
5023 |
|
5024 | [pull-6] {
|
5025 | right: 50%; }
|
5026 |
|
5027 | [pull-7] {
|
5028 | right: 58.33333%; }
|
5029 |
|
5030 | [pull-8] {
|
5031 | right: 66.66667%; }
|
5032 |
|
5033 | [pull-9] {
|
5034 | right: 75%; }
|
5035 |
|
5036 | [pull-10] {
|
5037 | right: 83.33333%; }
|
5038 |
|
5039 | [pull-11] {
|
5040 | right: 91.66667%; }
|
5041 |
|
5042 | [pull-12] {
|
5043 | right: 100%; }
|
5044 |
|
5045 | [push-0] {
|
5046 | left: auto; }
|
5047 |
|
5048 | [push-1] {
|
5049 | left: 8.33333%; }
|
5050 |
|
5051 | [push-2] {
|
5052 | left: 16.66667%; }
|
5053 |
|
5054 | [push-3] {
|
5055 | left: 25%; }
|
5056 |
|
5057 | [push-4] {
|
5058 | left: 33.33333%; }
|
5059 |
|
5060 | [push-5] {
|
5061 | left: 41.66667%; }
|
5062 |
|
5063 | [push-6] {
|
5064 | left: 50%; }
|
5065 |
|
5066 | [push-7] {
|
5067 | left: 58.33333%; }
|
5068 |
|
5069 | [push-8] {
|
5070 | left: 66.66667%; }
|
5071 |
|
5072 | [push-9] {
|
5073 | left: 75%; }
|
5074 |
|
5075 | [push-10] {
|
5076 | left: 83.33333%; }
|
5077 |
|
5078 | [push-11] {
|
5079 | left: 91.66667%; }
|
5080 |
|
5081 | [push-12] {
|
5082 | left: 100%; }
|
5083 |
|
5084 | [offset-1] {
|
5085 | margin-left: 8.33333%; }
|
5086 |
|
5087 | [offset-2] {
|
5088 | margin-left: 16.66667%; }
|
5089 |
|
5090 | [offset-3] {
|
5091 | margin-left: 25%; }
|
5092 |
|
5093 | [offset-4] {
|
5094 | margin-left: 33.33333%; }
|
5095 |
|
5096 | [offset-5] {
|
5097 | margin-left: 41.66667%; }
|
5098 |
|
5099 | [offset-6] {
|
5100 | margin-left: 50%; }
|
5101 |
|
5102 | [offset-7] {
|
5103 | margin-left: 58.33333%; }
|
5104 |
|
5105 | [offset-8] {
|
5106 | margin-left: 66.66667%; }
|
5107 |
|
5108 | [offset-9] {
|
5109 | margin-left: 75%; }
|
5110 |
|
5111 | [offset-10] {
|
5112 | margin-left: 83.33333%; }
|
5113 |
|
5114 | [offset-11] {
|
5115 | margin-left: 91.66667%; }
|
5116 |
|
5117 | [col-sm-1] {
|
5118 | padding: 5px; }
|
5119 | @media (min-width: 576px) {
|
5120 | [col-sm-1] {
|
5121 | padding: 5px; } }
|
5122 | @media (min-width: 768px) {
|
5123 | [col-sm-1] {
|
5124 | padding: 5px; } }
|
5125 | @media (min-width: 992px) {
|
5126 | [col-sm-1] {
|
5127 | padding: 5px; } }
|
5128 | @media (min-width: 1200px) {
|
5129 | [col-sm-1] {
|
5130 | padding: 5px; } }
|
5131 |
|
5132 | [col-sm-2] {
|
5133 | padding: 5px; }
|
5134 | @media (min-width: 576px) {
|
5135 | [col-sm-2] {
|
5136 | padding: 5px; } }
|
5137 | @media (min-width: 768px) {
|
5138 | [col-sm-2] {
|
5139 | padding: 5px; } }
|
5140 | @media (min-width: 992px) {
|
5141 | [col-sm-2] {
|
5142 | padding: 5px; } }
|
5143 | @media (min-width: 1200px) {
|
5144 | [col-sm-2] {
|
5145 | padding: 5px; } }
|
5146 |
|
5147 | [col-sm-3] {
|
5148 | padding: 5px; }
|
5149 | @media (min-width: 576px) {
|
5150 | [col-sm-3] {
|
5151 | padding: 5px; } }
|
5152 | @media (min-width: 768px) {
|
5153 | [col-sm-3] {
|
5154 | padding: 5px; } }
|
5155 | @media (min-width: 992px) {
|
5156 | [col-sm-3] {
|
5157 | padding: 5px; } }
|
5158 | @media (min-width: 1200px) {
|
5159 | [col-sm-3] {
|
5160 | padding: 5px; } }
|
5161 |
|
5162 | [col-sm-4] {
|
5163 | padding: 5px; }
|
5164 | @media (min-width: 576px) {
|
5165 | [col-sm-4] {
|
5166 | padding: 5px; } }
|
5167 | @media (min-width: 768px) {
|
5168 | [col-sm-4] {
|
5169 | padding: 5px; } }
|
5170 | @media (min-width: 992px) {
|
5171 | [col-sm-4] {
|
5172 | padding: 5px; } }
|
5173 | @media (min-width: 1200px) {
|
5174 | [col-sm-4] {
|
5175 | padding: 5px; } }
|
5176 |
|
5177 | [col-sm-5] {
|
5178 | padding: 5px; }
|
5179 | @media (min-width: 576px) {
|
5180 | [col-sm-5] {
|
5181 | padding: 5px; } }
|
5182 | @media (min-width: 768px) {
|
5183 | [col-sm-5] {
|
5184 | padding: 5px; } }
|
5185 | @media (min-width: 992px) {
|
5186 | [col-sm-5] {
|
5187 | padding: 5px; } }
|
5188 | @media (min-width: 1200px) {
|
5189 | [col-sm-5] {
|
5190 | padding: 5px; } }
|
5191 |
|
5192 | [col-sm-6] {
|
5193 | padding: 5px; }
|
5194 | @media (min-width: 576px) {
|
5195 | [col-sm-6] {
|
5196 | padding: 5px; } }
|
5197 | @media (min-width: 768px) {
|
5198 | [col-sm-6] {
|
5199 | padding: 5px; } }
|
5200 | @media (min-width: 992px) {
|
5201 | [col-sm-6] {
|
5202 | padding: 5px; } }
|
5203 | @media (min-width: 1200px) {
|
5204 | [col-sm-6] {
|
5205 | padding: 5px; } }
|
5206 |
|
5207 | [col-sm-7] {
|
5208 | padding: 5px; }
|
5209 | @media (min-width: 576px) {
|
5210 | [col-sm-7] {
|
5211 | padding: 5px; } }
|
5212 | @media (min-width: 768px) {
|
5213 | [col-sm-7] {
|
5214 | padding: 5px; } }
|
5215 | @media (min-width: 992px) {
|
5216 | [col-sm-7] {
|
5217 | padding: 5px; } }
|
5218 | @media (min-width: 1200px) {
|
5219 | [col-sm-7] {
|
5220 | padding: 5px; } }
|
5221 |
|
5222 | [col-sm-8] {
|
5223 | padding: 5px; }
|
5224 | @media (min-width: 576px) {
|
5225 | [col-sm-8] {
|
5226 | padding: 5px; } }
|
5227 | @media (min-width: 768px) {
|
5228 | [col-sm-8] {
|
5229 | padding: 5px; } }
|
5230 | @media (min-width: 992px) {
|
5231 | [col-sm-8] {
|
5232 | padding: 5px; } }
|
5233 | @media (min-width: 1200px) {
|
5234 | [col-sm-8] {
|
5235 | padding: 5px; } }
|
5236 |
|
5237 | [col-sm-9] {
|
5238 | padding: 5px; }
|
5239 | @media (min-width: 576px) {
|
5240 | [col-sm-9] {
|
5241 | padding: 5px; } }
|
5242 | @media (min-width: 768px) {
|
5243 | [col-sm-9] {
|
5244 | padding: 5px; } }
|
5245 | @media (min-width: 992px) {
|
5246 | [col-sm-9] {
|
5247 | padding: 5px; } }
|
5248 | @media (min-width: 1200px) {
|
5249 | [col-sm-9] {
|
5250 | padding: 5px; } }
|
5251 |
|
5252 | [col-sm-10] {
|
5253 | padding: 5px; }
|
5254 | @media (min-width: 576px) {
|
5255 | [col-sm-10] {
|
5256 | padding: 5px; } }
|
5257 | @media (min-width: 768px) {
|
5258 | [col-sm-10] {
|
5259 | padding: 5px; } }
|
5260 | @media (min-width: 992px) {
|
5261 | [col-sm-10] {
|
5262 | padding: 5px; } }
|
5263 | @media (min-width: 1200px) {
|
5264 | [col-sm-10] {
|
5265 | padding: 5px; } }
|
5266 |
|
5267 | [col-sm-11] {
|
5268 | padding: 5px; }
|
5269 | @media (min-width: 576px) {
|
5270 | [col-sm-11] {
|
5271 | padding: 5px; } }
|
5272 | @media (min-width: 768px) {
|
5273 | [col-sm-11] {
|
5274 | padding: 5px; } }
|
5275 | @media (min-width: 992px) {
|
5276 | [col-sm-11] {
|
5277 | padding: 5px; } }
|
5278 | @media (min-width: 1200px) {
|
5279 | [col-sm-11] {
|
5280 | padding: 5px; } }
|
5281 |
|
5282 | [col-sm-12] {
|
5283 | padding: 5px; }
|
5284 | @media (min-width: 576px) {
|
5285 | [col-sm-12] {
|
5286 | padding: 5px; } }
|
5287 | @media (min-width: 768px) {
|
5288 | [col-sm-12] {
|
5289 | padding: 5px; } }
|
5290 | @media (min-width: 992px) {
|
5291 | [col-sm-12] {
|
5292 | padding: 5px; } }
|
5293 | @media (min-width: 1200px) {
|
5294 | [col-sm-12] {
|
5295 | padding: 5px; } }
|
5296 |
|
5297 | [col-sm] {
|
5298 | padding: 5px; }
|
5299 | @media (min-width: 576px) {
|
5300 | [col-sm] {
|
5301 | padding: 5px; } }
|
5302 | @media (min-width: 768px) {
|
5303 | [col-sm] {
|
5304 | padding: 5px; } }
|
5305 | @media (min-width: 992px) {
|
5306 | [col-sm] {
|
5307 | padding: 5px; } }
|
5308 | @media (min-width: 1200px) {
|
5309 | [col-sm] {
|
5310 | padding: 5px; } }
|
5311 |
|
5312 | @media (min-width: 576px) {
|
5313 | [col-sm] {
|
5314 | -webkit-flex-basis: 0;
|
5315 | -ms-flex-preferred-size: 0;
|
5316 | flex-basis: 0;
|
5317 | -webkit-flex-grow: 1;
|
5318 | -ms-flex-positive: 1;
|
5319 | flex-grow: 1;
|
5320 | max-width: 100%; }
|
5321 | [col-sm-auto] {
|
5322 | -webkit-flex: 0 0 auto;
|
5323 | -ms-flex: 0 0 auto;
|
5324 | flex: 0 0 auto;
|
5325 | width: auto; }
|
5326 | [col-sm-1] {
|
5327 | -webkit-flex: 0 0 8.33333%;
|
5328 | -ms-flex: 0 0 8.33333%;
|
5329 | flex: 0 0 8.33333%;
|
5330 | width: 8.33333%;
|
5331 | max-width: 8.33333%; }
|
5332 | [col-sm-2] {
|
5333 | -webkit-flex: 0 0 16.66667%;
|
5334 | -ms-flex: 0 0 16.66667%;
|
5335 | flex: 0 0 16.66667%;
|
5336 | width: 16.66667%;
|
5337 | max-width: 16.66667%; }
|
5338 | [col-sm-3] {
|
5339 | -webkit-flex: 0 0 25%;
|
5340 | -ms-flex: 0 0 25%;
|
5341 | flex: 0 0 25%;
|
5342 | width: 25%;
|
5343 | max-width: 25%; }
|
5344 | [col-sm-4] {
|
5345 | -webkit-flex: 0 0 33.33333%;
|
5346 | -ms-flex: 0 0 33.33333%;
|
5347 | flex: 0 0 33.33333%;
|
5348 | width: 33.33333%;
|
5349 | max-width: 33.33333%; }
|
5350 | [col-sm-5] {
|
5351 | -webkit-flex: 0 0 41.66667%;
|
5352 | -ms-flex: 0 0 41.66667%;
|
5353 | flex: 0 0 41.66667%;
|
5354 | width: 41.66667%;
|
5355 | max-width: 41.66667%; }
|
5356 | [col-sm-6] {
|
5357 | -webkit-flex: 0 0 50%;
|
5358 | -ms-flex: 0 0 50%;
|
5359 | flex: 0 0 50%;
|
5360 | width: 50%;
|
5361 | max-width: 50%; }
|
5362 | [col-sm-7] {
|
5363 | -webkit-flex: 0 0 58.33333%;
|
5364 | -ms-flex: 0 0 58.33333%;
|
5365 | flex: 0 0 58.33333%;
|
5366 | width: 58.33333%;
|
5367 | max-width: 58.33333%; }
|
5368 | [col-sm-8] {
|
5369 | -webkit-flex: 0 0 66.66667%;
|
5370 | -ms-flex: 0 0 66.66667%;
|
5371 | flex: 0 0 66.66667%;
|
5372 | width: 66.66667%;
|
5373 | max-width: 66.66667%; }
|
5374 | [col-sm-9] {
|
5375 | -webkit-flex: 0 0 75%;
|
5376 | -ms-flex: 0 0 75%;
|
5377 | flex: 0 0 75%;
|
5378 | width: 75%;
|
5379 | max-width: 75%; }
|
5380 | [col-sm-10] {
|
5381 | -webkit-flex: 0 0 83.33333%;
|
5382 | -ms-flex: 0 0 83.33333%;
|
5383 | flex: 0 0 83.33333%;
|
5384 | width: 83.33333%;
|
5385 | max-width: 83.33333%; }
|
5386 | [col-sm-11] {
|
5387 | -webkit-flex: 0 0 91.66667%;
|
5388 | -ms-flex: 0 0 91.66667%;
|
5389 | flex: 0 0 91.66667%;
|
5390 | width: 91.66667%;
|
5391 | max-width: 91.66667%; }
|
5392 | [col-sm-12] {
|
5393 | -webkit-flex: 0 0 100%;
|
5394 | -ms-flex: 0 0 100%;
|
5395 | flex: 0 0 100%;
|
5396 | width: 100%;
|
5397 | max-width: 100%; }
|
5398 | [pull-sm-0] {
|
5399 | right: auto; }
|
5400 | [pull-sm-1] {
|
5401 | right: 8.33333%; }
|
5402 | [pull-sm-2] {
|
5403 | right: 16.66667%; }
|
5404 | [pull-sm-3] {
|
5405 | right: 25%; }
|
5406 | [pull-sm-4] {
|
5407 | right: 33.33333%; }
|
5408 | [pull-sm-5] {
|
5409 | right: 41.66667%; }
|
5410 | [pull-sm-6] {
|
5411 | right: 50%; }
|
5412 | [pull-sm-7] {
|
5413 | right: 58.33333%; }
|
5414 | [pull-sm-8] {
|
5415 | right: 66.66667%; }
|
5416 | [pull-sm-9] {
|
5417 | right: 75%; }
|
5418 | [pull-sm-10] {
|
5419 | right: 83.33333%; }
|
5420 | [pull-sm-11] {
|
5421 | right: 91.66667%; }
|
5422 | [pull-sm-12] {
|
5423 | right: 100%; }
|
5424 | [push-sm-0] {
|
5425 | left: auto; }
|
5426 | [push-sm-1] {
|
5427 | left: 8.33333%; }
|
5428 | [push-sm-2] {
|
5429 | left: 16.66667%; }
|
5430 | [push-sm-3] {
|
5431 | left: 25%; }
|
5432 | [push-sm-4] {
|
5433 | left: 33.33333%; }
|
5434 | [push-sm-5] {
|
5435 | left: 41.66667%; }
|
5436 | [push-sm-6] {
|
5437 | left: 50%; }
|
5438 | [push-sm-7] {
|
5439 | left: 58.33333%; }
|
5440 | [push-sm-8] {
|
5441 | left: 66.66667%; }
|
5442 | [push-sm-9] {
|
5443 | left: 75%; }
|
5444 | [push-sm-10] {
|
5445 | left: 83.33333%; }
|
5446 | [push-sm-11] {
|
5447 | left: 91.66667%; }
|
5448 | [push-sm-12] {
|
5449 | left: 100%; }
|
5450 | [offset-sm-0] {
|
5451 | margin-left: 0%; }
|
5452 | [offset-sm-1] {
|
5453 | margin-left: 8.33333%; }
|
5454 | [offset-sm-2] {
|
5455 | margin-left: 16.66667%; }
|
5456 | [offset-sm-3] {
|
5457 | margin-left: 25%; }
|
5458 | [offset-sm-4] {
|
5459 | margin-left: 33.33333%; }
|
5460 | [offset-sm-5] {
|
5461 | margin-left: 41.66667%; }
|
5462 | [offset-sm-6] {
|
5463 | margin-left: 50%; }
|
5464 | [offset-sm-7] {
|
5465 | margin-left: 58.33333%; }
|
5466 | [offset-sm-8] {
|
5467 | margin-left: 66.66667%; }
|
5468 | [offset-sm-9] {
|
5469 | margin-left: 75%; }
|
5470 | [offset-sm-10] {
|
5471 | margin-left: 83.33333%; }
|
5472 | [offset-sm-11] {
|
5473 | margin-left: 91.66667%; } }
|
5474 |
|
5475 | [col-md-1] {
|
5476 | padding: 5px; }
|
5477 | @media (min-width: 576px) {
|
5478 | [col-md-1] {
|
5479 | padding: 5px; } }
|
5480 | @media (min-width: 768px) {
|
5481 | [col-md-1] {
|
5482 | padding: 5px; } }
|
5483 | @media (min-width: 992px) {
|
5484 | [col-md-1] {
|
5485 | padding: 5px; } }
|
5486 | @media (min-width: 1200px) {
|
5487 | [col-md-1] {
|
5488 | padding: 5px; } }
|
5489 |
|
5490 | [col-md-2] {
|
5491 | padding: 5px; }
|
5492 | @media (min-width: 576px) {
|
5493 | [col-md-2] {
|
5494 | padding: 5px; } }
|
5495 | @media (min-width: 768px) {
|
5496 | [col-md-2] {
|
5497 | padding: 5px; } }
|
5498 | @media (min-width: 992px) {
|
5499 | [col-md-2] {
|
5500 | padding: 5px; } }
|
5501 | @media (min-width: 1200px) {
|
5502 | [col-md-2] {
|
5503 | padding: 5px; } }
|
5504 |
|
5505 | [col-md-3] {
|
5506 | padding: 5px; }
|
5507 | @media (min-width: 576px) {
|
5508 | [col-md-3] {
|
5509 | padding: 5px; } }
|
5510 | @media (min-width: 768px) {
|
5511 | [col-md-3] {
|
5512 | padding: 5px; } }
|
5513 | @media (min-width: 992px) {
|
5514 | [col-md-3] {
|
5515 | padding: 5px; } }
|
5516 | @media (min-width: 1200px) {
|
5517 | [col-md-3] {
|
5518 | padding: 5px; } }
|
5519 |
|
5520 | [col-md-4] {
|
5521 | padding: 5px; }
|
5522 | @media (min-width: 576px) {
|
5523 | [col-md-4] {
|
5524 | padding: 5px; } }
|
5525 | @media (min-width: 768px) {
|
5526 | [col-md-4] {
|
5527 | padding: 5px; } }
|
5528 | @media (min-width: 992px) {
|
5529 | [col-md-4] {
|
5530 | padding: 5px; } }
|
5531 | @media (min-width: 1200px) {
|
5532 | [col-md-4] {
|
5533 | padding: 5px; } }
|
5534 |
|
5535 | [col-md-5] {
|
5536 | padding: 5px; }
|
5537 | @media (min-width: 576px) {
|
5538 | [col-md-5] {
|
5539 | padding: 5px; } }
|
5540 | @media (min-width: 768px) {
|
5541 | [col-md-5] {
|
5542 | padding: 5px; } }
|
5543 | @media (min-width: 992px) {
|
5544 | [col-md-5] {
|
5545 | padding: 5px; } }
|
5546 | @media (min-width: 1200px) {
|
5547 | [col-md-5] {
|
5548 | padding: 5px; } }
|
5549 |
|
5550 | [col-md-6] {
|
5551 | padding: 5px; }
|
5552 | @media (min-width: 576px) {
|
5553 | [col-md-6] {
|
5554 | padding: 5px; } }
|
5555 | @media (min-width: 768px) {
|
5556 | [col-md-6] {
|
5557 | padding: 5px; } }
|
5558 | @media (min-width: 992px) {
|
5559 | [col-md-6] {
|
5560 | padding: 5px; } }
|
5561 | @media (min-width: 1200px) {
|
5562 | [col-md-6] {
|
5563 | padding: 5px; } }
|
5564 |
|
5565 | [col-md-7] {
|
5566 | padding: 5px; }
|
5567 | @media (min-width: 576px) {
|
5568 | [col-md-7] {
|
5569 | padding: 5px; } }
|
5570 | @media (min-width: 768px) {
|
5571 | [col-md-7] {
|
5572 | padding: 5px; } }
|
5573 | @media (min-width: 992px) {
|
5574 | [col-md-7] {
|
5575 | padding: 5px; } }
|
5576 | @media (min-width: 1200px) {
|
5577 | [col-md-7] {
|
5578 | padding: 5px; } }
|
5579 |
|
5580 | [col-md-8] {
|
5581 | padding: 5px; }
|
5582 | @media (min-width: 576px) {
|
5583 | [col-md-8] {
|
5584 | padding: 5px; } }
|
5585 | @media (min-width: 768px) {
|
5586 | [col-md-8] {
|
5587 | padding: 5px; } }
|
5588 | @media (min-width: 992px) {
|
5589 | [col-md-8] {
|
5590 | padding: 5px; } }
|
5591 | @media (min-width: 1200px) {
|
5592 | [col-md-8] {
|
5593 | padding: 5px; } }
|
5594 |
|
5595 | [col-md-9] {
|
5596 | padding: 5px; }
|
5597 | @media (min-width: 576px) {
|
5598 | [col-md-9] {
|
5599 | padding: 5px; } }
|
5600 | @media (min-width: 768px) {
|
5601 | [col-md-9] {
|
5602 | padding: 5px; } }
|
5603 | @media (min-width: 992px) {
|
5604 | [col-md-9] {
|
5605 | padding: 5px; } }
|
5606 | @media (min-width: 1200px) {
|
5607 | [col-md-9] {
|
5608 | padding: 5px; } }
|
5609 |
|
5610 | [col-md-10] {
|
5611 | padding: 5px; }
|
5612 | @media (min-width: 576px) {
|
5613 | [col-md-10] {
|
5614 | padding: 5px; } }
|
5615 | @media (min-width: 768px) {
|
5616 | [col-md-10] {
|
5617 | padding: 5px; } }
|
5618 | @media (min-width: 992px) {
|
5619 | [col-md-10] {
|
5620 | padding: 5px; } }
|
5621 | @media (min-width: 1200px) {
|
5622 | [col-md-10] {
|
5623 | padding: 5px; } }
|
5624 |
|
5625 | [col-md-11] {
|
5626 | padding: 5px; }
|
5627 | @media (min-width: 576px) {
|
5628 | [col-md-11] {
|
5629 | padding: 5px; } }
|
5630 | @media (min-width: 768px) {
|
5631 | [col-md-11] {
|
5632 | padding: 5px; } }
|
5633 | @media (min-width: 992px) {
|
5634 | [col-md-11] {
|
5635 | padding: 5px; } }
|
5636 | @media (min-width: 1200px) {
|
5637 | [col-md-11] {
|
5638 | padding: 5px; } }
|
5639 |
|
5640 | [col-md-12] {
|
5641 | padding: 5px; }
|
5642 | @media (min-width: 576px) {
|
5643 | [col-md-12] {
|
5644 | padding: 5px; } }
|
5645 | @media (min-width: 768px) {
|
5646 | [col-md-12] {
|
5647 | padding: 5px; } }
|
5648 | @media (min-width: 992px) {
|
5649 | [col-md-12] {
|
5650 | padding: 5px; } }
|
5651 | @media (min-width: 1200px) {
|
5652 | [col-md-12] {
|
5653 | padding: 5px; } }
|
5654 |
|
5655 | [col-md] {
|
5656 | padding: 5px; }
|
5657 | @media (min-width: 576px) {
|
5658 | [col-md] {
|
5659 | padding: 5px; } }
|
5660 | @media (min-width: 768px) {
|
5661 | [col-md] {
|
5662 | padding: 5px; } }
|
5663 | @media (min-width: 992px) {
|
5664 | [col-md] {
|
5665 | padding: 5px; } }
|
5666 | @media (min-width: 1200px) {
|
5667 | [col-md] {
|
5668 | padding: 5px; } }
|
5669 |
|
5670 | @media (min-width: 768px) {
|
5671 | [col-md] {
|
5672 | -webkit-flex-basis: 0;
|
5673 | -ms-flex-preferred-size: 0;
|
5674 | flex-basis: 0;
|
5675 | -webkit-flex-grow: 1;
|
5676 | -ms-flex-positive: 1;
|
5677 | flex-grow: 1;
|
5678 | max-width: 100%; }
|
5679 | [col-md-auto] {
|
5680 | -webkit-flex: 0 0 auto;
|
5681 | -ms-flex: 0 0 auto;
|
5682 | flex: 0 0 auto;
|
5683 | width: auto; }
|
5684 | [col-md-1] {
|
5685 | -webkit-flex: 0 0 8.33333%;
|
5686 | -ms-flex: 0 0 8.33333%;
|
5687 | flex: 0 0 8.33333%;
|
5688 | width: 8.33333%;
|
5689 | max-width: 8.33333%; }
|
5690 | [col-md-2] {
|
5691 | -webkit-flex: 0 0 16.66667%;
|
5692 | -ms-flex: 0 0 16.66667%;
|
5693 | flex: 0 0 16.66667%;
|
5694 | width: 16.66667%;
|
5695 | max-width: 16.66667%; }
|
5696 | [col-md-3] {
|
5697 | -webkit-flex: 0 0 25%;
|
5698 | -ms-flex: 0 0 25%;
|
5699 | flex: 0 0 25%;
|
5700 | width: 25%;
|
5701 | max-width: 25%; }
|
5702 | [col-md-4] {
|
5703 | -webkit-flex: 0 0 33.33333%;
|
5704 | -ms-flex: 0 0 33.33333%;
|
5705 | flex: 0 0 33.33333%;
|
5706 | width: 33.33333%;
|
5707 | max-width: 33.33333%; }
|
5708 | [col-md-5] {
|
5709 | -webkit-flex: 0 0 41.66667%;
|
5710 | -ms-flex: 0 0 41.66667%;
|
5711 | flex: 0 0 41.66667%;
|
5712 | width: 41.66667%;
|
5713 | max-width: 41.66667%; }
|
5714 | [col-md-6] {
|
5715 | -webkit-flex: 0 0 50%;
|
5716 | -ms-flex: 0 0 50%;
|
5717 | flex: 0 0 50%;
|
5718 | width: 50%;
|
5719 | max-width: 50%; }
|
5720 | [col-md-7] {
|
5721 | -webkit-flex: 0 0 58.33333%;
|
5722 | -ms-flex: 0 0 58.33333%;
|
5723 | flex: 0 0 58.33333%;
|
5724 | width: 58.33333%;
|
5725 | max-width: 58.33333%; }
|
5726 | [col-md-8] {
|
5727 | -webkit-flex: 0 0 66.66667%;
|
5728 | -ms-flex: 0 0 66.66667%;
|
5729 | flex: 0 0 66.66667%;
|
5730 | width: 66.66667%;
|
5731 | max-width: 66.66667%; }
|
5732 | [col-md-9] {
|
5733 | -webkit-flex: 0 0 75%;
|
5734 | -ms-flex: 0 0 75%;
|
5735 | flex: 0 0 75%;
|
5736 | width: 75%;
|
5737 | max-width: 75%; }
|
5738 | [col-md-10] {
|
5739 | -webkit-flex: 0 0 83.33333%;
|
5740 | -ms-flex: 0 0 83.33333%;
|
5741 | flex: 0 0 83.33333%;
|
5742 | width: 83.33333%;
|
5743 | max-width: 83.33333%; }
|
5744 | [col-md-11] {
|
5745 | -webkit-flex: 0 0 91.66667%;
|
5746 | -ms-flex: 0 0 91.66667%;
|
5747 | flex: 0 0 91.66667%;
|
5748 | width: 91.66667%;
|
5749 | max-width: 91.66667%; }
|
5750 | [col-md-12] {
|
5751 | -webkit-flex: 0 0 100%;
|
5752 | -ms-flex: 0 0 100%;
|
5753 | flex: 0 0 100%;
|
5754 | width: 100%;
|
5755 | max-width: 100%; }
|
5756 | [pull-md-0] {
|
5757 | right: auto; }
|
5758 | [pull-md-1] {
|
5759 | right: 8.33333%; }
|
5760 | [pull-md-2] {
|
5761 | right: 16.66667%; }
|
5762 | [pull-md-3] {
|
5763 | right: 25%; }
|
5764 | [pull-md-4] {
|
5765 | right: 33.33333%; }
|
5766 | [pull-md-5] {
|
5767 | right: 41.66667%; }
|
5768 | [pull-md-6] {
|
5769 | right: 50%; }
|
5770 | [pull-md-7] {
|
5771 | right: 58.33333%; }
|
5772 | [pull-md-8] {
|
5773 | right: 66.66667%; }
|
5774 | [pull-md-9] {
|
5775 | right: 75%; }
|
5776 | [pull-md-10] {
|
5777 | right: 83.33333%; }
|
5778 | [pull-md-11] {
|
5779 | right: 91.66667%; }
|
5780 | [pull-md-12] {
|
5781 | right: 100%; }
|
5782 | [push-md-0] {
|
5783 | left: auto; }
|
5784 | [push-md-1] {
|
5785 | left: 8.33333%; }
|
5786 | [push-md-2] {
|
5787 | left: 16.66667%; }
|
5788 | [push-md-3] {
|
5789 | left: 25%; }
|
5790 | [push-md-4] {
|
5791 | left: 33.33333%; }
|
5792 | [push-md-5] {
|
5793 | left: 41.66667%; }
|
5794 | [push-md-6] {
|
5795 | left: 50%; }
|
5796 | [push-md-7] {
|
5797 | left: 58.33333%; }
|
5798 | [push-md-8] {
|
5799 | left: 66.66667%; }
|
5800 | [push-md-9] {
|
5801 | left: 75%; }
|
5802 | [push-md-10] {
|
5803 | left: 83.33333%; }
|
5804 | [push-md-11] {
|
5805 | left: 91.66667%; }
|
5806 | [push-md-12] {
|
5807 | left: 100%; }
|
5808 | [offset-md-0] {
|
5809 | margin-left: 0%; }
|
5810 | [offset-md-1] {
|
5811 | margin-left: 8.33333%; }
|
5812 | [offset-md-2] {
|
5813 | margin-left: 16.66667%; }
|
5814 | [offset-md-3] {
|
5815 | margin-left: 25%; }
|
5816 | [offset-md-4] {
|
5817 | margin-left: 33.33333%; }
|
5818 | [offset-md-5] {
|
5819 | margin-left: 41.66667%; }
|
5820 | [offset-md-6] {
|
5821 | margin-left: 50%; }
|
5822 | [offset-md-7] {
|
5823 | margin-left: 58.33333%; }
|
5824 | [offset-md-8] {
|
5825 | margin-left: 66.66667%; }
|
5826 | [offset-md-9] {
|
5827 | margin-left: 75%; }
|
5828 | [offset-md-10] {
|
5829 | margin-left: 83.33333%; }
|
5830 | [offset-md-11] {
|
5831 | margin-left: 91.66667%; } }
|
5832 |
|
5833 | [col-lg-1] {
|
5834 | padding: 5px; }
|
5835 | @media (min-width: 576px) {
|
5836 | [col-lg-1] {
|
5837 | padding: 5px; } }
|
5838 | @media (min-width: 768px) {
|
5839 | [col-lg-1] {
|
5840 | padding: 5px; } }
|
5841 | @media (min-width: 992px) {
|
5842 | [col-lg-1] {
|
5843 | padding: 5px; } }
|
5844 | @media (min-width: 1200px) {
|
5845 | [col-lg-1] {
|
5846 | padding: 5px; } }
|
5847 |
|
5848 | [col-lg-2] {
|
5849 | padding: 5px; }
|
5850 | @media (min-width: 576px) {
|
5851 | [col-lg-2] {
|
5852 | padding: 5px; } }
|
5853 | @media (min-width: 768px) {
|
5854 | [col-lg-2] {
|
5855 | padding: 5px; } }
|
5856 | @media (min-width: 992px) {
|
5857 | [col-lg-2] {
|
5858 | padding: 5px; } }
|
5859 | @media (min-width: 1200px) {
|
5860 | [col-lg-2] {
|
5861 | padding: 5px; } }
|
5862 |
|
5863 | [col-lg-3] {
|
5864 | padding: 5px; }
|
5865 | @media (min-width: 576px) {
|
5866 | [col-lg-3] {
|
5867 | padding: 5px; } }
|
5868 | @media (min-width: 768px) {
|
5869 | [col-lg-3] {
|
5870 | padding: 5px; } }
|
5871 | @media (min-width: 992px) {
|
5872 | [col-lg-3] {
|
5873 | padding: 5px; } }
|
5874 | @media (min-width: 1200px) {
|
5875 | [col-lg-3] {
|
5876 | padding: 5px; } }
|
5877 |
|
5878 | [col-lg-4] {
|
5879 | padding: 5px; }
|
5880 | @media (min-width: 576px) {
|
5881 | [col-lg-4] {
|
5882 | padding: 5px; } }
|
5883 | @media (min-width: 768px) {
|
5884 | [col-lg-4] {
|
5885 | padding: 5px; } }
|
5886 | @media (min-width: 992px) {
|
5887 | [col-lg-4] {
|
5888 | padding: 5px; } }
|
5889 | @media (min-width: 1200px) {
|
5890 | [col-lg-4] {
|
5891 | padding: 5px; } }
|
5892 |
|
5893 | [col-lg-5] {
|
5894 | padding: 5px; }
|
5895 | @media (min-width: 576px) {
|
5896 | [col-lg-5] {
|
5897 | padding: 5px; } }
|
5898 | @media (min-width: 768px) {
|
5899 | [col-lg-5] {
|
5900 | padding: 5px; } }
|
5901 | @media (min-width: 992px) {
|
5902 | [col-lg-5] {
|
5903 | padding: 5px; } }
|
5904 | @media (min-width: 1200px) {
|
5905 | [col-lg-5] {
|
5906 | padding: 5px; } }
|
5907 |
|
5908 | [col-lg-6] {
|
5909 | padding: 5px; }
|
5910 | @media (min-width: 576px) {
|
5911 | [col-lg-6] {
|
5912 | padding: 5px; } }
|
5913 | @media (min-width: 768px) {
|
5914 | [col-lg-6] {
|
5915 | padding: 5px; } }
|
5916 | @media (min-width: 992px) {
|
5917 | [col-lg-6] {
|
5918 | padding: 5px; } }
|
5919 | @media (min-width: 1200px) {
|
5920 | [col-lg-6] {
|
5921 | padding: 5px; } }
|
5922 |
|
5923 | [col-lg-7] {
|
5924 | padding: 5px; }
|
5925 | @media (min-width: 576px) {
|
5926 | [col-lg-7] {
|
5927 | padding: 5px; } }
|
5928 | @media (min-width: 768px) {
|
5929 | [col-lg-7] {
|
5930 | padding: 5px; } }
|
5931 | @media (min-width: 992px) {
|
5932 | [col-lg-7] {
|
5933 | padding: 5px; } }
|
5934 | @media (min-width: 1200px) {
|
5935 | [col-lg-7] {
|
5936 | padding: 5px; } }
|
5937 |
|
5938 | [col-lg-8] {
|
5939 | padding: 5px; }
|
5940 | @media (min-width: 576px) {
|
5941 | [col-lg-8] {
|
5942 | padding: 5px; } }
|
5943 | @media (min-width: 768px) {
|
5944 | [col-lg-8] {
|
5945 | padding: 5px; } }
|
5946 | @media (min-width: 992px) {
|
5947 | [col-lg-8] {
|
5948 | padding: 5px; } }
|
5949 | @media (min-width: 1200px) {
|
5950 | [col-lg-8] {
|
5951 | padding: 5px; } }
|
5952 |
|
5953 | [col-lg-9] {
|
5954 | padding: 5px; }
|
5955 | @media (min-width: 576px) {
|
5956 | [col-lg-9] {
|
5957 | padding: 5px; } }
|
5958 | @media (min-width: 768px) {
|
5959 | [col-lg-9] {
|
5960 | padding: 5px; } }
|
5961 | @media (min-width: 992px) {
|
5962 | [col-lg-9] {
|
5963 | padding: 5px; } }
|
5964 | @media (min-width: 1200px) {
|
5965 | [col-lg-9] {
|
5966 | padding: 5px; } }
|
5967 |
|
5968 | [col-lg-10] {
|
5969 | padding: 5px; }
|
5970 | @media (min-width: 576px) {
|
5971 | [col-lg-10] {
|
5972 | padding: 5px; } }
|
5973 | @media (min-width: 768px) {
|
5974 | [col-lg-10] {
|
5975 | padding: 5px; } }
|
5976 | @media (min-width: 992px) {
|
5977 | [col-lg-10] {
|
5978 | padding: 5px; } }
|
5979 | @media (min-width: 1200px) {
|
5980 | [col-lg-10] {
|
5981 | padding: 5px; } }
|
5982 |
|
5983 | [col-lg-11] {
|
5984 | padding: 5px; }
|
5985 | @media (min-width: 576px) {
|
5986 | [col-lg-11] {
|
5987 | padding: 5px; } }
|
5988 | @media (min-width: 768px) {
|
5989 | [col-lg-11] {
|
5990 | padding: 5px; } }
|
5991 | @media (min-width: 992px) {
|
5992 | [col-lg-11] {
|
5993 | padding: 5px; } }
|
5994 | @media (min-width: 1200px) {
|
5995 | [col-lg-11] {
|
5996 | padding: 5px; } }
|
5997 |
|
5998 | [col-lg-12] {
|
5999 | padding: 5px; }
|
6000 | @media (min-width: 576px) {
|
6001 | [col-lg-12] {
|
6002 | padding: 5px; } }
|
6003 | @media (min-width: 768px) {
|
6004 | [col-lg-12] {
|
6005 | padding: 5px; } }
|
6006 | @media (min-width: 992px) {
|
6007 | [col-lg-12] {
|
6008 | padding: 5px; } }
|
6009 | @media (min-width: 1200px) {
|
6010 | [col-lg-12] {
|
6011 | padding: 5px; } }
|
6012 |
|
6013 | [col-lg] {
|
6014 | padding: 5px; }
|
6015 | @media (min-width: 576px) {
|
6016 | [col-lg] {
|
6017 | padding: 5px; } }
|
6018 | @media (min-width: 768px) {
|
6019 | [col-lg] {
|
6020 | padding: 5px; } }
|
6021 | @media (min-width: 992px) {
|
6022 | [col-lg] {
|
6023 | padding: 5px; } }
|
6024 | @media (min-width: 1200px) {
|
6025 | [col-lg] {
|
6026 | padding: 5px; } }
|
6027 |
|
6028 | @media (min-width: 992px) {
|
6029 | [col-lg] {
|
6030 | -webkit-flex-basis: 0;
|
6031 | -ms-flex-preferred-size: 0;
|
6032 | flex-basis: 0;
|
6033 | -webkit-flex-grow: 1;
|
6034 | -ms-flex-positive: 1;
|
6035 | flex-grow: 1;
|
6036 | max-width: 100%; }
|
6037 | [col-lg-auto] {
|
6038 | -webkit-flex: 0 0 auto;
|
6039 | -ms-flex: 0 0 auto;
|
6040 | flex: 0 0 auto;
|
6041 | width: auto; }
|
6042 | [col-lg-1] {
|
6043 | -webkit-flex: 0 0 8.33333%;
|
6044 | -ms-flex: 0 0 8.33333%;
|
6045 | flex: 0 0 8.33333%;
|
6046 | width: 8.33333%;
|
6047 | max-width: 8.33333%; }
|
6048 | [col-lg-2] {
|
6049 | -webkit-flex: 0 0 16.66667%;
|
6050 | -ms-flex: 0 0 16.66667%;
|
6051 | flex: 0 0 16.66667%;
|
6052 | width: 16.66667%;
|
6053 | max-width: 16.66667%; }
|
6054 | [col-lg-3] {
|
6055 | -webkit-flex: 0 0 25%;
|
6056 | -ms-flex: 0 0 25%;
|
6057 | flex: 0 0 25%;
|
6058 | width: 25%;
|
6059 | max-width: 25%; }
|
6060 | [col-lg-4] {
|
6061 | -webkit-flex: 0 0 33.33333%;
|
6062 | -ms-flex: 0 0 33.33333%;
|
6063 | flex: 0 0 33.33333%;
|
6064 | width: 33.33333%;
|
6065 | max-width: 33.33333%; }
|
6066 | [col-lg-5] {
|
6067 | -webkit-flex: 0 0 41.66667%;
|
6068 | -ms-flex: 0 0 41.66667%;
|
6069 | flex: 0 0 41.66667%;
|
6070 | width: 41.66667%;
|
6071 | max-width: 41.66667%; }
|
6072 | [col-lg-6] {
|
6073 | -webkit-flex: 0 0 50%;
|
6074 | -ms-flex: 0 0 50%;
|
6075 | flex: 0 0 50%;
|
6076 | width: 50%;
|
6077 | max-width: 50%; }
|
6078 | [col-lg-7] {
|
6079 | -webkit-flex: 0 0 58.33333%;
|
6080 | -ms-flex: 0 0 58.33333%;
|
6081 | flex: 0 0 58.33333%;
|
6082 | width: 58.33333%;
|
6083 | max-width: 58.33333%; }
|
6084 | [col-lg-8] {
|
6085 | -webkit-flex: 0 0 66.66667%;
|
6086 | -ms-flex: 0 0 66.66667%;
|
6087 | flex: 0 0 66.66667%;
|
6088 | width: 66.66667%;
|
6089 | max-width: 66.66667%; }
|
6090 | [col-lg-9] {
|
6091 | -webkit-flex: 0 0 75%;
|
6092 | -ms-flex: 0 0 75%;
|
6093 | flex: 0 0 75%;
|
6094 | width: 75%;
|
6095 | max-width: 75%; }
|
6096 | [col-lg-10] {
|
6097 | -webkit-flex: 0 0 83.33333%;
|
6098 | -ms-flex: 0 0 83.33333%;
|
6099 | flex: 0 0 83.33333%;
|
6100 | width: 83.33333%;
|
6101 | max-width: 83.33333%; }
|
6102 | [col-lg-11] {
|
6103 | -webkit-flex: 0 0 91.66667%;
|
6104 | -ms-flex: 0 0 91.66667%;
|
6105 | flex: 0 0 91.66667%;
|
6106 | width: 91.66667%;
|
6107 | max-width: 91.66667%; }
|
6108 | [col-lg-12] {
|
6109 | -webkit-flex: 0 0 100%;
|
6110 | -ms-flex: 0 0 100%;
|
6111 | flex: 0 0 100%;
|
6112 | width: 100%;
|
6113 | max-width: 100%; }
|
6114 | [pull-lg-0] {
|
6115 | right: auto; }
|
6116 | [pull-lg-1] {
|
6117 | right: 8.33333%; }
|
6118 | [pull-lg-2] {
|
6119 | right: 16.66667%; }
|
6120 | [pull-lg-3] {
|
6121 | right: 25%; }
|
6122 | [pull-lg-4] {
|
6123 | right: 33.33333%; }
|
6124 | [pull-lg-5] {
|
6125 | right: 41.66667%; }
|
6126 | [pull-lg-6] {
|
6127 | right: 50%; }
|
6128 | [pull-lg-7] {
|
6129 | right: 58.33333%; }
|
6130 | [pull-lg-8] {
|
6131 | right: 66.66667%; }
|
6132 | [pull-lg-9] {
|
6133 | right: 75%; }
|
6134 | [pull-lg-10] {
|
6135 | right: 83.33333%; }
|
6136 | [pull-lg-11] {
|
6137 | right: 91.66667%; }
|
6138 | [pull-lg-12] {
|
6139 | right: 100%; }
|
6140 | [push-lg-0] {
|
6141 | left: auto; }
|
6142 | [push-lg-1] {
|
6143 | left: 8.33333%; }
|
6144 | [push-lg-2] {
|
6145 | left: 16.66667%; }
|
6146 | [push-lg-3] {
|
6147 | left: 25%; }
|
6148 | [push-lg-4] {
|
6149 | left: 33.33333%; }
|
6150 | [push-lg-5] {
|
6151 | left: 41.66667%; }
|
6152 | [push-lg-6] {
|
6153 | left: 50%; }
|
6154 | [push-lg-7] {
|
6155 | left: 58.33333%; }
|
6156 | [push-lg-8] {
|
6157 | left: 66.66667%; }
|
6158 | [push-lg-9] {
|
6159 | left: 75%; }
|
6160 | [push-lg-10] {
|
6161 | left: 83.33333%; }
|
6162 | [push-lg-11] {
|
6163 | left: 91.66667%; }
|
6164 | [push-lg-12] {
|
6165 | left: 100%; }
|
6166 | [offset-lg-0] {
|
6167 | margin-left: 0%; }
|
6168 | [offset-lg-1] {
|
6169 | margin-left: 8.33333%; }
|
6170 | [offset-lg-2] {
|
6171 | margin-left: 16.66667%; }
|
6172 | [offset-lg-3] {
|
6173 | margin-left: 25%; }
|
6174 | [offset-lg-4] {
|
6175 | margin-left: 33.33333%; }
|
6176 | [offset-lg-5] {
|
6177 | margin-left: 41.66667%; }
|
6178 | [offset-lg-6] {
|
6179 | margin-left: 50%; }
|
6180 | [offset-lg-7] {
|
6181 | margin-left: 58.33333%; }
|
6182 | [offset-lg-8] {
|
6183 | margin-left: 66.66667%; }
|
6184 | [offset-lg-9] {
|
6185 | margin-left: 75%; }
|
6186 | [offset-lg-10] {
|
6187 | margin-left: 83.33333%; }
|
6188 | [offset-lg-11] {
|
6189 | margin-left: 91.66667%; } }
|
6190 |
|
6191 | [col-xl-1] {
|
6192 | padding: 5px; }
|
6193 | @media (min-width: 576px) {
|
6194 | [col-xl-1] {
|
6195 | padding: 5px; } }
|
6196 | @media (min-width: 768px) {
|
6197 | [col-xl-1] {
|
6198 | padding: 5px; } }
|
6199 | @media (min-width: 992px) {
|
6200 | [col-xl-1] {
|
6201 | padding: 5px; } }
|
6202 | @media (min-width: 1200px) {
|
6203 | [col-xl-1] {
|
6204 | padding: 5px; } }
|
6205 |
|
6206 | [col-xl-2] {
|
6207 | padding: 5px; }
|
6208 | @media (min-width: 576px) {
|
6209 | [col-xl-2] {
|
6210 | padding: 5px; } }
|
6211 | @media (min-width: 768px) {
|
6212 | [col-xl-2] {
|
6213 | padding: 5px; } }
|
6214 | @media (min-width: 992px) {
|
6215 | [col-xl-2] {
|
6216 | padding: 5px; } }
|
6217 | @media (min-width: 1200px) {
|
6218 | [col-xl-2] {
|
6219 | padding: 5px; } }
|
6220 |
|
6221 | [col-xl-3] {
|
6222 | padding: 5px; }
|
6223 | @media (min-width: 576px) {
|
6224 | [col-xl-3] {
|
6225 | padding: 5px; } }
|
6226 | @media (min-width: 768px) {
|
6227 | [col-xl-3] {
|
6228 | padding: 5px; } }
|
6229 | @media (min-width: 992px) {
|
6230 | [col-xl-3] {
|
6231 | padding: 5px; } }
|
6232 | @media (min-width: 1200px) {
|
6233 | [col-xl-3] {
|
6234 | padding: 5px; } }
|
6235 |
|
6236 | [col-xl-4] {
|
6237 | padding: 5px; }
|
6238 | @media (min-width: 576px) {
|
6239 | [col-xl-4] {
|
6240 | padding: 5px; } }
|
6241 | @media (min-width: 768px) {
|
6242 | [col-xl-4] {
|
6243 | padding: 5px; } }
|
6244 | @media (min-width: 992px) {
|
6245 | [col-xl-4] {
|
6246 | padding: 5px; } }
|
6247 | @media (min-width: 1200px) {
|
6248 | [col-xl-4] {
|
6249 | padding: 5px; } }
|
6250 |
|
6251 | [col-xl-5] {
|
6252 | padding: 5px; }
|
6253 | @media (min-width: 576px) {
|
6254 | [col-xl-5] {
|
6255 | padding: 5px; } }
|
6256 | @media (min-width: 768px) {
|
6257 | [col-xl-5] {
|
6258 | padding: 5px; } }
|
6259 | @media (min-width: 992px) {
|
6260 | [col-xl-5] {
|
6261 | padding: 5px; } }
|
6262 | @media (min-width: 1200px) {
|
6263 | [col-xl-5] {
|
6264 | padding: 5px; } }
|
6265 |
|
6266 | [col-xl-6] {
|
6267 | padding: 5px; }
|
6268 | @media (min-width: 576px) {
|
6269 | [col-xl-6] {
|
6270 | padding: 5px; } }
|
6271 | @media (min-width: 768px) {
|
6272 | [col-xl-6] {
|
6273 | padding: 5px; } }
|
6274 | @media (min-width: 992px) {
|
6275 | [col-xl-6] {
|
6276 | padding: 5px; } }
|
6277 | @media (min-width: 1200px) {
|
6278 | [col-xl-6] {
|
6279 | padding: 5px; } }
|
6280 |
|
6281 | [col-xl-7] {
|
6282 | padding: 5px; }
|
6283 | @media (min-width: 576px) {
|
6284 | [col-xl-7] {
|
6285 | padding: 5px; } }
|
6286 | @media (min-width: 768px) {
|
6287 | [col-xl-7] {
|
6288 | padding: 5px; } }
|
6289 | @media (min-width: 992px) {
|
6290 | [col-xl-7] {
|
6291 | padding: 5px; } }
|
6292 | @media (min-width: 1200px) {
|
6293 | [col-xl-7] {
|
6294 | padding: 5px; } }
|
6295 |
|
6296 | [col-xl-8] {
|
6297 | padding: 5px; }
|
6298 | @media (min-width: 576px) {
|
6299 | [col-xl-8] {
|
6300 | padding: 5px; } }
|
6301 | @media (min-width: 768px) {
|
6302 | [col-xl-8] {
|
6303 | padding: 5px; } }
|
6304 | @media (min-width: 992px) {
|
6305 | [col-xl-8] {
|
6306 | padding: 5px; } }
|
6307 | @media (min-width: 1200px) {
|
6308 | [col-xl-8] {
|
6309 | padding: 5px; } }
|
6310 |
|
6311 | [col-xl-9] {
|
6312 | padding: 5px; }
|
6313 | @media (min-width: 576px) {
|
6314 | [col-xl-9] {
|
6315 | padding: 5px; } }
|
6316 | @media (min-width: 768px) {
|
6317 | [col-xl-9] {
|
6318 | padding: 5px; } }
|
6319 | @media (min-width: 992px) {
|
6320 | [col-xl-9] {
|
6321 | padding: 5px; } }
|
6322 | @media (min-width: 1200px) {
|
6323 | [col-xl-9] {
|
6324 | padding: 5px; } }
|
6325 |
|
6326 | [col-xl-10] {
|
6327 | padding: 5px; }
|
6328 | @media (min-width: 576px) {
|
6329 | [col-xl-10] {
|
6330 | padding: 5px; } }
|
6331 | @media (min-width: 768px) {
|
6332 | [col-xl-10] {
|
6333 | padding: 5px; } }
|
6334 | @media (min-width: 992px) {
|
6335 | [col-xl-10] {
|
6336 | padding: 5px; } }
|
6337 | @media (min-width: 1200px) {
|
6338 | [col-xl-10] {
|
6339 | padding: 5px; } }
|
6340 |
|
6341 | [col-xl-11] {
|
6342 | padding: 5px; }
|
6343 | @media (min-width: 576px) {
|
6344 | [col-xl-11] {
|
6345 | padding: 5px; } }
|
6346 | @media (min-width: 768px) {
|
6347 | [col-xl-11] {
|
6348 | padding: 5px; } }
|
6349 | @media (min-width: 992px) {
|
6350 | [col-xl-11] {
|
6351 | padding: 5px; } }
|
6352 | @media (min-width: 1200px) {
|
6353 | [col-xl-11] {
|
6354 | padding: 5px; } }
|
6355 |
|
6356 | [col-xl-12] {
|
6357 | padding: 5px; }
|
6358 | @media (min-width: 576px) {
|
6359 | [col-xl-12] {
|
6360 | padding: 5px; } }
|
6361 | @media (min-width: 768px) {
|
6362 | [col-xl-12] {
|
6363 | padding: 5px; } }
|
6364 | @media (min-width: 992px) {
|
6365 | [col-xl-12] {
|
6366 | padding: 5px; } }
|
6367 | @media (min-width: 1200px) {
|
6368 | [col-xl-12] {
|
6369 | padding: 5px; } }
|
6370 |
|
6371 | [col-xl] {
|
6372 | padding: 5px; }
|
6373 | @media (min-width: 576px) {
|
6374 | [col-xl] {
|
6375 | padding: 5px; } }
|
6376 | @media (min-width: 768px) {
|
6377 | [col-xl] {
|
6378 | padding: 5px; } }
|
6379 | @media (min-width: 992px) {
|
6380 | [col-xl] {
|
6381 | padding: 5px; } }
|
6382 | @media (min-width: 1200px) {
|
6383 | [col-xl] {
|
6384 | padding: 5px; } }
|
6385 |
|
6386 | @media (min-width: 1200px) {
|
6387 | [col-xl] {
|
6388 | -webkit-flex-basis: 0;
|
6389 | -ms-flex-preferred-size: 0;
|
6390 | flex-basis: 0;
|
6391 | -webkit-flex-grow: 1;
|
6392 | -ms-flex-positive: 1;
|
6393 | flex-grow: 1;
|
6394 | max-width: 100%; }
|
6395 | [col-xl-auto] {
|
6396 | -webkit-flex: 0 0 auto;
|
6397 | -ms-flex: 0 0 auto;
|
6398 | flex: 0 0 auto;
|
6399 | width: auto; }
|
6400 | [col-xl-1] {
|
6401 | -webkit-flex: 0 0 8.33333%;
|
6402 | -ms-flex: 0 0 8.33333%;
|
6403 | flex: 0 0 8.33333%;
|
6404 | width: 8.33333%;
|
6405 | max-width: 8.33333%; }
|
6406 | [col-xl-2] {
|
6407 | -webkit-flex: 0 0 16.66667%;
|
6408 | -ms-flex: 0 0 16.66667%;
|
6409 | flex: 0 0 16.66667%;
|
6410 | width: 16.66667%;
|
6411 | max-width: 16.66667%; }
|
6412 | [col-xl-3] {
|
6413 | -webkit-flex: 0 0 25%;
|
6414 | -ms-flex: 0 0 25%;
|
6415 | flex: 0 0 25%;
|
6416 | width: 25%;
|
6417 | max-width: 25%; }
|
6418 | [col-xl-4] {
|
6419 | -webkit-flex: 0 0 33.33333%;
|
6420 | -ms-flex: 0 0 33.33333%;
|
6421 | flex: 0 0 33.33333%;
|
6422 | width: 33.33333%;
|
6423 | max-width: 33.33333%; }
|
6424 | [col-xl-5] {
|
6425 | -webkit-flex: 0 0 41.66667%;
|
6426 | -ms-flex: 0 0 41.66667%;
|
6427 | flex: 0 0 41.66667%;
|
6428 | width: 41.66667%;
|
6429 | max-width: 41.66667%; }
|
6430 | [col-xl-6] {
|
6431 | -webkit-flex: 0 0 50%;
|
6432 | -ms-flex: 0 0 50%;
|
6433 | flex: 0 0 50%;
|
6434 | width: 50%;
|
6435 | max-width: 50%; }
|
6436 | [col-xl-7] {
|
6437 | -webkit-flex: 0 0 58.33333%;
|
6438 | -ms-flex: 0 0 58.33333%;
|
6439 | flex: 0 0 58.33333%;
|
6440 | width: 58.33333%;
|
6441 | max-width: 58.33333%; }
|
6442 | [col-xl-8] {
|
6443 | -webkit-flex: 0 0 66.66667%;
|
6444 | -ms-flex: 0 0 66.66667%;
|
6445 | flex: 0 0 66.66667%;
|
6446 | width: 66.66667%;
|
6447 | max-width: 66.66667%; }
|
6448 | [col-xl-9] {
|
6449 | -webkit-flex: 0 0 75%;
|
6450 | -ms-flex: 0 0 75%;
|
6451 | flex: 0 0 75%;
|
6452 | width: 75%;
|
6453 | max-width: 75%; }
|
6454 | [col-xl-10] {
|
6455 | -webkit-flex: 0 0 83.33333%;
|
6456 | -ms-flex: 0 0 83.33333%;
|
6457 | flex: 0 0 83.33333%;
|
6458 | width: 83.33333%;
|
6459 | max-width: 83.33333%; }
|
6460 | [col-xl-11] {
|
6461 | -webkit-flex: 0 0 91.66667%;
|
6462 | -ms-flex: 0 0 91.66667%;
|
6463 | flex: 0 0 91.66667%;
|
6464 | width: 91.66667%;
|
6465 | max-width: 91.66667%; }
|
6466 | [col-xl-12] {
|
6467 | -webkit-flex: 0 0 100%;
|
6468 | -ms-flex: 0 0 100%;
|
6469 | flex: 0 0 100%;
|
6470 | width: 100%;
|
6471 | max-width: 100%; }
|
6472 | [pull-xl-0] {
|
6473 | right: auto; }
|
6474 | [pull-xl-1] {
|
6475 | right: 8.33333%; }
|
6476 | [pull-xl-2] {
|
6477 | right: 16.66667%; }
|
6478 | [pull-xl-3] {
|
6479 | right: 25%; }
|
6480 | [pull-xl-4] {
|
6481 | right: 33.33333%; }
|
6482 | [pull-xl-5] {
|
6483 | right: 41.66667%; }
|
6484 | [pull-xl-6] {
|
6485 | right: 50%; }
|
6486 | [pull-xl-7] {
|
6487 | right: 58.33333%; }
|
6488 | [pull-xl-8] {
|
6489 | right: 66.66667%; }
|
6490 | [pull-xl-9] {
|
6491 | right: 75%; }
|
6492 | [pull-xl-10] {
|
6493 | right: 83.33333%; }
|
6494 | [pull-xl-11] {
|
6495 | right: 91.66667%; }
|
6496 | [pull-xl-12] {
|
6497 | right: 100%; }
|
6498 | [push-xl-0] {
|
6499 | left: auto; }
|
6500 | [push-xl-1] {
|
6501 | left: 8.33333%; }
|
6502 | [push-xl-2] {
|
6503 | left: 16.66667%; }
|
6504 | [push-xl-3] {
|
6505 | left: 25%; }
|
6506 | [push-xl-4] {
|
6507 | left: 33.33333%; }
|
6508 | [push-xl-5] {
|
6509 | left: 41.66667%; }
|
6510 | [push-xl-6] {
|
6511 | left: 50%; }
|
6512 | [push-xl-7] {
|
6513 | left: 58.33333%; }
|
6514 | [push-xl-8] {
|
6515 | left: 66.66667%; }
|
6516 | [push-xl-9] {
|
6517 | left: 75%; }
|
6518 | [push-xl-10] {
|
6519 | left: 83.33333%; }
|
6520 | [push-xl-11] {
|
6521 | left: 91.66667%; }
|
6522 | [push-xl-12] {
|
6523 | left: 100%; }
|
6524 | [offset-xl-0] {
|
6525 | margin-left: 0%; }
|
6526 | [offset-xl-1] {
|
6527 | margin-left: 8.33333%; }
|
6528 | [offset-xl-2] {
|
6529 | margin-left: 16.66667%; }
|
6530 | [offset-xl-3] {
|
6531 | margin-left: 25%; }
|
6532 | [offset-xl-4] {
|
6533 | margin-left: 33.33333%; }
|
6534 | [offset-xl-5] {
|
6535 | margin-left: 41.66667%; }
|
6536 | [offset-xl-6] {
|
6537 | margin-left: 50%; }
|
6538 | [offset-xl-7] {
|
6539 | margin-left: 58.33333%; }
|
6540 | [offset-xl-8] {
|
6541 | margin-left: 66.66667%; }
|
6542 | [offset-xl-9] {
|
6543 | margin-left: 75%; }
|
6544 | [offset-xl-10] {
|
6545 | margin-left: 83.33333%; }
|
6546 | [offset-xl-11] {
|
6547 | margin-left: 91.66667%; } }
|
6548 |
|
6549 | ion-icon {
|
6550 | display: inline-block;
|
6551 | font-size: 1.2em; }
|
6552 |
|
6553 | ion-icon[small] {
|
6554 | min-height: 1.1em;
|
6555 | font-size: 1.1em; }
|
6556 |
|
6557 | .icon-ios-primary {
|
6558 | color: #007aff; }
|
6559 |
|
6560 | .icon-ios-secondary {
|
6561 | color: #32db64; }
|
6562 |
|
6563 | .icon-ios-danger {
|
6564 | color: #d91e18; }
|
6565 |
|
6566 | .icon-ios-light {
|
6567 | color: #f4f4f4; }
|
6568 |
|
6569 | .icon-ios-dark {
|
6570 | color: #222; }
|
6571 |
|
6572 | .icon-md-primary {
|
6573 | color: #007aff; }
|
6574 |
|
6575 | .icon-md-secondary {
|
6576 | color: #32db64; }
|
6577 |
|
6578 | .icon-md-danger {
|
6579 | color: #d91e18; }
|
6580 |
|
6581 | .icon-md-light {
|
6582 | color: #f4f4f4; }
|
6583 |
|
6584 | .icon-md-dark {
|
6585 | color: #222; }
|
6586 |
|
6587 | .icon-wp-primary {
|
6588 | color: #007aff; }
|
6589 |
|
6590 | .icon-wp-secondary {
|
6591 | color: #32db64; }
|
6592 |
|
6593 | .icon-wp-danger {
|
6594 | color: #d91e18; }
|
6595 |
|
6596 | .icon-wp-light {
|
6597 | color: #f4f4f4; }
|
6598 |
|
6599 | .icon-wp-dark {
|
6600 | color: #222; }
|
6601 |
|
6602 | ion-img {
|
6603 | display: inline-block;
|
6604 | min-width: 20px;
|
6605 | min-height: 20px;
|
6606 | background: #eee;
|
6607 | contain: strict; }
|
6608 |
|
6609 | ion-img img {
|
6610 | object-fit: cover; }
|
6611 |
|
6612 | ion-img.img-unloaded img {
|
6613 | display: none; }
|
6614 |
|
6615 | ion-img.img-loaded img {
|
6616 | display: block; }
|
6617 |
|
6618 | ion-infinite-scroll {
|
6619 | display: block;
|
6620 | width: 100%; }
|
6621 |
|
6622 | ion-infinite-scroll-content {
|
6623 | text-align: center;
|
6624 | display: -webkit-flex;
|
6625 | display: -ms-flexbox;
|
6626 | display: flex;
|
6627 | -webkit-flex-direction: column;
|
6628 | -ms-flex-direction: column;
|
6629 | flex-direction: column;
|
6630 | -webkit-justify-content: center;
|
6631 | -ms-flex-pack: center;
|
6632 | justify-content: center;
|
6633 | height: 100%;
|
6634 | min-height: 84px; }
|
6635 |
|
6636 | .infinite-loading {
|
6637 | display: none;
|
6638 | width: 100%;
|
6639 | margin: 0 0 32px; }
|
6640 |
|
6641 | .infinite-loading-text {
|
6642 | color: #666;
|
6643 | margin: 4px 32px 0; }
|
6644 |
|
6645 | .infinite-loading-spinner .spinner-ios line,
|
6646 | .infinite-loading-spinner .spinner-ios-small line,
|
6647 | .infinite-loading-spinner .spinner-crescent circle {
|
6648 | stroke: #666; }
|
6649 |
|
6650 | .infinite-loading-spinner .spinner-bubbles circle,
|
6651 | .infinite-loading-spinner .spinner-circles circle,
|
6652 | .infinite-loading-spinner .spinner-dots circle {
|
6653 | fill: #666; }
|
6654 |
|
6655 | ion-infinite-scroll-content[state=loading] .infinite-loading {
|
6656 | display: block; }
|
6657 |
|
6658 | ion-infinite-scroll-content[state=disabled] {
|
6659 | display: none; }
|
6660 |
|
6661 | ion-input,
|
6662 | ion-textarea {
|
6663 | position: relative;
|
6664 | display: block;
|
6665 | -webkit-flex: 1;
|
6666 | -ms-flex: 1;
|
6667 | flex: 1;
|
6668 | width: 100%; }
|
6669 |
|
6670 | .item-input ion-input,
|
6671 | .item-input ion-textarea {
|
6672 | position: static; }
|
6673 |
|
6674 | .item.item-textarea {
|
6675 | -webkit-align-items: stretch;
|
6676 | -ms-flex-align: stretch;
|
6677 | align-items: stretch; }
|
6678 |
|
6679 | .text-input {
|
6680 | -moz-appearance: none;
|
6681 | -ms-appearance: none;
|
6682 | -webkit-appearance: none;
|
6683 | appearance: none;
|
6684 | border-radius: 0;
|
6685 | display: inline-block;
|
6686 | -webkit-flex: 1;
|
6687 | -ms-flex: 1;
|
6688 | flex: 1;
|
6689 | width: 92%;
|
6690 | width: calc(100% - 10px);
|
6691 | border: 0;
|
6692 | background: transparent; }
|
6693 | .text-input::-moz-placeholder {
|
6694 | color: #999; }
|
6695 | .text-input:-ms-input-placeholder {
|
6696 | color: #999; }
|
6697 | .text-input::-webkit-input-placeholder {
|
6698 | text-indent: 0;
|
6699 | color: #999; }
|
6700 |
|
6701 | textarea.text-input {
|
6702 | display: block; }
|
6703 |
|
6704 | .text-input[disabled] {
|
6705 | opacity: .4; }
|
6706 |
|
6707 | input.text-input:-webkit-autofill {
|
6708 | background-color: transparent; }
|
6709 |
|
6710 | .platform-mobile textarea.text-input {
|
6711 | resize: none; }
|
6712 |
|
6713 | .input-cover {
|
6714 | left: 0;
|
6715 | top: 0;
|
6716 | position: absolute;
|
6717 | width: 100%;
|
6718 | height: 100%;
|
6719 | -ms-touch-action: manipulation;
|
6720 | touch-action: manipulation; }
|
6721 |
|
6722 | .input[disabled] .input-cover {
|
6723 | pointer-events: none; }
|
6724 |
|
6725 | .item-input-has-focus .input-cover,
|
6726 | .input-has-focus .input-cover {
|
6727 | display: none; }
|
6728 |
|
6729 | .item-input-has-focus,
|
6730 | .input-has-focus {
|
6731 | pointer-events: none; }
|
6732 |
|
6733 | .item-input-has-focus input,
|
6734 | .input-has-focus input,
|
6735 | .item-input-has-focus textarea,
|
6736 | .input-has-focus textarea,
|
6737 | .item-input-has-focus a,
|
6738 | .input-has-focus a,
|
6739 | .item-input-has-focus button,
|
6740 | .input-has-focus button {
|
6741 | pointer-events: auto; }
|
6742 |
|
6743 | .text-input-clear-icon {
|
6744 | margin: 0;
|
6745 | padding: 0;
|
6746 | background-position: center;
|
6747 | position: absolute;
|
6748 | top: 0;
|
6749 | display: none;
|
6750 | height: 100%;
|
6751 | background-repeat: no-repeat; }
|
6752 |
|
6753 | .item-input-has-focus.item-input-has-value .text-input-clear-icon,
|
6754 | .input-has-focus.input-has-value .text-input-clear-icon {
|
6755 | display: block; }
|
6756 |
|
6757 | .text-input-ios {
|
6758 | margin: 11px 8px 11px 0;
|
6759 | padding: 0;
|
6760 | width: calc(100% - 8px); }
|
6761 |
|
6762 | .input-ios .inset-input {
|
6763 | padding: 5.5px 8px;
|
6764 | margin: 5.5px 16px 5.5px 0; }
|
6765 |
|
6766 | .item-ios.item-label-stacked .text-input,
|
6767 | .item-ios.item-label-floating .text-input {
|
6768 | margin-left: 0;
|
6769 | margin-top: 8px;
|
6770 | margin-bottom: 8px;
|
6771 | width: calc(100% - 8px); }
|
6772 |
|
6773 | .item-ios.item-label-stacked .label-ios + .input + .cloned-input,
|
6774 | .item-ios.item-label-floating .label-ios + .input + .cloned-input {
|
6775 | margin-left: 0; }
|
6776 |
|
6777 | .item-label-stacked .select-ios,
|
6778 | .item-label-floating .select-ios {
|
6779 | padding-left: 0;
|
6780 | padding-top: 8px;
|
6781 | padding-bottom: 8px; }
|
6782 |
|
6783 | .input-ios[clearInput] {
|
6784 | position: relative; }
|
6785 |
|
6786 | .input-ios[clearInput] .text-input {
|
6787 | padding-right: 30px; }
|
6788 |
|
6789 | .input-ios .text-input-clear-icon {
|
6790 | right: 8px;
|
6791 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
|
6792 | width: 30px;
|
6793 | background-size: 18px; }
|
6794 |
|
6795 | .text-input-md {
|
6796 | margin: 13px 8px;
|
6797 | padding: 0;
|
6798 | width: calc(100% - 8px - 8px); }
|
6799 |
|
6800 | .input-md .inset-input {
|
6801 | padding: 6.5px 8px;
|
6802 | margin: 6.5px 16px; }
|
6803 |
|
6804 | .item-md.item-input.item-input-has-focus .item-inner,
|
6805 | .item-md.item-input.input-has-focus .item-inner {
|
6806 | border-bottom-color: #007aff;
|
6807 | box-shadow: inset 0 -1px 0 0 #007aff; }
|
6808 |
|
6809 | .list-md .item-input.item-input-has-focus:last-child,
|
6810 | .list-md .item-input.input-has-focus:last-child {
|
6811 | border-bottom-color: #007aff;
|
6812 | box-shadow: inset 0 -1px 0 0 #007aff; }
|
6813 | .list-md .item-input.item-input-has-focus:last-child .item-inner,
|
6814 | .list-md .item-input.input-has-focus:last-child .item-inner {
|
6815 | box-shadow: none; }
|
6816 |
|
6817 | .item-md.item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner,
|
6818 | .item-md.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
|
6819 | border-bottom-color: #32db64;
|
6820 | box-shadow: inset 0 -1px 0 0 #32db64; }
|
6821 |
|
6822 | .list-md .item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child,
|
6823 | .list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child {
|
6824 | border-bottom-color: #32db64;
|
6825 | box-shadow: inset 0 -1px 0 0 #32db64; }
|
6826 | .list-md .item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner,
|
6827 | .list-md .item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner {
|
6828 | box-shadow: none; }
|
6829 |
|
6830 | .item-md.item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus) .item-inner {
|
6831 | border-bottom-color: #f53d3d;
|
6832 | box-shadow: inset 0 -1px 0 0 #f53d3d; }
|
6833 |
|
6834 | .list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus):last-child {
|
6835 | border-bottom-color: #f53d3d;
|
6836 | box-shadow: inset 0 -1px 0 0 #f53d3d; }
|
6837 | .list-md .item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus):last-child .item-inner {
|
6838 | box-shadow: none; }
|
6839 |
|
6840 | .item-label-stacked .text-input-md,
|
6841 | .item-label-floating .text-input-md {
|
6842 | margin-left: 0;
|
6843 | margin-top: 8px;
|
6844 | margin-bottom: 8px;
|
6845 | width: calc(100% - 8px); }
|
6846 |
|
6847 | .item-label-stacked .select-md,
|
6848 | .item-label-floating .select-md {
|
6849 | padding-left: 0;
|
6850 | padding-top: 8px;
|
6851 | padding-bottom: 8px; }
|
6852 |
|
6853 | .input-md[clearInput] {
|
6854 | position: relative; }
|
6855 |
|
6856 | .input-md[clearInput] .text-input {
|
6857 | padding-right: 30px; }
|
6858 |
|
6859 | .input-md .text-input-clear-icon {
|
6860 | right: 8px;
|
6861 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%235b5b5b'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
|
6862 | width: 30px;
|
6863 | background-size: 22px; }
|
6864 |
|
6865 | .text-input-wp {
|
6866 | margin: 13px 8px;
|
6867 | padding: 0 8px;
|
6868 | width: calc(100% - 8px - 8px);
|
6869 | border: 2px solid rgba(0, 0, 0, 0.5);
|
6870 | line-height: 3rem; }
|
6871 |
|
6872 | .item-wp .inset-input {
|
6873 | padding: 6.5px 8px;
|
6874 | margin: 6.5px 16px; }
|
6875 |
|
6876 | .item-wp.item-input.item-input-has-focus .text-input,
|
6877 | .item-wp.item-input.input-has-focus .text-input {
|
6878 | border-color: #007aff; }
|
6879 |
|
6880 | .item-wp.item-input.ng-valid.item-input-has-value:not(.input-has-focus):not(.item-input-has-focus) .text-input,
|
6881 | .item-wp.item-input.ng-valid.input-has-value:not(.input-has-focus):not(.item-input-has-focus) .text-input {
|
6882 | border-color: #32db64; }
|
6883 |
|
6884 | .item-wp.item-input.ng-invalid.ng-touched:not(.input-has-focus):not(.item-input-has-focus) .text-input {
|
6885 | border-color: #f53d3d; }
|
6886 |
|
6887 | .item-label-stacked .text-input-wp,
|
6888 | .item-label-floating .text-input-wp,
|
6889 | .item-label-stacked .select-wp,
|
6890 | .item-label-floating .select-wp {
|
6891 | margin-left: 0;
|
6892 | margin-top: 8px;
|
6893 | margin-bottom: 8px;
|
6894 | width: calc(100% - 8px); }
|
6895 |
|
6896 | .item-wp.item-label-stacked [item-right],
|
6897 | .item-wp.item-label-floating [item-right],
|
6898 | .item-wp.item-label-stacked [item-end],
|
6899 | .item-wp.item-label-floating [item-end] {
|
6900 | -webkit-align-self: flex-end;
|
6901 | -ms-flex-item-align: end;
|
6902 | align-self: flex-end; }
|
6903 |
|
6904 | .input-wp[clearInput] {
|
6905 | position: relative; }
|
6906 |
|
6907 | .input-wp[clearInput] .text-input {
|
6908 | padding-right: 30px; }
|
6909 |
|
6910 | .input-wp .text-input-clear-icon {
|
6911 | right: 8px;
|
6912 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='rgba(0,%200,%200,%200.5)'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
|
6913 | width: 30px;
|
6914 | background-size: 22px; }
|
6915 |
|
6916 | .item {
|
6917 | contain: content; }
|
6918 |
|
6919 | .item-block {
|
6920 | margin: 0;
|
6921 | padding: 0;
|
6922 | text-align: initial;
|
6923 | display: -webkit-flex;
|
6924 | display: -ms-flexbox;
|
6925 | display: flex;
|
6926 | overflow: hidden;
|
6927 | -webkit-align-items: center;
|
6928 | -ms-flex-align: center;
|
6929 | align-items: center;
|
6930 | -webkit-justify-content: space-between;
|
6931 | -ms-flex-pack: justify;
|
6932 | justify-content: space-between;
|
6933 | width: 100%;
|
6934 | min-height: 4.4rem;
|
6935 | border: 0;
|
6936 | font-weight: normal;
|
6937 | line-height: normal;
|
6938 | text-decoration: none;
|
6939 | color: inherit; }
|
6940 |
|
6941 | .item-inner {
|
6942 | margin: 0;
|
6943 | padding: 0;
|
6944 | display: -webkit-flex;
|
6945 | display: -ms-flexbox;
|
6946 | display: flex;
|
6947 | overflow: hidden;
|
6948 | -webkit-flex: 1;
|
6949 | -ms-flex: 1;
|
6950 | flex: 1;
|
6951 | -webkit-flex-direction: inherit;
|
6952 | -ms-flex-direction: inherit;
|
6953 | flex-direction: inherit;
|
6954 | -webkit-align-items: inherit;
|
6955 | -ms-flex-align: inherit;
|
6956 | align-items: inherit;
|
6957 | -webkit-align-self: stretch;
|
6958 | -ms-flex-item-align: stretch;
|
6959 | align-self: stretch;
|
6960 | min-height: inherit;
|
6961 | border: 0; }
|
6962 |
|
6963 | .input-wrapper {
|
6964 | display: -webkit-flex;
|
6965 | display: -ms-flexbox;
|
6966 | display: flex;
|
6967 | overflow: hidden;
|
6968 | -webkit-flex: 1;
|
6969 | -ms-flex: 1;
|
6970 | flex: 1;
|
6971 | -webkit-flex-direction: inherit;
|
6972 | -ms-flex-direction: inherit;
|
6973 | flex-direction: inherit;
|
6974 | -webkit-align-items: inherit;
|
6975 | -ms-flex-align: inherit;
|
6976 | align-items: inherit;
|
6977 | -webkit-align-self: stretch;
|
6978 | -ms-flex-item-align: stretch;
|
6979 | align-self: stretch;
|
6980 | text-overflow: ellipsis; }
|
6981 |
|
6982 | .item[no-lines],
|
6983 | .item.item[no-lines] .item-inner {
|
6984 | border: 0; }
|
6985 |
|
6986 | ion-item-group {
|
6987 | display: block; }
|
6988 |
|
6989 | ion-item-divider {
|
6990 | margin: 0;
|
6991 | padding: 0;
|
6992 | z-index: 100;
|
6993 | display: -webkit-flex;
|
6994 | display: -ms-flexbox;
|
6995 | display: flex;
|
6996 | overflow: hidden;
|
6997 | -webkit-align-items: center;
|
6998 | -ms-flex-align: center;
|
6999 | align-items: center;
|
7000 | -webkit-justify-content: space-between;
|
7001 | -ms-flex-pack: justify;
|
7002 | justify-content: space-between;
|
7003 | width: 100%;
|
7004 | min-height: 30px; }
|
7005 |
|
7006 | ion-item-divider[sticky] {
|
7007 | position: -webkit-sticky;
|
7008 | position: sticky;
|
7009 | top: 0; }
|
7010 |
|
7011 | [vertical-align-top],
|
7012 | ion-input.item {
|
7013 | -webkit-align-items: flex-start;
|
7014 | -ms-flex-align: start;
|
7015 | align-items: flex-start; }
|
7016 |
|
7017 | .item > ion-icon[small]:first-child,
|
7018 | .item-inner > ion-icon[small]:first-child {
|
7019 | min-width: 18px; }
|
7020 |
|
7021 | .item > ion-icon:first-child,
|
7022 | .item-inner > ion-icon:first-child {
|
7023 | text-align: center;
|
7024 | min-width: 24px; }
|
7025 |
|
7026 | .item > ion-icon,
|
7027 | .item-inner > ion-icon {
|
7028 | min-height: 2.8rem;
|
7029 | font-size: 2.8rem;
|
7030 | line-height: 1; }
|
7031 |
|
7032 | .item > ion-icon[large],
|
7033 | .item-inner > ion-icon[large] {
|
7034 | min-height: 3.2rem;
|
7035 | font-size: 3.2rem; }
|
7036 |
|
7037 | .item > ion-icon[small],
|
7038 | .item-inner > ion-icon[small] {
|
7039 | min-height: 1.8rem;
|
7040 | font-size: 1.8rem; }
|
7041 |
|
7042 | ion-avatar,
|
7043 | ion-thumbnail {
|
7044 | display: block;
|
7045 | line-height: 1; }
|
7046 |
|
7047 | ion-avatar img,
|
7048 | ion-thumbnail img {
|
7049 | display: block; }
|
7050 |
|
7051 | .item-cover {
|
7052 | left: 0;
|
7053 | top: 0;
|
7054 | position: absolute;
|
7055 | width: 100%;
|
7056 | height: 100%;
|
7057 | background: transparent;
|
7058 | cursor: pointer; }
|
7059 |
|
7060 | ion-reorder {
|
7061 | -webkit-transform: translate3d(300%, 0, 0);
|
7062 | transform: translate3d(300%, 0, 0);
|
7063 | display: none;
|
7064 | -webkit-flex: 1;
|
7065 | -ms-flex: 1;
|
7066 | flex: 1;
|
7067 | -webkit-align-items: center;
|
7068 | -ms-flex-align: center;
|
7069 | align-items: center;
|
7070 | -webkit-justify-content: center;
|
7071 | -ms-flex-pack: center;
|
7072 | justify-content: center;
|
7073 | max-width: 40px;
|
7074 | height: 100%;
|
7075 | font-size: 1.7em;
|
7076 | opacity: .25;
|
7077 | transition: -webkit-transform 140ms ease-in;
|
7078 | transition: transform 140ms ease-in;
|
7079 | transition: transform 140ms ease-in, -webkit-transform 140ms ease-in;
|
7080 | pointer-events: all;
|
7081 | -ms-touch-action: none;
|
7082 | touch-action: none; }
|
7083 |
|
7084 | .reorder-side-start ion-reorder {
|
7085 | -webkit-transform: translate3d(-300%, 0, 0);
|
7086 | transform: translate3d(-300%, 0, 0);
|
7087 | -webkit-order: -1;
|
7088 | -ms-flex-order: -1;
|
7089 | order: -1; }
|
7090 |
|
7091 | ion-reorder ion-icon {
|
7092 | pointer-events: none; }
|
7093 |
|
7094 | .reorder-enabled ion-reorder {
|
7095 | display: -webkit-flex;
|
7096 | display: -ms-flexbox;
|
7097 | display: flex; }
|
7098 |
|
7099 | .reorder-visible ion-reorder {
|
7100 | -webkit-transform: translate3d(0, 0, 0);
|
7101 | transform: translate3d(0, 0, 0); }
|
7102 |
|
7103 | .reorder-list-active .item,
|
7104 | .reorder-list-active .item-wrapper {
|
7105 | transition: -webkit-transform 300ms;
|
7106 | transition: transform 300ms;
|
7107 | transition: transform 300ms, -webkit-transform 300ms;
|
7108 | will-change: transform; }
|
7109 |
|
7110 | .reorder-list-active .item-inner {
|
7111 | pointer-events: none; }
|
7112 |
|
7113 | .item-wrapper.reorder-active,
|
7114 | .item.reorder-active,
|
7115 | .reorder-active {
|
7116 | z-index: 4;
|
7117 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
|
7118 | opacity: .8;
|
7119 | transition: none;
|
7120 | pointer-events: none; }
|
7121 |
|
7122 | ion-item-sliding {
|
7123 | position: relative;
|
7124 | display: block;
|
7125 | overflow: hidden;
|
7126 | width: 100%; }
|
7127 |
|
7128 | ion-item-sliding .item {
|
7129 | position: static; }
|
7130 |
|
7131 | ion-item-options {
|
7132 | position: absolute;
|
7133 | z-index: 1;
|
7134 | display: none;
|
7135 | height: 100%;
|
7136 | font-size: 14px;
|
7137 | visibility: hidden;
|
7138 | top: 0;
|
7139 | right: 0;
|
7140 | -webkit-justify-content: flex-end;
|
7141 | -ms-flex-pack: end;
|
7142 | justify-content: flex-end; }
|
7143 |
|
7144 | ion-item-options[side=left] {
|
7145 | right: auto;
|
7146 | left: 0;
|
7147 | -webkit-justify-content: flex-start;
|
7148 | -ms-flex-pack: start;
|
7149 | justify-content: flex-start; }
|
7150 |
|
7151 | ion-item-options .button {
|
7152 | margin: 0;
|
7153 | padding: 0 0.7em;
|
7154 | border-radius: 0;
|
7155 | height: 100%;
|
7156 | box-shadow: none;
|
7157 | box-sizing: content-box; }
|
7158 | ion-item-options .button:last-child {
|
7159 | padding-right: 0.7em; }
|
7160 | @media screen and (orientation: landscape) {
|
7161 | ion-item-options .button:last-child {
|
7162 | padding-right: calc(constant(safe-area-inset-right) + 0.7em);
|
7163 | padding-right: calc(env(safe-area-inset-right) + 0.7em); } }
|
7164 |
|
7165 | ion-item-options:not([icon-left]) .button:not([icon-only]) .button-inner,
|
7166 | ion-item-options:not([icon-start]) .button:not([icon-only]) .button-inner {
|
7167 | -webkit-flex-direction: column;
|
7168 | -ms-flex-direction: column;
|
7169 | flex-direction: column; }
|
7170 |
|
7171 | ion-item-options:not([icon-left]) .button:not([icon-only]) ion-icon,
|
7172 | ion-item-options:not([icon-start]) .button:not([icon-only]) ion-icon {
|
7173 | padding-left: 0;
|
7174 | padding-right: 0;
|
7175 | padding-bottom: 0.3em; }
|
7176 |
|
7177 | ion-item-sliding.active-slide .item,
|
7178 | ion-item-sliding.active-slide .item.activated {
|
7179 | position: relative;
|
7180 | z-index: 2;
|
7181 | opacity: 1;
|
7182 | transition: -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
|
7183 | transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
|
7184 | transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);
|
7185 | pointer-events: none;
|
7186 | will-change: transform; }
|
7187 |
|
7188 | ion-item-sliding.active-slide ion-item-options {
|
7189 | display: -webkit-flex;
|
7190 | display: -ms-flexbox;
|
7191 | display: flex; }
|
7192 |
|
7193 | ion-item-sliding.active-slide.active-options-left ion-item-options[side=left],
|
7194 | ion-item-sliding.active-slide.active-options-right ion-item-options:not([side=left]) {
|
7195 | width: 100%;
|
7196 | visibility: visible; }
|
7197 |
|
7198 | button[expandable] {
|
7199 | -webkit-flex-shrink: 0;
|
7200 | -ms-flex-negative: 0;
|
7201 | flex-shrink: 0;
|
7202 | transition-duration: 0;
|
7203 | transition-property: none;
|
7204 | transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1); }
|
7205 |
|
7206 | ion-item-sliding.active-swipe-right button[expandable] {
|
7207 | transition-duration: .6s;
|
7208 | transition-property: padding-left;
|
7209 | padding-left: 90%;
|
7210 | -webkit-order: 1;
|
7211 | -ms-flex-order: 1;
|
7212 | order: 1; }
|
7213 |
|
7214 | ion-item-sliding.active-swipe-left button[expandable] {
|
7215 | transition-duration: .6s;
|
7216 | transition-property: padding-right;
|
7217 | padding-right: 90%;
|
7218 | -webkit-order: -1;
|
7219 | -ms-flex-order: -1;
|
7220 | order: -1; }
|
7221 |
|
7222 | .item-ios {
|
7223 | padding-left: 16px;
|
7224 | padding-left: 16px;
|
7225 | border-radius: 0;
|
7226 | position: relative;
|
7227 | font-size: 1.7rem;
|
7228 | color: #fff;
|
7229 | background-color: #242424;
|
7230 | transition: background-color 200ms linear; }
|
7231 | @media screen and (orientation: landscape) {
|
7232 | .item-ios {
|
7233 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
7234 | padding-left: calc(env(safe-area-inset-left) + 16px); } }
|
7235 |
|
7236 | .item-ios.activated {
|
7237 | background-color: #d9d9d9;
|
7238 | transition-duration: 0ms; }
|
7239 |
|
7240 | .item-ios h1 {
|
7241 | margin: 0 0 2px;
|
7242 | font-size: 2.4rem;
|
7243 | font-weight: normal; }
|
7244 |
|
7245 | .item-ios h2 {
|
7246 | margin: 0 0 2px;
|
7247 | font-size: 1.7rem;
|
7248 | font-weight: normal; }
|
7249 |
|
7250 | .item-ios h3,
|
7251 | .item-ios h4,
|
7252 | .item-ios h5,
|
7253 | .item-ios h6 {
|
7254 | margin: 0 0 3px;
|
7255 | font-size: 1.4rem;
|
7256 | font-weight: normal;
|
7257 | line-height: normal; }
|
7258 |
|
7259 | .item-ios p {
|
7260 | overflow: inherit;
|
7261 | font-size: 1.4rem;
|
7262 | line-height: normal;
|
7263 | text-overflow: inherit;
|
7264 | color: #8e9093;
|
7265 | margin: 0 0 2px; }
|
7266 |
|
7267 | .item-ios h2:last-child,
|
7268 | .item-ios h3:last-child,
|
7269 | .item-ios h4:last-child,
|
7270 | .item-ios h5:last-child,
|
7271 | .item-ios h6:last-child,
|
7272 | .item-ios p:last-child {
|
7273 | margin-bottom: 0; }
|
7274 |
|
7275 | .item-ios.item-block .item-inner {
|
7276 | padding-right: 8px;
|
7277 | padding-right: 8px;
|
7278 | border-bottom: 0.55px solid #000; }
|
7279 | @media screen and (orientation: landscape) {
|
7280 | .item-ios.item-block .item-inner {
|
7281 | padding-right: calc(constant(safe-area-inset-right) + 8px);
|
7282 | padding-right: calc(env(safe-area-inset-right) + 8px); } }
|
7283 |
|
7284 | .item-ios [item-left],
|
7285 | .item-ios [item-start] {
|
7286 | margin: 8px 16px 8px 0; }
|
7287 |
|
7288 | .item-ios [item-right],
|
7289 | .item-ios [item-end] {
|
7290 | margin: 8px; }
|
7291 |
|
7292 | .item-ios ion-icon[item-left],
|
7293 | .item-ios ion-icon[item-right],
|
7294 | .item-ios ion-icon[item-start],
|
7295 | .item-ios ion-icon[item-end] {
|
7296 | margin-left: 0;
|
7297 | margin-top: 9px;
|
7298 | margin-bottom: 8px; }
|
7299 |
|
7300 | .item-ios .item-button {
|
7301 | padding: 0 0.5em;
|
7302 | height: 24px;
|
7303 | font-size: 1.3rem; }
|
7304 |
|
7305 | .item-ios .item-button[icon-only] ion-icon,
|
7306 | .item-ios .item-button[icon-only] {
|
7307 | padding: 0 1px; }
|
7308 |
|
7309 | .item-ios ion-avatar[item-left],
|
7310 | .item-ios ion-thumbnail[item-left],
|
7311 | .item-ios ion-avatar[item-start],
|
7312 | .item-ios ion-thumbnail[item-start] {
|
7313 | margin: 8px 16px 8px 0; }
|
7314 |
|
7315 | .item-ios ion-avatar[item-right],
|
7316 | .item-ios ion-thumbnail[item-right],
|
7317 | .item-ios ion-avatar[item-end],
|
7318 | .item-ios ion-thumbnail[item-end] {
|
7319 | margin: 8px; }
|
7320 |
|
7321 | .item-ios ion-avatar {
|
7322 | min-width: 36px;
|
7323 | min-height: 36px; }
|
7324 |
|
7325 | .item-ios ion-avatar ion-img,
|
7326 | .item-ios ion-avatar img {
|
7327 | border-radius: 50%;
|
7328 | overflow: hidden;
|
7329 | width: 36px;
|
7330 | height: 36px; }
|
7331 |
|
7332 | .item-ios ion-thumbnail {
|
7333 | min-width: 56px;
|
7334 | min-height: 56px; }
|
7335 |
|
7336 | .item-ios ion-thumbnail ion-img,
|
7337 | .item-ios ion-thumbnail img {
|
7338 | width: 56px;
|
7339 | height: 56px; }
|
7340 |
|
7341 | .item-ios[detail-push] .item-inner,
|
7342 | button.item-ios:not([detail-none]) .item-inner,
|
7343 | a.item-ios:not([detail-none]) .item-inner {
|
7344 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%2020'><path%20d='M2,20l-2-2l8-8L0,2l2-2l10,10L2,20z'%20fill='%23000'/></svg>");
|
7345 | padding-right: 32px;
|
7346 | background-position: right 14px center;
|
7347 | background-position: right calc(14px + constant(safe-area-inset-right)) center;
|
7348 | background-position: right calc(14px + env(safe-area-inset-right)) center;
|
7349 | background-repeat: no-repeat;
|
7350 | background-size: 14px 14px; }
|
7351 |
|
7352 | ion-item-group .item-ios:first-child .item-inner {
|
7353 | border-top-width: 0; }
|
7354 |
|
7355 | ion-item-group .item-ios:last-child .item-inner,
|
7356 | ion-item-group .item-wrapper:last-child .item-ios .item-inner {
|
7357 | border: 0; }
|
7358 |
|
7359 | .item-divider-ios {
|
7360 | padding-left: 16px;
|
7361 | padding-left: 16px;
|
7362 | color: #222;
|
7363 | background-color: #f7f7f7; }
|
7364 | @media screen and (orientation: landscape) {
|
7365 | .item-divider-ios {
|
7366 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
7367 | padding-left: calc(env(safe-area-inset-left) + 16px); } }
|
7368 |
|
7369 | .item-ios .text-ios-primary {
|
7370 | color: #007aff; }
|
7371 |
|
7372 | .item-ios-primary,
|
7373 | .item-divider-ios-primary {
|
7374 | color: #fff;
|
7375 | background-color: #007aff; }
|
7376 | .item-ios-primary p,
|
7377 | .item-divider-ios-primary p {
|
7378 | color: #fff; }
|
7379 | .item-ios-primary.activated,
|
7380 | .item-divider-ios-primary.activated {
|
7381 | background-color: #1485ff; }
|
7382 |
|
7383 | .item-ios .text-ios-secondary {
|
7384 | color: #32db64; }
|
7385 |
|
7386 | .item-ios-secondary,
|
7387 | .item-divider-ios-secondary {
|
7388 | color: #fff;
|
7389 | background-color: #32db64; }
|
7390 | .item-ios-secondary p,
|
7391 | .item-divider-ios-secondary p {
|
7392 | color: #fff; }
|
7393 | .item-ios-secondary.activated,
|
7394 | .item-divider-ios-secondary.activated {
|
7395 | background-color: #2ec95c; }
|
7396 |
|
7397 | .item-ios .text-ios-danger {
|
7398 | color: #d91e18; }
|
7399 |
|
7400 | .item-ios-danger,
|
7401 | .item-divider-ios-danger {
|
7402 | color: #fff;
|
7403 | background-color: #d91e18; }
|
7404 | .item-ios-danger p,
|
7405 | .item-divider-ios-danger p {
|
7406 | color: #fff; }
|
7407 | .item-ios-danger.activated,
|
7408 | .item-divider-ios-danger.activated {
|
7409 | background-color: #dc302a; }
|
7410 |
|
7411 | .item-ios .text-ios-light {
|
7412 | color: #f4f4f4; }
|
7413 |
|
7414 | .item-ios-light,
|
7415 | .item-divider-ios-light {
|
7416 | color: #000;
|
7417 | background-color: #f4f4f4; }
|
7418 | .item-ios-light p,
|
7419 | .item-divider-ios-light p {
|
7420 | color: #000; }
|
7421 | .item-ios-light.activated,
|
7422 | .item-divider-ios-light.activated {
|
7423 | background-color: #e0e0e0; }
|
7424 |
|
7425 | .item-ios .text-ios-dark {
|
7426 | color: #222; }
|
7427 |
|
7428 | .item-ios-dark,
|
7429 | .item-divider-ios-dark {
|
7430 | color: #fff;
|
7431 | background-color: #222; }
|
7432 | .item-ios-dark p,
|
7433 | .item-divider-ios-dark p {
|
7434 | color: #fff; }
|
7435 | .item-ios-dark.activated,
|
7436 | .item-divider-ios-dark.activated {
|
7437 | background-color: #343434; }
|
7438 |
|
7439 | .list-ios ion-item-sliding {
|
7440 | background-color: #242424; }
|
7441 |
|
7442 | .item-md {
|
7443 | padding-left: 16px;
|
7444 | padding-right: 0;
|
7445 | position: relative;
|
7446 | font-size: 1.6rem;
|
7447 | font-weight: normal;
|
7448 | text-transform: none;
|
7449 | color: #fff;
|
7450 | background-color: #242424;
|
7451 | box-shadow: none;
|
7452 | transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1); }
|
7453 |
|
7454 | .item-md.activated {
|
7455 | background-color: #f1f1f1; }
|
7456 |
|
7457 | .item-md[no-lines] {
|
7458 | border-width: 0; }
|
7459 |
|
7460 | .item-md h1 {
|
7461 | margin: 0 0 2px;
|
7462 | font-size: 2.4rem;
|
7463 | font-weight: normal; }
|
7464 |
|
7465 | .item-md h2 {
|
7466 | margin: 2px 0;
|
7467 | font-size: 1.6rem;
|
7468 | font-weight: normal; }
|
7469 |
|
7470 | .item-md h3,
|
7471 | .item-md h4,
|
7472 | .item-md h5,
|
7473 | .item-md h6 {
|
7474 | margin: 2px 0;
|
7475 | font-size: 1.4rem;
|
7476 | font-weight: normal;
|
7477 | line-height: normal; }
|
7478 |
|
7479 | .item-md p {
|
7480 | margin: 0 0 2px;
|
7481 | overflow: inherit;
|
7482 | font-size: 1.4rem;
|
7483 | line-height: normal;
|
7484 | text-overflow: inherit;
|
7485 | color: #666; }
|
7486 |
|
7487 | .item-md.item-block .item-inner {
|
7488 | padding-right: 8px;
|
7489 | border-bottom: 1px solid #dedede; }
|
7490 |
|
7491 | .item-md [item-left],
|
7492 | .item-md [item-right],
|
7493 | .item-md [item-start],
|
7494 | .item-md [item-end] {
|
7495 | margin: 9px 8px 9px 0; }
|
7496 |
|
7497 | .item-md ion-icon[item-left],
|
7498 | .item-md ion-icon[item-right],
|
7499 | .item-md ion-icon[item-start],
|
7500 | .item-md ion-icon[item-end] {
|
7501 | margin-left: 0;
|
7502 | margin-top: 11px;
|
7503 | margin-bottom: 10px; }
|
7504 |
|
7505 | .item-md .item-button {
|
7506 | padding: 0 0.6em;
|
7507 | height: 25px;
|
7508 | font-size: 1.2rem; }
|
7509 |
|
7510 | .item-md .item-button[icon-only] ion-icon,
|
7511 | .item-md .item-button[icon-only] {
|
7512 | padding: 0 1px; }
|
7513 |
|
7514 | .item-md ion-icon[item-left] + .item-inner,
|
7515 | .item-md ion-icon[item-left] + .item-input,
|
7516 | .item-md ion-icon[item-start] + .item-inner,
|
7517 | .item-md ion-icon[item-start] + .item-input {
|
7518 | margin-left: 24px; }
|
7519 |
|
7520 | .item-md ion-avatar[item-left],
|
7521 | .item-md ion-thumbnail[item-left],
|
7522 | .item-md ion-avatar[item-start],
|
7523 | .item-md ion-thumbnail[item-start] {
|
7524 | margin: 8px 16px 8px 0; }
|
7525 |
|
7526 | .item-md ion-avatar[item-right],
|
7527 | .item-md ion-thumbnail[item-right],
|
7528 | .item-md ion-avatar[item-end],
|
7529 | .item-md ion-thumbnail[item-end] {
|
7530 | margin: 8px; }
|
7531 |
|
7532 | .item-md ion-avatar {
|
7533 | min-width: 40px;
|
7534 | min-height: 40px; }
|
7535 |
|
7536 | .item-md ion-avatar ion-img,
|
7537 | .item-md ion-avatar img {
|
7538 | border-radius: 50%;
|
7539 | overflow: hidden;
|
7540 | width: 40px;
|
7541 | height: 40px; }
|
7542 |
|
7543 | .item-md ion-thumbnail {
|
7544 | min-width: 80px;
|
7545 | min-height: 80px; }
|
7546 |
|
7547 | .item-md ion-thumbnail ion-img,
|
7548 | .item-md ion-thumbnail img {
|
7549 | width: 80px;
|
7550 | height: 80px; }
|
7551 |
|
7552 | ion-item-group .item-md:first-child .item-inner {
|
7553 | border-top-width: 0; }
|
7554 |
|
7555 | ion-item-group .item-md:last-child .item-inner,
|
7556 | ion-item-group .item-md .item-wrapper:last-child .item-inner {
|
7557 | border: 0; }
|
7558 |
|
7559 | .item-divider-md {
|
7560 | padding-left: 16px;
|
7561 | border-bottom: 1px solid #dedede;
|
7562 | font-size: 1.4rem;
|
7563 | color: #858585;
|
7564 | background-color: #fff; }
|
7565 |
|
7566 | .item-md .text-md-primary {
|
7567 | color: #007aff; }
|
7568 |
|
7569 | .item-md-primary,
|
7570 | .item-divider-md-primary {
|
7571 | color: #fff;
|
7572 | background-color: #007aff; }
|
7573 | .item-md-primary p,
|
7574 | .item-divider-md-primary p {
|
7575 | color: #fff; }
|
7576 | .item-md-primary.activated,
|
7577 | .item-divider-md-primary.activated {
|
7578 | background-color: #1485ff; }
|
7579 |
|
7580 | .item-md .text-md-secondary {
|
7581 | color: #32db64; }
|
7582 |
|
7583 | .item-md-secondary,
|
7584 | .item-divider-md-secondary {
|
7585 | color: #fff;
|
7586 | background-color: #32db64; }
|
7587 | .item-md-secondary p,
|
7588 | .item-divider-md-secondary p {
|
7589 | color: #fff; }
|
7590 | .item-md-secondary.activated,
|
7591 | .item-divider-md-secondary.activated {
|
7592 | background-color: #2ec95c; }
|
7593 |
|
7594 | .item-md .text-md-danger {
|
7595 | color: #d91e18; }
|
7596 |
|
7597 | .item-md-danger,
|
7598 | .item-divider-md-danger {
|
7599 | color: #fff;
|
7600 | background-color: #d91e18; }
|
7601 | .item-md-danger p,
|
7602 | .item-divider-md-danger p {
|
7603 | color: #fff; }
|
7604 | .item-md-danger.activated,
|
7605 | .item-divider-md-danger.activated {
|
7606 | background-color: #dc302a; }
|
7607 |
|
7608 | .item-md .text-md-light {
|
7609 | color: #f4f4f4; }
|
7610 |
|
7611 | .item-md-light,
|
7612 | .item-divider-md-light {
|
7613 | color: #000;
|
7614 | background-color: #f4f4f4; }
|
7615 | .item-md-light p,
|
7616 | .item-divider-md-light p {
|
7617 | color: #000; }
|
7618 | .item-md-light.activated,
|
7619 | .item-divider-md-light.activated {
|
7620 | background-color: #e0e0e0; }
|
7621 |
|
7622 | .item-md .text-md-dark {
|
7623 | color: #222; }
|
7624 |
|
7625 | .item-md-dark,
|
7626 | .item-divider-md-dark {
|
7627 | color: #fff;
|
7628 | background-color: #222; }
|
7629 | .item-md-dark p,
|
7630 | .item-divider-md-dark p {
|
7631 | color: #fff; }
|
7632 | .item-md-dark.activated,
|
7633 | .item-divider-md-dark.activated {
|
7634 | background-color: #343434; }
|
7635 |
|
7636 | .list-md ion-item-sliding {
|
7637 | background-color: #242424; }
|
7638 |
|
7639 | .item-md ion-reorder {
|
7640 | font-size: 1.5em;
|
7641 | opacity: .3; }
|
7642 |
|
7643 | .item-wp {
|
7644 | padding-left: 16px;
|
7645 | padding-right: 0;
|
7646 | position: relative;
|
7647 | font-size: 1.6rem;
|
7648 | font-weight: normal;
|
7649 | text-transform: none;
|
7650 | color: #fff;
|
7651 | background-color: #242424;
|
7652 | box-shadow: none; }
|
7653 |
|
7654 | .item-wp.activated {
|
7655 | background-color: #aaa; }
|
7656 |
|
7657 | .item-wp[no-lines] {
|
7658 | border-width: 0; }
|
7659 |
|
7660 | .item-wp h1 {
|
7661 | margin: 0 0 2px;
|
7662 | font-size: 2.4rem;
|
7663 | font-weight: normal; }
|
7664 |
|
7665 | .item-wp h2 {
|
7666 | margin: 2px 0;
|
7667 | font-size: 1.6rem;
|
7668 | font-weight: normal; }
|
7669 |
|
7670 | .item-wp h3,
|
7671 | .item-wp h4,
|
7672 | .item-wp h5,
|
7673 | .item-wp h6 {
|
7674 | margin: 2px 0;
|
7675 | font-size: 1.4rem;
|
7676 | font-weight: normal;
|
7677 | line-height: normal; }
|
7678 |
|
7679 | .item-wp p {
|
7680 | margin: 0 0 2px;
|
7681 | overflow: inherit;
|
7682 | font-size: 1.4rem;
|
7683 | line-height: normal;
|
7684 | text-overflow: inherit;
|
7685 | color: #666; }
|
7686 |
|
7687 | .item-wp.item-block .item-inner {
|
7688 | padding-right: 8px;
|
7689 | border-bottom: 1px solid transparent; }
|
7690 |
|
7691 | .item-wp [item-left],
|
7692 | .item-wp [item-right],
|
7693 | .item-wp [item-start],
|
7694 | .item-wp [item-end] {
|
7695 | margin: 9px 8px 9px 0; }
|
7696 |
|
7697 | .item-wp ion-icon[item-left],
|
7698 | .item-wp ion-icon[item-right],
|
7699 | .item-wp ion-icon[item-start],
|
7700 | .item-wp ion-icon[item-end] {
|
7701 | margin-left: 0;
|
7702 | margin-top: 11px;
|
7703 | margin-bottom: 10px; }
|
7704 |
|
7705 | .item-wp .item-button {
|
7706 | padding: 0 0.6em;
|
7707 | height: 25px;
|
7708 | font-size: 1.2rem; }
|
7709 |
|
7710 | .item-wp .item-button[icon-only] ion-icon,
|
7711 | .item-wp .item-button[icon-only] {
|
7712 | padding: 0 1px; }
|
7713 |
|
7714 | .item-wp[text-wrap] ion-label {
|
7715 | font-size: 1.4rem;
|
7716 | line-height: 1.5; }
|
7717 |
|
7718 | .item-wp ion-icon[item-left] + .item-inner,
|
7719 | .item-wp ion-icon[item-left] + .item-input,
|
7720 | .item-wp ion-icon[item-start] + .item-inner,
|
7721 | .item-wp ion-icon[item-start] + .item-input {
|
7722 | margin-left: 8px; }
|
7723 |
|
7724 | .item-wp ion-avatar[item-left],
|
7725 | .item-wp ion-thumbnail[item-left],
|
7726 | .item-wp ion-avatar[item-start],
|
7727 | .item-wp ion-thumbnail[item-start] {
|
7728 | margin: 8px 16px 8px 0; }
|
7729 |
|
7730 | .item-wp ion-avatar[item-right],
|
7731 | .item-wp ion-thumbnail[item-right],
|
7732 | .item-wp ion-avatar[item-end],
|
7733 | .item-wp ion-thumbnail[item-end] {
|
7734 | margin: 8px; }
|
7735 |
|
7736 | .item-wp ion-avatar {
|
7737 | min-width: 40px;
|
7738 | min-height: 40px; }
|
7739 |
|
7740 | .item-wp ion-avatar ion-img,
|
7741 | .item-wp ion-avatar img {
|
7742 | border-radius: 50%;
|
7743 | overflow: hidden;
|
7744 | width: 40px;
|
7745 | height: 40px; }
|
7746 |
|
7747 | .item-wp ion-thumbnail {
|
7748 | min-width: 80px;
|
7749 | min-height: 80px; }
|
7750 |
|
7751 | .item-wp ion-thumbnail ion-img,
|
7752 | .item-wp ion-thumbnail img {
|
7753 | width: 80px;
|
7754 | height: 80px; }
|
7755 |
|
7756 | .item-divider-wp {
|
7757 | padding-left: 16px;
|
7758 | border-bottom: 1px solid transparent;
|
7759 | font-size: 2rem;
|
7760 | color: #fff;
|
7761 | background-color: #fff; }
|
7762 |
|
7763 | .item-wp .text-wp-primary {
|
7764 | color: #007aff; }
|
7765 |
|
7766 | .item-wp-primary,
|
7767 | .item-divider-wp-primary {
|
7768 | color: #fff;
|
7769 | background-color: #007aff; }
|
7770 | .item-wp-primary p,
|
7771 | .item-divider-wp-primary p {
|
7772 | color: #fff; }
|
7773 | .item-wp-primary.activated,
|
7774 | .item-divider-wp-primary.activated {
|
7775 | background-color: #1485ff; }
|
7776 |
|
7777 | .item-wp .text-wp-secondary {
|
7778 | color: #32db64; }
|
7779 |
|
7780 | .item-wp-secondary,
|
7781 | .item-divider-wp-secondary {
|
7782 | color: #fff;
|
7783 | background-color: #32db64; }
|
7784 | .item-wp-secondary p,
|
7785 | .item-divider-wp-secondary p {
|
7786 | color: #fff; }
|
7787 | .item-wp-secondary.activated,
|
7788 | .item-divider-wp-secondary.activated {
|
7789 | background-color: #2ec95c; }
|
7790 |
|
7791 | .item-wp .text-wp-danger {
|
7792 | color: #d91e18; }
|
7793 |
|
7794 | .item-wp-danger,
|
7795 | .item-divider-wp-danger {
|
7796 | color: #fff;
|
7797 | background-color: #d91e18; }
|
7798 | .item-wp-danger p,
|
7799 | .item-divider-wp-danger p {
|
7800 | color: #fff; }
|
7801 | .item-wp-danger.activated,
|
7802 | .item-divider-wp-danger.activated {
|
7803 | background-color: #dc302a; }
|
7804 |
|
7805 | .item-wp .text-wp-light {
|
7806 | color: #f4f4f4; }
|
7807 |
|
7808 | .item-wp-light,
|
7809 | .item-divider-wp-light {
|
7810 | color: #000;
|
7811 | background-color: #f4f4f4; }
|
7812 | .item-wp-light p,
|
7813 | .item-divider-wp-light p {
|
7814 | color: #000; }
|
7815 | .item-wp-light.activated,
|
7816 | .item-divider-wp-light.activated {
|
7817 | background-color: #e0e0e0; }
|
7818 |
|
7819 | .item-wp .text-wp-dark {
|
7820 | color: #222; }
|
7821 |
|
7822 | .item-wp-dark,
|
7823 | .item-divider-wp-dark {
|
7824 | color: #fff;
|
7825 | background-color: #222; }
|
7826 | .item-wp-dark p,
|
7827 | .item-divider-wp-dark p {
|
7828 | color: #fff; }
|
7829 | .item-wp-dark.activated,
|
7830 | .item-divider-wp-dark.activated {
|
7831 | background-color: #343434; }
|
7832 |
|
7833 | .list-wp ion-item-sliding {
|
7834 | background-color: #242424; }
|
7835 |
|
7836 | ion-label {
|
7837 | margin: 0;
|
7838 | display: block;
|
7839 | overflow: hidden;
|
7840 | -webkit-flex: 1;
|
7841 | -ms-flex: 1;
|
7842 | flex: 1;
|
7843 | font-size: inherit;
|
7844 | text-overflow: ellipsis;
|
7845 | white-space: nowrap; }
|
7846 |
|
7847 | .item-input ion-label {
|
7848 | -webkit-flex: initial;
|
7849 | -ms-flex: initial;
|
7850 | flex: initial;
|
7851 | max-width: 200px;
|
7852 | pointer-events: none; }
|
7853 |
|
7854 | [text-wrap] ion-label {
|
7855 | white-space: normal; }
|
7856 |
|
7857 | ion-label[fixed] {
|
7858 | -webkit-flex: 0 0 100px;
|
7859 | -ms-flex: 0 0 100px;
|
7860 | flex: 0 0 100px;
|
7861 | width: 100px;
|
7862 | min-width: 100px;
|
7863 | max-width: 200px; }
|
7864 |
|
7865 | .item-label-stacked ion-label,
|
7866 | .item-label-floating ion-label {
|
7867 | -webkit-align-self: stretch;
|
7868 | -ms-flex-item-align: stretch;
|
7869 | -ms-grid-row-align: stretch;
|
7870 | align-self: stretch;
|
7871 | width: auto;
|
7872 | max-width: 100%; }
|
7873 |
|
7874 | ion-label[stacked],
|
7875 | ion-label[floating] {
|
7876 | margin-bottom: 0; }
|
7877 |
|
7878 | .item-label-stacked .input-wrapper,
|
7879 | .item-label-floating .input-wrapper {
|
7880 | -webkit-flex: 1;
|
7881 | -ms-flex: 1;
|
7882 | flex: 1;
|
7883 | -webkit-flex-direction: column;
|
7884 | -ms-flex-direction: column;
|
7885 | flex-direction: column; }
|
7886 |
|
7887 | .item-label-stacked ion-select,
|
7888 | .item-label-floating ion-select {
|
7889 | -webkit-align-self: stretch;
|
7890 | -ms-flex-item-align: stretch;
|
7891 | -ms-grid-row-align: stretch;
|
7892 | align-self: stretch;
|
7893 | max-width: 100%; }
|
7894 |
|
7895 | .label-ios {
|
7896 | margin: 11px 8px 11px 0; }
|
7897 |
|
7898 | .label-ios + ion-input .text-input,
|
7899 | .label-ios + ion-textarea .text-input,
|
7900 | .label-ios + .input + .cloned-input {
|
7901 | margin-left: 16px;
|
7902 | width: calc(100% - (16px / 2) - 16px); }
|
7903 |
|
7904 | .label-ios[stacked] {
|
7905 | margin-bottom: 4px;
|
7906 | font-size: 1.2rem; }
|
7907 |
|
7908 | .label-ios[floating] {
|
7909 | margin-bottom: 0;
|
7910 | -webkit-transform: translate3d(0, 27px, 0);
|
7911 | transform: translate3d(0, 27px, 0);
|
7912 | -webkit-transform-origin: left top;
|
7913 | transform-origin: left top;
|
7914 | transition: -webkit-transform 150ms ease-in-out;
|
7915 | transition: transform 150ms ease-in-out;
|
7916 | transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out; }
|
7917 |
|
7918 | .item-input-has-focus .label-ios[floating],
|
7919 | .input-has-focus .label-ios[floating],
|
7920 | .item-input-has-value .label-ios[floating],
|
7921 | .input-has-value .label-ios[floating] {
|
7922 | -webkit-transform: translate3d(0, 0, 0) scale(0.8);
|
7923 | transform: translate3d(0, 0, 0) scale(0.8); }
|
7924 |
|
7925 | .item-ios.item-label-stacked [item-right],
|
7926 | .item-ios.item-label-floating [item-right],
|
7927 | .item-ios.item-label-stacked [item-end],
|
7928 | .item-ios.item-label-floating [item-end] {
|
7929 | margin-top: 6px;
|
7930 | margin-bottom: 6px; }
|
7931 |
|
7932 | .label-ios-primary,
|
7933 | .item-input .label-ios-primary,
|
7934 | .item-select .label-ios-primary,
|
7935 | .item-datetime .label-ios-primary {
|
7936 | color: #007aff; }
|
7937 |
|
7938 | .label-ios-secondary,
|
7939 | .item-input .label-ios-secondary,
|
7940 | .item-select .label-ios-secondary,
|
7941 | .item-datetime .label-ios-secondary {
|
7942 | color: #32db64; }
|
7943 |
|
7944 | .label-ios-danger,
|
7945 | .item-input .label-ios-danger,
|
7946 | .item-select .label-ios-danger,
|
7947 | .item-datetime .label-ios-danger {
|
7948 | color: #d91e18; }
|
7949 |
|
7950 | .label-ios-light,
|
7951 | .item-input .label-ios-light,
|
7952 | .item-select .label-ios-light,
|
7953 | .item-datetime .label-ios-light {
|
7954 | color: #f4f4f4; }
|
7955 |
|
7956 | .label-ios-dark,
|
7957 | .item-input .label-ios-dark,
|
7958 | .item-select .label-ios-dark,
|
7959 | .item-datetime .label-ios-dark {
|
7960 | color: #222; }
|
7961 |
|
7962 | .label-md {
|
7963 | margin: 13px 8px 13px 0; }
|
7964 |
|
7965 | [text-wrap] .label-md {
|
7966 | font-size: 1.4rem;
|
7967 | line-height: 1.5; }
|
7968 |
|
7969 | .item-input .label-md,
|
7970 | .item-select .label-md,
|
7971 | .item-datetime .label-md {
|
7972 | color: #999; }
|
7973 |
|
7974 | .label-md[stacked] {
|
7975 | font-size: 1.2rem; }
|
7976 |
|
7977 | .label-md[floating] {
|
7978 | -webkit-transform: translate3d(0, 27px, 0);
|
7979 | transform: translate3d(0, 27px, 0);
|
7980 | -webkit-transform-origin: left top;
|
7981 | transform-origin: left top;
|
7982 | transition: -webkit-transform 150ms ease-in-out;
|
7983 | transition: transform 150ms ease-in-out;
|
7984 | transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out; }
|
7985 |
|
7986 | .label-md[stacked],
|
7987 | .label-md[floating] {
|
7988 | margin-left: 0;
|
7989 | margin-bottom: 0; }
|
7990 |
|
7991 | .item-input-has-focus .label-md[stacked],
|
7992 | .input-has-focus .label-md[stacked],
|
7993 | .item-input-has-focus .label-md[floating],
|
7994 | .input-has-focus .label-md[floating] {
|
7995 | color: #007aff; }
|
7996 |
|
7997 | .item-input-has-focus .label-md[floating],
|
7998 | .input-has-focus .label-md[floating],
|
7999 | .item-input-has-value .label-md[floating],
|
8000 | .input-has-value .label-md[floating] {
|
8001 | -webkit-transform: translate3d(0, 0, 0) scale(0.8);
|
8002 | transform: translate3d(0, 0, 0) scale(0.8); }
|
8003 |
|
8004 | .item-md.item-label-stacked [item-right],
|
8005 | .item-md.item-label-floating [item-right],
|
8006 | .item-md.item-label-stacked [item-end],
|
8007 | .item-md.item-label-floating [item-end] {
|
8008 | margin-top: 7px;
|
8009 | margin-bottom: 7px; }
|
8010 |
|
8011 | .label-md-primary,
|
8012 | .item-input .label-md-primary,
|
8013 | .item-select .label-md-primary,
|
8014 | .item-datetime .label-md-primary {
|
8015 | color: #007aff; }
|
8016 |
|
8017 | .label-md-secondary,
|
8018 | .item-input .label-md-secondary,
|
8019 | .item-select .label-md-secondary,
|
8020 | .item-datetime .label-md-secondary {
|
8021 | color: #32db64; }
|
8022 |
|
8023 | .label-md-danger,
|
8024 | .item-input .label-md-danger,
|
8025 | .item-select .label-md-danger,
|
8026 | .item-datetime .label-md-danger {
|
8027 | color: #d91e18; }
|
8028 |
|
8029 | .label-md-light,
|
8030 | .item-input .label-md-light,
|
8031 | .item-select .label-md-light,
|
8032 | .item-datetime .label-md-light {
|
8033 | color: #f4f4f4; }
|
8034 |
|
8035 | .label-md-dark,
|
8036 | .item-input .label-md-dark,
|
8037 | .item-select .label-md-dark,
|
8038 | .item-datetime .label-md-dark {
|
8039 | color: #222; }
|
8040 |
|
8041 | .label-wp {
|
8042 | margin: 13px 8px 13px 0; }
|
8043 |
|
8044 | .item-input .label-wp,
|
8045 | .item-select .label-wp,
|
8046 | .item-datetime .label-wp {
|
8047 | color: #999; }
|
8048 |
|
8049 | .label-wp[stacked] {
|
8050 | font-size: 1.2rem; }
|
8051 |
|
8052 | .label-wp[floating] {
|
8053 | -webkit-transform: translate3d(8px, 34px, 0);
|
8054 | transform: translate3d(8px, 34px, 0);
|
8055 | -webkit-transform-origin: left top;
|
8056 | transform-origin: left top; }
|
8057 |
|
8058 | .label-wp[stacked],
|
8059 | .label-wp[floating] {
|
8060 | margin-left: 0;
|
8061 | margin-bottom: 0; }
|
8062 |
|
8063 | .item-input-has-focus .label-wp[stacked],
|
8064 | .input-has-focus .label-wp[stacked],
|
8065 | .item-input-has-focus .label-wp[floating],
|
8066 | .input-has-focus .label-wp[floating] {
|
8067 | color: #007aff; }
|
8068 |
|
8069 | .item-input-has-focus .label-wp[floating],
|
8070 | .input-has-focus .label-wp[floating],
|
8071 | .item-input-has-value .label-wp[floating],
|
8072 | .input-has-value .label-wp[floating] {
|
8073 | -webkit-transform: translate3d(0, 0, 0) scale(0.8);
|
8074 | transform: translate3d(0, 0, 0) scale(0.8); }
|
8075 |
|
8076 | .item-wp.item-label-stacked [item-right],
|
8077 | .item-wp.item-label-floating [item-right],
|
8078 | .item-wp.item-label-stacked [item-end],
|
8079 | .item-wp.item-label-floating [item-end] {
|
8080 | margin-top: 13px;
|
8081 | margin-bottom: 13px; }
|
8082 |
|
8083 | .label-wp-primary,
|
8084 | .item-input .label-wp-primary,
|
8085 | .item-select .label-wp-primary,
|
8086 | .item-datetime .label-wp-primary {
|
8087 | color: #007aff; }
|
8088 |
|
8089 | .label-wp-secondary,
|
8090 | .item-input .label-wp-secondary,
|
8091 | .item-select .label-wp-secondary,
|
8092 | .item-datetime .label-wp-secondary {
|
8093 | color: #32db64; }
|
8094 |
|
8095 | .label-wp-danger,
|
8096 | .item-input .label-wp-danger,
|
8097 | .item-select .label-wp-danger,
|
8098 | .item-datetime .label-wp-danger {
|
8099 | color: #d91e18; }
|
8100 |
|
8101 | .label-wp-light,
|
8102 | .item-input .label-wp-light,
|
8103 | .item-select .label-wp-light,
|
8104 | .item-datetime .label-wp-light {
|
8105 | color: #f4f4f4; }
|
8106 |
|
8107 | .label-wp-dark,
|
8108 | .item-input .label-wp-dark,
|
8109 | .item-select .label-wp-dark,
|
8110 | .item-datetime .label-wp-dark {
|
8111 | color: #222; }
|
8112 |
|
8113 | ion-list-header {
|
8114 | margin: 0;
|
8115 | padding: 0;
|
8116 | display: -webkit-flex;
|
8117 | display: -ms-flexbox;
|
8118 | display: flex;
|
8119 | overflow: hidden;
|
8120 | -webkit-align-items: center;
|
8121 | -ms-flex-align: center;
|
8122 | align-items: center;
|
8123 | -webkit-justify-content: space-between;
|
8124 | -ms-flex-pack: justify;
|
8125 | justify-content: space-between;
|
8126 | width: 100%;
|
8127 | min-height: 4rem; }
|
8128 |
|
8129 | ion-list {
|
8130 | margin: 0;
|
8131 | padding: 0;
|
8132 | display: block;
|
8133 | list-style-type: none; }
|
8134 |
|
8135 | ion-list[inset] {
|
8136 | overflow: hidden;
|
8137 | -webkit-transform: translateZ(0);
|
8138 | transform: translateZ(0); }
|
8139 |
|
8140 | .list-ios {
|
8141 | margin: -1px 0 32px; }
|
8142 |
|
8143 | .list-ios > .item-block:first-child {
|
8144 | border-top: 0.55px solid #000; }
|
8145 |
|
8146 | .list-ios > .item-block:last-child,
|
8147 | .list-ios > .item-wrapper:last-child .item-block {
|
8148 | border-bottom: 0.55px solid #000; }
|
8149 |
|
8150 | .list-ios > .item-block:last-child .item-inner,
|
8151 | .list-ios > .item-wrapper:last-child .item-block .item-inner {
|
8152 | border-bottom: 0; }
|
8153 |
|
8154 | .list-ios .item-block .item-inner {
|
8155 | border-bottom: 0.55px solid #000; }
|
8156 |
|
8157 | .list-ios .item[no-lines],
|
8158 | .list-ios .item[no-lines] .item-inner {
|
8159 | border-width: 0; }
|
8160 |
|
8161 | .list-ios ion-item-options {
|
8162 | border-bottom: 0.55px solid #000; }
|
8163 |
|
8164 | .list-ios ion-item-options .button {
|
8165 | margin: 0;
|
8166 | border-radius: 0;
|
8167 | display: -webkit-inline-flex;
|
8168 | display: -ms-inline-flexbox;
|
8169 | display: inline-flex;
|
8170 | -webkit-align-items: center;
|
8171 | -ms-flex-align: center;
|
8172 | align-items: center;
|
8173 | height: 100%;
|
8174 | min-height: 100%;
|
8175 | border: 0;
|
8176 | box-sizing: border-box; }
|
8177 |
|
8178 | .list-ios ion-item-options .button::before {
|
8179 | margin: 0 auto; }
|
8180 |
|
8181 | .list-ios:not([inset]) + .list-ios:not([inset]) ion-list-header {
|
8182 | margin-top: -10px;
|
8183 | padding-top: 0; }
|
8184 |
|
8185 | .list-ios[inset] {
|
8186 | margin: 16px;
|
8187 | border-radius: 4px; }
|
8188 |
|
8189 | .list-ios[inset] ion-list-header {
|
8190 | background-color: #242424; }
|
8191 |
|
8192 | .list-ios[inset] .item {
|
8193 | border-bottom: 1px solid #000; }
|
8194 |
|
8195 | .list-ios[inset] .item-inner {
|
8196 | border-bottom: 0; }
|
8197 |
|
8198 | .list-ios[inset] > .item:first-child,
|
8199 | .list-ios[inset] > .item-wrapper:first-child .item {
|
8200 | border-top: 0; }
|
8201 |
|
8202 | .list-ios[inset] > .item:last-child,
|
8203 | .list-ios[inset] > .item-wrapper:last-child .item {
|
8204 | border-bottom: 0; }
|
8205 |
|
8206 | .list-ios[inset] + ion-list[inset] {
|
8207 | margin-top: 0; }
|
8208 |
|
8209 | .list-ios[no-lines] ion-list-header,
|
8210 | .list-ios[no-lines] ion-item-options,
|
8211 | .list-ios[no-lines] .item,
|
8212 | .list-ios[no-lines] .item .item-inner {
|
8213 | border-width: 0; }
|
8214 |
|
8215 | .list-header-ios {
|
8216 | padding-left: 16px;
|
8217 | padding-left: 16px;
|
8218 | position: relative;
|
8219 | border-bottom: 0.55px solid #000;
|
8220 | font-size: 1.2rem;
|
8221 | font-weight: 500;
|
8222 | letter-spacing: 0.1rem;
|
8223 | text-transform: uppercase;
|
8224 | color: #333;
|
8225 | background: transparent; }
|
8226 | @media screen and (orientation: landscape) {
|
8227 | .list-header-ios {
|
8228 | padding-left: calc(constant(safe-area-inset-left) + 16px);
|
8229 | padding-left: calc(env(safe-area-inset-left) + 16px); } }
|
8230 |
|
8231 | .list-header-ios-primary {
|
8232 | color: #fff;
|
8233 | background-color: #007aff; }
|
8234 |
|
8235 | .list-header-ios-secondary {
|
8236 | color: #fff;
|
8237 | background-color: #32db64; }
|
8238 |
|
8239 | .list-header-ios-danger {
|
8240 | color: #fff;
|
8241 | background-color: #d91e18; }
|
8242 |
|
8243 | .list-header-ios-light {
|
8244 | color: #000;
|
8245 | background-color: #f4f4f4; }
|
8246 |
|
8247 | .list-header-ios-dark {
|
8248 | color: #fff;
|
8249 | background-color: #222; }
|
8250 |
|
8251 | .list-md {
|
8252 | margin: -1px 0 16px; }
|
8253 |
|
8254 | .list-md .item-block .item-inner {
|
8255 | border-bottom: 1px solid #dedede; }
|
8256 |
|
8257 | .list-md > .item-block:last-child ion-label,
|
8258 | .list-md > .item-block:last-child .item-inner,
|
8259 | .list-md > .item-wrapper:last-child ion-label,
|
8260 | .list-md > .item-wrapper:last-child .item-inner {
|
8261 | border-bottom: 0; }
|
8262 |
|
8263 | .list-md > ion-input:last-child::after {
|
8264 | left: 0; }
|
8265 |
|
8266 | .list-md ion-item-options {
|
8267 | border-bottom: 1px solid #dedede; }
|
8268 |
|
8269 | .list-md ion-item-options .button {
|
8270 | margin: 0;
|
8271 | border-radius: 0;
|
8272 | display: -webkit-inline-flex;
|
8273 | display: -ms-inline-flexbox;
|
8274 | display: inline-flex;
|
8275 | -webkit-align-items: center;
|
8276 | -ms-flex-align: center;
|
8277 | align-items: center;
|
8278 | height: 100%;
|
8279 | border: 0;
|
8280 | box-shadow: none;
|
8281 | box-sizing: border-box; }
|
8282 |
|
8283 | .list-md ion-item-options .button::before {
|
8284 | margin: 0 auto; }
|
8285 |
|
8286 | .list-md .item[no-lines],
|
8287 | .list-md .item[no-lines] .item-inner {
|
8288 | border-width: 0; }
|
8289 |
|
8290 | .list-md + ion-list ion-list-header {
|
8291 | margin-top: -16px; }
|
8292 |
|
8293 | .list-md[inset] {
|
8294 | margin: 16px;
|
8295 | border-radius: 2px; }
|
8296 |
|
8297 | .list-md[inset] .item:first-child {
|
8298 | border-top-left-radius: 2px;
|
8299 | border-top-right-radius: 2px;
|
8300 | border-top-width: 0; }
|
8301 |
|
8302 | .list-md[inset] .item:last-child {
|
8303 | border-bottom-right-radius: 2px;
|
8304 | border-bottom-left-radius: 2px;
|
8305 | border-bottom-width: 0; }
|
8306 |
|
8307 | .list-md[inset] .item-input {
|
8308 | padding-left: 0;
|
8309 | padding-right: 0; }
|
8310 |
|
8311 | .list-md[inset] + ion-list[inset] {
|
8312 | margin-top: 0; }
|
8313 |
|
8314 | .list-md[inset] ion-list-header {
|
8315 | background-color: #242424; }
|
8316 |
|
8317 | .list-md[no-lines] .item-block,
|
8318 | .list-md[no-lines] ion-item-options,
|
8319 | .list-md[no-lines] .item .item-inner {
|
8320 | border-width: 0; }
|
8321 |
|
8322 | .list-header-md {
|
8323 | padding-left: 16px;
|
8324 | margin-bottom: 13px;
|
8325 | min-height: 4.5rem;
|
8326 | border-top: 1px solid #dedede;
|
8327 | font-size: 1.4rem;
|
8328 | color: #757575; }
|
8329 |
|
8330 | .list-header-md-primary {
|
8331 | color: #fff;
|
8332 | background-color: #007aff; }
|
8333 |
|
8334 | .list-header-md-secondary {
|
8335 | color: #fff;
|
8336 | background-color: #32db64; }
|
8337 |
|
8338 | .list-header-md-danger {
|
8339 | color: #fff;
|
8340 | background-color: #d91e18; }
|
8341 |
|
8342 | .list-header-md-light {
|
8343 | color: #000;
|
8344 | background-color: #f4f4f4; }
|
8345 |
|
8346 | .list-header-md-dark {
|
8347 | color: #fff;
|
8348 | background-color: #222; }
|
8349 |
|
8350 | .list-md .item-input:last-child {
|
8351 | border-bottom: 1px solid #dedede; }
|
8352 |
|
8353 | .list-wp {
|
8354 | margin: 0 0 16px; }
|
8355 |
|
8356 | .list-wp .item-block .item-inner {
|
8357 | border-bottom: 1px solid transparent; }
|
8358 |
|
8359 | .list-wp > .item-block:first-child,
|
8360 | .list-wp > .item-wrapper:first-child .item-block {
|
8361 | border-top: 1px solid transparent; }
|
8362 |
|
8363 | .list-wp > .item-block:last-child,
|
8364 | .list-wp > .item-wrapper:last-child .item-block {
|
8365 | border-bottom: 1px solid transparent; }
|
8366 |
|
8367 | .list-wp > .item-block:last-child ion-label,
|
8368 | .list-wp > .item-block:last-child .item-inner,
|
8369 | .list-wp > .item-wrapper:last-child ion-label,
|
8370 | .list-wp > .item-wrapper:last-child .item-inner {
|
8371 | border-bottom: 0; }
|
8372 |
|
8373 | .list-wp > ion-input:last-child::after {
|
8374 | left: 0; }
|
8375 |
|
8376 | .list-wp ion-item-options .button {
|
8377 | margin: 1px 0;
|
8378 | border-radius: 0;
|
8379 | display: -webkit-inline-flex;
|
8380 | display: -ms-inline-flexbox;
|
8381 | display: inline-flex;
|
8382 | -webkit-align-items: center;
|
8383 | -ms-flex-align: center;
|
8384 | align-items: center;
|
8385 | height: calc(100% - 2px);
|
8386 | border: 0;
|
8387 | box-shadow: none;
|
8388 | box-sizing: border-box; }
|
8389 |
|
8390 | .list-wp ion-item-options .button::before {
|
8391 | margin: 0 auto; }
|
8392 |
|
8393 | .list-wp .item[no-lines],
|
8394 | .list-wp .item[no-lines] .item-inner {
|
8395 | border-width: 0; }
|
8396 |
|
8397 | .list-wp + ion-list ion-list-header {
|
8398 | margin-top: -16px;
|
8399 | padding-top: 0; }
|
8400 |
|
8401 | .list-wp[inset] {
|
8402 | margin: 16px;
|
8403 | border-radius: 2px; }
|
8404 |
|
8405 | .list-wp[inset] .item:first-child {
|
8406 | border-top-left-radius: 2px;
|
8407 | border-top-right-radius: 2px;
|
8408 | border-top-width: 0; }
|
8409 |
|
8410 | .list-wp[inset] .item:last-child {
|
8411 | border-bottom-right-radius: 2px;
|
8412 | border-bottom-left-radius: 2px;
|
8413 | border-bottom-width: 0; }
|
8414 |
|
8415 | .list-wp[inset] .item-input {
|
8416 | padding-left: 0;
|
8417 | padding-right: 0; }
|
8418 |
|
8419 | .list-wp[inset] + ion-list[inset] {
|
8420 | margin-top: 0; }
|
8421 |
|
8422 | .list-wp[inset] ion-list-header {
|
8423 | background-color: #242424; }
|
8424 |
|
8425 | .list-wp[no-lines] .item,
|
8426 | .list-wp[no-lines] .item .item-inner {
|
8427 | border-width: 0; }
|
8428 |
|
8429 | .list-header-wp {
|
8430 | padding-left: 16px;
|
8431 | border-bottom: 1px solid transparent;
|
8432 | font-size: 2rem;
|
8433 | color: #fff; }
|
8434 |
|
8435 | .list-header-wp-primary {
|
8436 | color: #fff;
|
8437 | background-color: #007aff; }
|
8438 |
|
8439 | .list-header-wp-secondary {
|
8440 | color: #fff;
|
8441 | background-color: #32db64; }
|
8442 |
|
8443 | .list-header-wp-danger {
|
8444 | color: #fff;
|
8445 | background-color: #d91e18; }
|
8446 |
|
8447 | .list-header-wp-light {
|
8448 | color: #000;
|
8449 | background-color: #f4f4f4; }
|
8450 |
|
8451 | .list-header-wp-dark {
|
8452 | color: #fff;
|
8453 | background-color: #222; }
|
8454 |
|
8455 | ion-loading {
|
8456 | left: 0;
|
8457 | right: 0;
|
8458 | top: 0;
|
8459 | bottom: 0;
|
8460 | position: absolute;
|
8461 | z-index: 1000;
|
8462 | display: -webkit-flex;
|
8463 | display: -ms-flexbox;
|
8464 | display: flex;
|
8465 | -webkit-align-items: center;
|
8466 | -ms-flex-align: center;
|
8467 | align-items: center;
|
8468 | -webkit-justify-content: center;
|
8469 | -ms-flex-pack: center;
|
8470 | justify-content: center;
|
8471 | contain: strict; }
|
8472 |
|
8473 | .loading-wrapper {
|
8474 | z-index: 10;
|
8475 | display: -webkit-flex;
|
8476 | display: -ms-flexbox;
|
8477 | display: flex;
|
8478 | -webkit-align-items: center;
|
8479 | -ms-flex-align: center;
|
8480 | align-items: center;
|
8481 | opacity: 0; }
|
8482 |
|
8483 | .loading-ios .loading-wrapper {
|
8484 | border-radius: 8px;
|
8485 | max-width: 270px;
|
8486 | max-height: 90%;
|
8487 | color: #000;
|
8488 | background: #f8f8f8;
|
8489 | padding: 24px 34px; }
|
8490 |
|
8491 | .loading-ios .loading-content {
|
8492 | font-weight: bold; }
|
8493 |
|
8494 | .loading-ios .loading-spinner + .loading-content {
|
8495 | margin-left: 16px; }
|
8496 |
|
8497 | .loading-ios .spinner-ios line,
|
8498 | .loading-ios .spinner-ios-small line {
|
8499 | stroke: #69717d; }
|
8500 |
|
8501 | .loading-ios .spinner-bubbles circle {
|
8502 | fill: #69717d; }
|
8503 |
|
8504 | .loading-ios .spinner-circles circle {
|
8505 | fill: #69717d; }
|
8506 |
|
8507 | .loading-ios .spinner-crescent circle {
|
8508 | stroke: #69717d; }
|
8509 |
|
8510 | .loading-ios .spinner-dots circle {
|
8511 | fill: #69717d; }
|
8512 |
|
8513 | .loading-md .loading-wrapper {
|
8514 | border-radius: 2px;
|
8515 | max-width: 280px;
|
8516 | max-height: 90%;
|
8517 | color: rgba(0, 0, 0, 0.5);
|
8518 | background: #fafafa;
|
8519 | box-shadow: 0 16px 20px rgba(0, 0, 0, 0.4);
|
8520 | padding: 24px; }
|
8521 |
|
8522 | .loading-md .loading-spinner + .loading-content {
|
8523 | margin-left: 16px; }
|
8524 |
|
8525 | .loading-md .spinner-ios line,
|
8526 | .loading-md .spinner-ios-small line {
|
8527 | stroke: #007aff; }
|
8528 |
|
8529 | .loading-md .spinner-bubbles circle {
|
8530 | fill: #007aff; }
|
8531 |
|
8532 | .loading-md .spinner-circles circle {
|
8533 | fill: #007aff; }
|
8534 |
|
8535 | .loading-md .spinner-crescent circle {
|
8536 | stroke: #007aff; }
|
8537 |
|
8538 | .loading-md .spinner-dots circle {
|
8539 | fill: #007aff; }
|
8540 |
|
8541 | .loading-wp .loading-wrapper {
|
8542 | border-radius: 2px;
|
8543 | max-width: 280px;
|
8544 | max-height: 90%;
|
8545 | color: #fff;
|
8546 | background: #000;
|
8547 | padding: 20px; }
|
8548 |
|
8549 | .loading-wp .loading-spinner + .loading-content {
|
8550 | margin-left: 16px; }
|
8551 |
|
8552 | .loading-wp .spinner-ios line,
|
8553 | .loading-wp .spinner-ios-small line {
|
8554 | stroke: #fff; }
|
8555 |
|
8556 | .loading-wp .spinner-bubbles circle {
|
8557 | fill: #fff; }
|
8558 |
|
8559 | .loading-wp .spinner-circles circle {
|
8560 | fill: #fff; }
|
8561 |
|
8562 | .loading-wp .spinner-crescent circle {
|
8563 | stroke: #fff; }
|
8564 |
|
8565 | .loading-wp .spinner-dots circle {
|
8566 | fill: #fff; }
|
8567 |
|
8568 | ion-menu {
|
8569 | left: 0;
|
8570 | right: 0;
|
8571 | top: 0;
|
8572 | bottom: 0;
|
8573 | position: absolute;
|
8574 | display: none;
|
8575 | contain: strict; }
|
8576 |
|
8577 | ion-menu.show-menu {
|
8578 | display: block; }
|
8579 |
|
8580 | .menu-inner {
|
8581 | left: 0;
|
8582 | right: auto;
|
8583 | top: 0;
|
8584 | bottom: 0;
|
8585 | -webkit-transform: translate3d(-9999px, 0, 0);
|
8586 | transform: translate3d(-9999px, 0, 0);
|
8587 | position: absolute;
|
8588 | display: block;
|
8589 | width: 304px;
|
8590 | height: 100%;
|
8591 | contain: strict; }
|
8592 |
|
8593 | .menu-inner > ion-header,
|
8594 | .menu-inner > ion-content,
|
8595 | .menu-inner > ion-footer {
|
8596 | position: absolute; }
|
8597 |
|
8598 | ion-menu[side=left] > .menu-inner {
|
8599 | right: auto;
|
8600 | left: 0; }
|
8601 |
|
8602 | ion-menu[side=right] > .menu-inner {
|
8603 | right: 0;
|
8604 | left: auto; }
|
8605 |
|
8606 | ion-menu[side=end] > .menu-inner {
|
8607 | left: auto;
|
8608 | right: 0; }
|
8609 |
|
8610 | ion-menu ion-backdrop {
|
8611 | z-index: -1;
|
8612 | display: none;
|
8613 | opacity: .01; }
|
8614 |
|
8615 | .menu-content {
|
8616 | -webkit-transform: translate3d(0, 0, 0);
|
8617 | transform: translate3d(0, 0, 0); }
|
8618 |
|
8619 | .menu-content-open {
|
8620 | cursor: pointer;
|
8621 | -ms-touch-action: manipulation;
|
8622 | touch-action: manipulation; }
|
8623 |
|
8624 | .menu-content-open ion-pane,
|
8625 | .menu-content-open ion-content,
|
8626 | .menu-content-open .toolbar {
|
8627 | pointer-events: none; }
|
8628 |
|
8629 | @media (max-width: 340px) {
|
8630 | .menu-inner {
|
8631 | width: 264px; } }
|
8632 |
|
8633 | ion-menu[type=reveal] {
|
8634 | z-index: 0; }
|
8635 |
|
8636 | ion-menu[type=reveal].show-menu .menu-inner {
|
8637 | -webkit-transform: translate3d(0, 0, 0);
|
8638 | transform: translate3d(0, 0, 0); }
|
8639 |
|
8640 | ion-menu[type=overlay] {
|
8641 | z-index: 80; }
|
8642 |
|
8643 | ion-menu[type=overlay] .show-backdrop {
|
8644 | display: block; }
|
8645 |
|
8646 | .ios .menu-inner {
|
8647 | background: #191919; }
|
8648 |
|
8649 | .ios .menu-content-reveal {
|
8650 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
|
8651 |
|
8652 | .ios .menu-content-push {
|
8653 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
|
8654 |
|
8655 | .ios ion-menu[type=overlay] .menu-inner {
|
8656 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
|
8657 |
|
8658 | .md .menu-inner {
|
8659 | background: #191919; }
|
8660 |
|
8661 | .md .menu-content-reveal {
|
8662 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
|
8663 |
|
8664 | .md .menu-content-push {
|
8665 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
|
8666 |
|
8667 | .md ion-menu[type=overlay] .menu-inner {
|
8668 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); }
|
8669 |
|
8670 | .wp .menu-inner {
|
8671 | background: #f2f2f2; }
|
8672 |
|
8673 | ion-modal {
|
8674 | left: 0;
|
8675 | top: 0;
|
8676 | position: absolute;
|
8677 | display: block;
|
8678 | width: 100%;
|
8679 | height: 100%;
|
8680 | contain: strict; }
|
8681 |
|
8682 | @media not all and (min-width: 768px) and (min-height: 600px) {
|
8683 | ion-modal ion-backdrop {
|
8684 | visibility: hidden; } }
|
8685 |
|
8686 | .modal-wrapper {
|
8687 | z-index: 10;
|
8688 | height: 100%;
|
8689 | contain: strict; }
|
8690 | @media only screen and (min-width: 768px) and (min-height: 600px) {
|
8691 | .modal-wrapper {
|
8692 | left: calc(50% - (600px/2));
|
8693 | top: calc(50% - (500px/2));
|
8694 | position: absolute;
|
8695 | width: 600px;
|
8696 | height: 500px; } }
|
8697 | @media only screen and (min-width: 768px) and (min-height: 768px) {
|
8698 | .modal-wrapper {
|
8699 | left: calc(50% - (600px/2));
|
8700 | top: calc(50% - (600px/2));
|
8701 | position: absolute;
|
8702 | width: 600px;
|
8703 | height: 600px; } }
|
8704 |
|
8705 | .ios .modal-wrapper {
|
8706 | -webkit-transform: translate3d(0, 100%, 0);
|
8707 | transform: translate3d(0, 100%, 0); }
|
8708 | @media only screen and (min-width: 768px) and (min-height: 600px) {
|
8709 | .ios .modal-wrapper {
|
8710 | border-radius: 10px;
|
8711 | overflow: hidden; } }
|
8712 |
|
8713 | .md .modal-wrapper {
|
8714 | -webkit-transform: translate3d(0, 40px, 0);
|
8715 | transform: translate3d(0, 40px, 0);
|
8716 | opacity: .01; }
|
8717 | @media only screen and (min-width: 768px) and (min-height: 600px) {
|
8718 | .md .modal-wrapper {
|
8719 | border-radius: 2px;
|
8720 | overflow: hidden;
|
8721 | box-shadow: 0 28px 48px rgba(0, 0, 0, 0.4); } }
|
8722 |
|
8723 | .wp .modal-wrapper {
|
8724 | -webkit-transform: translate3d(0, 40px, 0);
|
8725 | transform: translate3d(0, 40px, 0);
|
8726 | opacity: .01; }
|
8727 |
|
8728 | .note-ios {
|
8729 | color: black; }
|
8730 |
|
8731 | .note-ios-primary {
|
8732 | color: #007aff; }
|
8733 |
|
8734 | .note-ios-secondary {
|
8735 | color: #32db64; }
|
8736 |
|
8737 | .note-ios-danger {
|
8738 | color: #d91e18; }
|
8739 |
|
8740 | .note-ios-light {
|
8741 | color: #f4f4f4; }
|
8742 |
|
8743 | .note-ios-dark {
|
8744 | color: #222; }
|
8745 |
|
8746 | .note-md {
|
8747 | color: #c5c5c5; }
|
8748 |
|
8749 | .note-md-primary {
|
8750 | color: #007aff; }
|
8751 |
|
8752 | .note-md-secondary {
|
8753 | color: #32db64; }
|
8754 |
|
8755 | .note-md-danger {
|
8756 | color: #d91e18; }
|
8757 |
|
8758 | .note-md-light {
|
8759 | color: #f4f4f4; }
|
8760 |
|
8761 | .note-md-dark {
|
8762 | color: #222; }
|
8763 |
|
8764 | .note-wp {
|
8765 | color: rgba(0, 0, 0, 0.5); }
|
8766 |
|
8767 | .note-wp-primary {
|
8768 | color: #007aff; }
|
8769 |
|
8770 | .note-wp-secondary {
|
8771 | color: #32db64; }
|
8772 |
|
8773 | .note-wp-danger {
|
8774 | color: #d91e18; }
|
8775 |
|
8776 | .note-wp-light {
|
8777 | color: #f4f4f4; }
|
8778 |
|
8779 | .note-wp-dark {
|
8780 | color: #222; }
|
8781 |
|
8782 | ion-picker-cmp {
|
8783 | left: 0;
|
8784 | top: 0;
|
8785 | position: absolute;
|
8786 | z-index: 1000;
|
8787 | display: block;
|
8788 | width: 100%;
|
8789 | height: 100%;
|
8790 | contain: strict; }
|
8791 |
|
8792 | .picker-toolbar {
|
8793 | z-index: 1;
|
8794 | width: 100%;
|
8795 | contain: strict; }
|
8796 |
|
8797 | .picker-wrapper {
|
8798 | left: 0;
|
8799 | right: 0;
|
8800 | bottom: 0;
|
8801 | margin: auto;
|
8802 | -webkit-transform: translate3d(0, 100%, 0);
|
8803 | transform: translate3d(0, 100%, 0);
|
8804 | position: absolute;
|
8805 | z-index: 10;
|
8806 | display: -webkit-flex;
|
8807 | display: -ms-flexbox;
|
8808 | display: flex;
|
8809 | overflow: hidden;
|
8810 | -webkit-flex-direction: column;
|
8811 | -ms-flex-direction: column;
|
8812 | flex-direction: column;
|
8813 | width: 100%;
|
8814 | max-width: 500px;
|
8815 | contain: strict; }
|
8816 |
|
8817 | .picker-columns {
|
8818 | margin-bottom: constant(safe-area-inset-bottom);
|
8819 | margin-bottom: env(safe-area-inset-bottom);
|
8820 | position: relative;
|
8821 | display: -webkit-flex;
|
8822 | display: -ms-flexbox;
|
8823 | display: flex;
|
8824 | overflow: hidden;
|
8825 | -webkit-justify-content: center;
|
8826 | -ms-flex-pack: center;
|
8827 | justify-content: center;
|
8828 | contain: strict; }
|
8829 |
|
8830 | .picker-col {
|
8831 | position: relative;
|
8832 | display: -webkit-flex;
|
8833 | display: -ms-flexbox;
|
8834 | display: flex;
|
8835 | -webkit-flex: 1;
|
8836 | -ms-flex: 1;
|
8837 | flex: 1;
|
8838 | -webkit-justify-content: center;
|
8839 | -ms-flex-pack: center;
|
8840 | justify-content: center;
|
8841 | height: 100%;
|
8842 | box-sizing: content-box;
|
8843 | contain: content; }
|
8844 |
|
8845 | .picker-opts {
|
8846 | position: relative;
|
8847 | -webkit-flex: 1;
|
8848 | -ms-flex: 1;
|
8849 | flex: 1;
|
8850 | max-width: 100%; }
|
8851 |
|
8852 | .picker-prefix {
|
8853 | text-align: right;
|
8854 | text-align: end;
|
8855 | position: relative;
|
8856 | -webkit-flex: 2;
|
8857 | -ms-flex: 2;
|
8858 | flex: 2;
|
8859 | min-width: 45%;
|
8860 | max-width: 50%;
|
8861 | white-space: nowrap; }
|
8862 |
|
8863 | .picker-suffix {
|
8864 | text-align: left;
|
8865 | text-align: start;
|
8866 | position: relative;
|
8867 | -webkit-flex: 2;
|
8868 | -ms-flex: 2;
|
8869 | flex: 2;
|
8870 | min-width: 45%;
|
8871 | max-width: 50%;
|
8872 | white-space: nowrap; }
|
8873 |
|
8874 | .picker-opt {
|
8875 | left: 0;
|
8876 | top: 0;
|
8877 | text-align: center;
|
8878 | position: absolute;
|
8879 | display: block;
|
8880 | overflow: hidden;
|
8881 | width: 100%;
|
8882 | text-overflow: ellipsis;
|
8883 | white-space: nowrap;
|
8884 | will-change: transform;
|
8885 | contain: strict; }
|
8886 |
|
8887 | .picker-opt.picker-opt-disabled {
|
8888 | pointer-events: none; }
|
8889 |
|
8890 | .picker-opt-disabled {
|
8891 | opacity: 0; }
|
8892 |
|
8893 | .picker-opts-left {
|
8894 | -webkit-justify-content: flex-start;
|
8895 | -ms-flex-pack: start;
|
8896 | justify-content: flex-start; }
|
8897 |
|
8898 | .picker-opts-right {
|
8899 | -webkit-justify-content: flex-end;
|
8900 | -ms-flex-pack: end;
|
8901 | justify-content: flex-end; }
|
8902 |
|
8903 | .picker-above-highlight,
|
8904 | .picker-below-highlight {
|
8905 | display: none;
|
8906 | pointer-events: none; }
|
8907 |
|
8908 | .picker-ios .picker-wrapper {
|
8909 | height: 260px;
|
8910 | border-top: 1px solid #000;
|
8911 | background: #242424; }
|
8912 |
|
8913 | .picker-ios .picker-toolbar {
|
8914 | display: -webkit-flex;
|
8915 | display: -ms-flexbox;
|
8916 | display: flex;
|
8917 | height: 44px;
|
8918 | border-bottom: 0.55px solid #000;
|
8919 | background: #242424; }
|
8920 |
|
8921 | .picker-ios .picker-toolbar-button {
|
8922 | text-align: right;
|
8923 | text-align: end;
|
8924 | -webkit-flex: 1;
|
8925 | -ms-flex: 1;
|
8926 | flex: 1; }
|
8927 |
|
8928 | .picker-ios .picker-toolbar-button:last-child .picker-button {
|
8929 | font-weight: 600; }
|
8930 |
|
8931 | .picker-ios .picker-toolbar-cancel {
|
8932 | text-align: left;
|
8933 | text-align: start;
|
8934 | font-weight: normal; }
|
8935 |
|
8936 | .picker-ios .picker-button,
|
8937 | .picker-ios .picker-button.activated {
|
8938 | margin: 0;
|
8939 | height: 44px;
|
8940 | color: #007aff;
|
8941 | background: transparent; }
|
8942 |
|
8943 | .picker-columns {
|
8944 | height: 215px;
|
8945 | -webkit-perspective: 1000px;
|
8946 | perspective: 1000px; }
|
8947 |
|
8948 | .picker-ios .picker-col {
|
8949 | -webkit-transform-style: preserve-3d;
|
8950 | transform-style: preserve-3d;
|
8951 | padding: 0 4px; }
|
8952 |
|
8953 | .picker-ios .picker-prefix,
|
8954 | .picker-ios .picker-suffix,
|
8955 | .picker-ios .picker-opts {
|
8956 | top: 77px;
|
8957 | font-size: 20px;
|
8958 | line-height: 42px;
|
8959 | color: #fff;
|
8960 | -webkit-transform-style: preserve-3d;
|
8961 | transform-style: preserve-3d;
|
8962 | pointer-events: none; }
|
8963 |
|
8964 | .picker-ios .picker-opt {
|
8965 | margin: 0;
|
8966 | -webkit-transform-origin: center center;
|
8967 | transform-origin: center center;
|
8968 | height: 4.6rem;
|
8969 | font-size: 20px;
|
8970 | line-height: 42px;
|
8971 | color: #fff;
|
8972 | background: transparent;
|
8973 | -webkit-transform-style: preserve-3d;
|
8974 | transform-style: preserve-3d;
|
8975 | transition-timing-function: ease-out;
|
8976 | -webkit-backface-visibility: hidden;
|
8977 | backface-visibility: hidden;
|
8978 | pointer-events: auto;
|
8979 | padding: 0; }
|
8980 |
|
8981 | .picker-ios .picker-above-highlight {
|
8982 | left: 0;
|
8983 | top: 0;
|
8984 | -webkit-transform: translate3d(0, 0, 90px);
|
8985 | transform: translate3d(0, 0, 90px);
|
8986 | position: absolute;
|
8987 | z-index: 10;
|
8988 | display: block;
|
8989 | width: 100%;
|
8990 | height: 81px;
|
8991 | border-bottom: 1px solid #000;
|
8992 | background: linear-gradient(to bottom, #242424 20%, rgba(36, 36, 36, 0.7) 100%); }
|
8993 |
|
8994 | .picker-ios .picker-below-highlight {
|
8995 | left: 0;
|
8996 | top: 115px;
|
8997 | -webkit-transform: translate3d(0, 0, 90px);
|
8998 | transform: translate3d(0, 0, 90px);
|
8999 | position: absolute;
|
9000 | z-index: 11;
|
9001 | display: block;
|
9002 | width: 100%;
|
9003 | height: 119px;
|
9004 | border-top: 1px solid #000;
|
9005 | background: linear-gradient(to top, #242424 30%, rgba(36, 36, 36, 0.7) 100%); }
|
9006 |
|
9007 | .picker-md .picker-wrapper {
|
9008 | height: 260px;
|
9009 | border-top: 0.55px solid #dedede;
|
9010 | background: #242424; }
|
9011 |
|
9012 | .picker-md .picker-toolbar {
|
9013 | display: -webkit-flex;
|
9014 | display: -ms-flexbox;
|
9015 | display: flex;
|
9016 | -webkit-justify-content: flex-end;
|
9017 | -ms-flex-pack: end;
|
9018 | justify-content: flex-end;
|
9019 | height: 44px;
|
9020 | background: #242424; }
|
9021 |
|
9022 | .picker-md .picker-button,
|
9023 | .picker-md .picker-button.activated {
|
9024 | margin: 0;
|
9025 | height: 44px;
|
9026 | color: #007aff;
|
9027 | background: transparent;
|
9028 | box-shadow: none; }
|
9029 |
|
9030 | .picker-md .picker-columns {
|
9031 | height: 216px;
|
9032 | -webkit-perspective: 1800px;
|
9033 | perspective: 1800px; }
|
9034 |
|
9035 | .picker-md .picker-col {
|
9036 | -webkit-transform-style: preserve-3d;
|
9037 | transform-style: preserve-3d;
|
9038 | padding: 0 8px; }
|
9039 |
|
9040 | .picker-md .picker-prefix,
|
9041 | .picker-md .picker-suffix,
|
9042 | .picker-md .picker-opts {
|
9043 | top: 77px;
|
9044 | font-size: 22px;
|
9045 | line-height: 42px;
|
9046 | color: #fff;
|
9047 | -webkit-transform-style: preserve-3d;
|
9048 | transform-style: preserve-3d;
|
9049 | pointer-events: none; }
|
9050 |
|
9051 | .picker-md .picker-opt {
|
9052 | margin: 0;
|
9053 | height: 4.3rem;
|
9054 | font-size: 22px;
|
9055 | line-height: 42px;
|
9056 | color: #fff;
|
9057 | background: transparent;
|
9058 | transition-timing-function: ease-out;
|
9059 | -webkit-backface-visibility: hidden;
|
9060 | backface-visibility: hidden;
|
9061 | pointer-events: auto;
|
9062 | padding: 0; }
|
9063 |
|
9064 | .picker-md .picker-prefix,
|
9065 | .picker-md .picker-suffix,
|
9066 | .picker-md .picker-opt.picker-opt-selected {
|
9067 | color: #007aff; }
|
9068 |
|
9069 | .picker-md .picker-above-highlight {
|
9070 | left: 0;
|
9071 | top: 0;
|
9072 | -webkit-transform: translate3d(0, 0, 90px);
|
9073 | transform: translate3d(0, 0, 90px);
|
9074 | position: absolute;
|
9075 | z-index: 10;
|
9076 | width: 100%;
|
9077 | height: 81px;
|
9078 | border-bottom: 1px solid #dedede;
|
9079 | background: linear-gradient(to bottom, #242424 20%, rgba(36, 36, 36, 0.7) 100%); }
|
9080 |
|
9081 | .picker-md .picker-below-highlight {
|
9082 | left: 0;
|
9083 | top: 115px;
|
9084 | -webkit-transform: translate3d(0, 0, 90px);
|
9085 | transform: translate3d(0, 0, 90px);
|
9086 | position: absolute;
|
9087 | z-index: 11;
|
9088 | width: 100%;
|
9089 | height: 119px;
|
9090 | border-top: 1px solid #dedede;
|
9091 | background: linear-gradient(to top, #242424 30%, rgba(36, 36, 36, 0.7) 100%); }
|
9092 |
|
9093 | .picker-wp .picker-wrapper {
|
9094 | height: 260px;
|
9095 | border-top: 0.55px solid transparent;
|
9096 | background: #242424; }
|
9097 |
|
9098 | .picker-wp .picker-toolbar {
|
9099 | display: -webkit-flex;
|
9100 | display: -ms-flexbox;
|
9101 | display: flex;
|
9102 | -webkit-justify-content: flex-end;
|
9103 | -ms-flex-pack: end;
|
9104 | justify-content: flex-end;
|
9105 | height: 44px;
|
9106 | border-width: 0.55px;
|
9107 | background: #242424; }
|
9108 |
|
9109 | .picker-wp .picker-toolbar-button {
|
9110 | text-align: right;
|
9111 | text-align: end;
|
9112 | -webkit-flex: 1;
|
9113 | -ms-flex: 1;
|
9114 | flex: 1; }
|
9115 |
|
9116 | .picker-wp .picker-toolbar-cancel {
|
9117 | text-align: left;
|
9118 | text-align: start;
|
9119 | font-weight: normal; }
|
9120 |
|
9121 | .picker-wp .picker-button,
|
9122 | .picker-wp .picker-button.activated {
|
9123 | margin: 0;
|
9124 | height: 44px;
|
9125 | color: #007aff;
|
9126 | background: transparent;
|
9127 | box-shadow: none; }
|
9128 |
|
9129 | .picker-wp .picker-columns {
|
9130 | height: 216px;
|
9131 | -webkit-perspective: 1800px;
|
9132 | perspective: 1800px; }
|
9133 |
|
9134 | .picker-wp .picker-col {
|
9135 | -webkit-transform-style: preserve-3d;
|
9136 | transform-style: preserve-3d;
|
9137 | padding: 0 4px; }
|
9138 |
|
9139 | .picker-wp .picker-prefix,
|
9140 | .picker-wp .picker-suffix,
|
9141 | .picker-wp .picker-opts {
|
9142 | top: 77px;
|
9143 | font-size: 22px;
|
9144 | line-height: 42px;
|
9145 | color: #fff;
|
9146 | -webkit-transform-style: preserve-3d;
|
9147 | transform-style: preserve-3d;
|
9148 | pointer-events: none; }
|
9149 |
|
9150 | .picker-wp .picker-opt {
|
9151 | margin: 0;
|
9152 | height: 4.2rem;
|
9153 | font-size: 22px;
|
9154 | line-height: 42px;
|
9155 | color: #fff;
|
9156 | background: transparent;
|
9157 | transition-timing-function: ease-out;
|
9158 | -webkit-backface-visibility: hidden;
|
9159 | backface-visibility: hidden;
|
9160 | pointer-events: auto;
|
9161 | padding: 0; }
|
9162 |
|
9163 | .picker-wp .picker-prefix,
|
9164 | .picker-wp .picker-suffix,
|
9165 | .picker-wp .picker-opt-selected {
|
9166 | color: #007aff; }
|
9167 |
|
9168 | .picker-wp .picker-above-highlight {
|
9169 | left: 0;
|
9170 | top: 0;
|
9171 | -webkit-transform: translate3d(0, 0, 90px);
|
9172 | transform: translate3d(0, 0, 90px);
|
9173 | position: absolute;
|
9174 | z-index: 10;
|
9175 | width: 100%;
|
9176 | height: 81px;
|
9177 | border-bottom: 1px solid transparent;
|
9178 | background: linear-gradient(to bottom, #242424 20%, rgba(36, 36, 36, 0.7) 100%); }
|
9179 |
|
9180 | .picker-wp .picker-below-highlight {
|
9181 | left: 0;
|
9182 | top: 115px;
|
9183 | -webkit-transform: translate3d(0, 0, 90px);
|
9184 | transform: translate3d(0, 0, 90px);
|
9185 | position: absolute;
|
9186 | z-index: 11;
|
9187 | width: 100%;
|
9188 | height: 119px;
|
9189 | border-top: 1px solid transparent;
|
9190 | background: linear-gradient(to top, #242424 30%, rgba(36, 36, 36, 0.7) 100%); }
|
9191 |
|
9192 | ion-popover {
|
9193 | left: 0;
|
9194 | right: 0;
|
9195 | top: 0;
|
9196 | bottom: 0;
|
9197 | position: absolute;
|
9198 | z-index: 1000;
|
9199 | display: -webkit-flex;
|
9200 | display: -ms-flexbox;
|
9201 | display: flex;
|
9202 | -webkit-align-items: center;
|
9203 | -ms-flex-align: center;
|
9204 | align-items: center;
|
9205 | -webkit-justify-content: center;
|
9206 | -ms-flex-pack: center;
|
9207 | justify-content: center; }
|
9208 |
|
9209 | .popover-wrapper {
|
9210 | z-index: 10;
|
9211 | opacity: 0; }
|
9212 |
|
9213 | .popover-content {
|
9214 | position: absolute;
|
9215 | z-index: 10;
|
9216 | display: -webkit-flex;
|
9217 | display: -ms-flexbox;
|
9218 | display: flex;
|
9219 | overflow: auto;
|
9220 | -webkit-flex-direction: column;
|
9221 | -ms-flex-direction: column;
|
9222 | flex-direction: column; }
|
9223 |
|
9224 | .popover-content ion-content,
|
9225 | .popover-content .scroll-content {
|
9226 | contain: none; }
|
9227 |
|
9228 | .popover-content .scroll-content {
|
9229 | position: relative; }
|
9230 |
|
9231 | .popover-ios .popover-content {
|
9232 | border-radius: 10px;
|
9233 | width: 200px;
|
9234 | min-width: 0;
|
9235 | min-height: 0;
|
9236 | max-height: 90%;
|
9237 | color: #fff;
|
9238 | background: #191919; }
|
9239 |
|
9240 | .popover-ios .popover-arrow {
|
9241 | position: absolute;
|
9242 | display: block;
|
9243 | overflow: hidden;
|
9244 | width: 20px;
|
9245 | height: 10px; }
|
9246 |
|
9247 | .popover-ios .popover-arrow::after {
|
9248 | left: 3px;
|
9249 | top: 3px;
|
9250 | border-radius: 3px;
|
9251 | position: absolute;
|
9252 | z-index: 10;
|
9253 | width: 14px;
|
9254 | height: 14px;
|
9255 | background-color: #191919;
|
9256 | content: "";
|
9257 | -webkit-transform: rotate(45deg);
|
9258 | transform: rotate(45deg); }
|
9259 |
|
9260 | .popover-ios.popover-bottom .popover-arrow {
|
9261 | top: auto;
|
9262 | bottom: -10px; }
|
9263 |
|
9264 | .popover-ios.popover-bottom .popover-arrow::after {
|
9265 | top: -6px; }
|
9266 |
|
9267 | .popover-ios .item-ios {
|
9268 | padding-left: 16px; }
|
9269 |
|
9270 | .popover-ios .item-ios[detail-push] .item-inner,
|
9271 | .popover-ios button.item-ios:not([detail-none]) .item-inner,
|
9272 | .popover-ios a.item-ios:not([detail-none]) .item-inner {
|
9273 | background-position: right 14px center; }
|
9274 |
|
9275 | .popover-md .popover-content {
|
9276 | border-radius: 2px;
|
9277 | -webkit-transform-origin: left top;
|
9278 | transform-origin: left top;
|
9279 | width: 250px;
|
9280 | min-width: 0;
|
9281 | min-height: 0;
|
9282 | max-height: 90%;
|
9283 | color: #fff;
|
9284 | background: #191919;
|
9285 | box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.3); }
|
9286 |
|
9287 | .popover-md .popover-viewport {
|
9288 | opacity: 0;
|
9289 | transition-delay: 100ms; }
|
9290 |
|
9291 | .popover-wp .popover-content {
|
9292 | border-radius: 0;
|
9293 | -webkit-transform-origin: left top;
|
9294 | transform-origin: left top;
|
9295 | width: 200px;
|
9296 | min-width: 0;
|
9297 | min-height: 0;
|
9298 | max-height: 90%;
|
9299 | border: 2px solid #ccc;
|
9300 | color: #fff;
|
9301 | background: #191919; }
|
9302 |
|
9303 | .popover-wp .popover-viewport {
|
9304 | opacity: 0;
|
9305 | transition-delay: 100ms; }
|
9306 |
|
9307 | .radio-ios {
|
9308 | position: relative;
|
9309 | display: inline-block; }
|
9310 |
|
9311 | .radio-ios .radio-icon {
|
9312 | position: relative;
|
9313 | display: block;
|
9314 | width: 16px;
|
9315 | height: 21px; }
|
9316 |
|
9317 | .radio-ios .radio-checked .radio-inner {
|
9318 | left: 7px;
|
9319 | top: 4px;
|
9320 | position: absolute;
|
9321 | width: 5px;
|
9322 | height: 12px;
|
9323 | border-width: 2px;
|
9324 | border-top-width: 0;
|
9325 | border-left-width: 0;
|
9326 | border-style: solid;
|
9327 | border-color: #007aff;
|
9328 | -webkit-transform: rotate(45deg);
|
9329 | transform: rotate(45deg); }
|
9330 |
|
9331 | .radio-ios.radio-disabled,
|
9332 | .item-ios.item-radio-disabled ion-label {
|
9333 | opacity: 0.3;
|
9334 | pointer-events: none; }
|
9335 |
|
9336 | .item-ios .radio-ios {
|
9337 | position: static;
|
9338 | display: block;
|
9339 | margin: 8px 11px 8px 8px; }
|
9340 | .item-ios .radio-ios[item-left], .item-ios .radio-ios[item-start] {
|
9341 | margin: 8px 21px 8px 3px; }
|
9342 |
|
9343 | .item-radio.item-ios ion-label {
|
9344 | margin-left: 0; }
|
9345 |
|
9346 | .item-radio-checked.item-ios ion-label {
|
9347 | color: #007aff; }
|
9348 |
|
9349 | .item-radio-ios-primary.item-radio-checked ion-label {
|
9350 | color: #007aff; }
|
9351 |
|
9352 | .radio-ios-primary .radio-checked {
|
9353 | color: #007aff; }
|
9354 |
|
9355 | .radio-ios-primary .radio-checked .radio-inner {
|
9356 | border-color: #007aff; }
|
9357 |
|
9358 | .item-radio-ios-secondary.item-radio-checked ion-label {
|
9359 | color: #32db64; }
|
9360 |
|
9361 | .radio-ios-secondary .radio-checked {
|
9362 | color: #32db64; }
|
9363 |
|
9364 | .radio-ios-secondary .radio-checked .radio-inner {
|
9365 | border-color: #32db64; }
|
9366 |
|
9367 | .item-radio-ios-danger.item-radio-checked ion-label {
|
9368 | color: #d91e18; }
|
9369 |
|
9370 | .radio-ios-danger .radio-checked {
|
9371 | color: #d91e18; }
|
9372 |
|
9373 | .radio-ios-danger .radio-checked .radio-inner {
|
9374 | border-color: #d91e18; }
|
9375 |
|
9376 | .item-radio-ios-light.item-radio-checked ion-label {
|
9377 | color: #f4f4f4; }
|
9378 |
|
9379 | .radio-ios-light .radio-checked {
|
9380 | color: #f4f4f4; }
|
9381 |
|
9382 | .radio-ios-light .radio-checked .radio-inner {
|
9383 | border-color: #f4f4f4; }
|
9384 |
|
9385 | .item-radio-ios-dark.item-radio-checked ion-label {
|
9386 | color: #222; }
|
9387 |
|
9388 | .radio-ios-dark .radio-checked {
|
9389 | color: #222; }
|
9390 |
|
9391 | .radio-ios-dark .radio-checked .radio-inner {
|
9392 | border-color: #222; }
|
9393 |
|
9394 | .radio-md {
|
9395 | position: relative;
|
9396 | display: inline-block; }
|
9397 |
|
9398 | .radio-md .radio-icon {
|
9399 | left: 0;
|
9400 | top: 0;
|
9401 | margin: 0;
|
9402 | border-radius: 50%;
|
9403 | position: relative;
|
9404 | display: block;
|
9405 | width: 16px;
|
9406 | height: 16px;
|
9407 | border-width: 2px;
|
9408 | border-style: solid;
|
9409 | border-color: #787878; }
|
9410 |
|
9411 | .radio-md .radio-inner {
|
9412 | left: 2px;
|
9413 | top: 2px;
|
9414 | border-radius: 50%;
|
9415 | position: absolute;
|
9416 | width: 8px;
|
9417 | height: 8px;
|
9418 | background-color: #007aff;
|
9419 | -webkit-transform: scale3d(0, 0, 0);
|
9420 | transform: scale3d(0, 0, 0);
|
9421 | transition: -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
9422 | transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
9423 | transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 280ms cubic-bezier(0.4, 0, 0.2, 1); }
|
9424 |
|
9425 | .radio-md .radio-checked {
|
9426 | border-color: #007aff; }
|
9427 |
|
9428 | .radio-md .radio-checked .radio-inner {
|
9429 | -webkit-transform: scale3d(1, 1, 1);
|
9430 | transform: scale3d(1, 1, 1); }
|
9431 |
|
9432 | .radio-md.radio-disabled,
|
9433 | .item-md.item-radio-disabled ion-label {
|
9434 | opacity: 0.3;
|
9435 | pointer-events: none; }
|
9436 |
|
9437 | .item-md .radio-md {
|
9438 | position: static;
|
9439 | display: block;
|
9440 | margin: 9px 10px 9px 0; }
|
9441 | .item-md .radio-md[item-left], .item-md .radio-md[item-start] {
|
9442 | margin: 11px 36px 10px 4px; }
|
9443 |
|
9444 | .item-radio.item-md ion-label {
|
9445 | margin-left: 0; }
|
9446 |
|
9447 | .item-radio-checked.item-md ion-label {
|
9448 | color: #007aff; }
|
9449 |
|
9450 | .item-radio-md-primary.item-radio-checked ion-label {
|
9451 | color: #007aff; }
|
9452 |
|
9453 | .radio-md-primary .radio-checked {
|
9454 | border-color: #007aff; }
|
9455 |
|
9456 | .radio-md-primary .radio-inner {
|
9457 | background-color: #007aff; }
|
9458 |
|
9459 | .item-radio-md-secondary.item-radio-checked ion-label {
|
9460 | color: #32db64; }
|
9461 |
|
9462 | .radio-md-secondary .radio-checked {
|
9463 | border-color: #32db64; }
|
9464 |
|
9465 | .radio-md-secondary .radio-inner {
|
9466 | background-color: #32db64; }
|
9467 |
|
9468 | .item-radio-md-danger.item-radio-checked ion-label {
|
9469 | color: #d91e18; }
|
9470 |
|
9471 | .radio-md-danger .radio-checked {
|
9472 | border-color: #d91e18; }
|
9473 |
|
9474 | .radio-md-danger .radio-inner {
|
9475 | background-color: #d91e18; }
|
9476 |
|
9477 | .item-radio-md-light.item-radio-checked ion-label {
|
9478 | color: #f4f4f4; }
|
9479 |
|
9480 | .radio-md-light .radio-checked {
|
9481 | border-color: #f4f4f4; }
|
9482 |
|
9483 | .radio-md-light .radio-inner {
|
9484 | background-color: #f4f4f4; }
|
9485 |
|
9486 | .item-radio-md-dark.item-radio-checked ion-label {
|
9487 | color: #222; }
|
9488 |
|
9489 | .radio-md-dark .radio-checked {
|
9490 | border-color: #222; }
|
9491 |
|
9492 | .radio-md-dark .radio-inner {
|
9493 | background-color: #222; }
|
9494 |
|
9495 | .radio-wp {
|
9496 | position: relative;
|
9497 | display: inline-block; }
|
9498 |
|
9499 | .radio-wp .radio-icon {
|
9500 | left: 0;
|
9501 | top: 0;
|
9502 | margin: 0;
|
9503 | border-radius: 50%;
|
9504 | position: relative;
|
9505 | display: block;
|
9506 | width: 16px;
|
9507 | height: 16px;
|
9508 | border-width: 2px;
|
9509 | border-style: solid;
|
9510 | border-color: #333; }
|
9511 |
|
9512 | .radio-wp .radio-inner {
|
9513 | left: 2px;
|
9514 | top: 2px;
|
9515 | border-radius: 50%;
|
9516 | position: absolute;
|
9517 | display: none;
|
9518 | width: 8px;
|
9519 | height: 8px;
|
9520 | background-color: #333; }
|
9521 |
|
9522 | .radio-wp .radio-checked {
|
9523 | border-color: #007aff; }
|
9524 |
|
9525 | .radio-wp .radio-checked .radio-inner {
|
9526 | display: block; }
|
9527 |
|
9528 | .radio-wp.radio-disabled,
|
9529 | .item-wp.item-radio-disabled ion-label {
|
9530 | opacity: 0.3;
|
9531 | pointer-events: none; }
|
9532 |
|
9533 | .item-wp .radio-wp {
|
9534 | position: static;
|
9535 | display: block;
|
9536 | -webkit-order: -1;
|
9537 | -ms-flex-order: -1;
|
9538 | order: -1;
|
9539 | margin: 9px 20px 9px 4px; }
|
9540 | .item-wp .radio-wp[item-right], .item-wp .radio-wp[item-end] {
|
9541 | -webkit-order: 0;
|
9542 | -ms-flex-order: 0;
|
9543 | order: 0;
|
9544 | margin: 11px 10px 10px 0; }
|
9545 |
|
9546 | .item-radio.item-wp ion-label {
|
9547 | margin-left: 0; }
|
9548 |
|
9549 | .radio-wp-primary .radio-checked {
|
9550 | border-color: #007aff; }
|
9551 |
|
9552 | .radio-wp-secondary .radio-checked {
|
9553 | border-color: #32db64; }
|
9554 |
|
9555 | .radio-wp-danger .radio-checked {
|
9556 | border-color: #d91e18; }
|
9557 |
|
9558 | .radio-wp-light .radio-checked {
|
9559 | border-color: #f4f4f4; }
|
9560 |
|
9561 | .radio-wp-dark .radio-checked {
|
9562 | border-color: #222; }
|
9563 |
|
9564 | .item-range .item-inner {
|
9565 | overflow: visible;
|
9566 | width: 100%; }
|
9567 |
|
9568 | .item-range .input-wrapper {
|
9569 | overflow: visible;
|
9570 | -webkit-flex-direction: column;
|
9571 | -ms-flex-direction: column;
|
9572 | flex-direction: column;
|
9573 | width: 100%; }
|
9574 |
|
9575 | .item-range ion-range {
|
9576 | width: 100%; }
|
9577 |
|
9578 | .item-range ion-range ion-label {
|
9579 | -webkit-align-self: center;
|
9580 | -ms-flex-item-align: center;
|
9581 | -ms-grid-row-align: center;
|
9582 | align-self: center; }
|
9583 |
|
9584 | ion-range {
|
9585 | position: relative;
|
9586 | display: -webkit-flex;
|
9587 | display: -ms-flexbox;
|
9588 | display: flex;
|
9589 | -webkit-align-items: center;
|
9590 | -ms-flex-align: center;
|
9591 | align-items: center; }
|
9592 |
|
9593 | ion-range ion-label {
|
9594 | -webkit-flex: initial;
|
9595 | -ms-flex: initial;
|
9596 | flex: initial; }
|
9597 |
|
9598 | ion-range ion-icon {
|
9599 | min-height: 2.4rem;
|
9600 | font-size: 2.4rem;
|
9601 | line-height: 1; }
|
9602 |
|
9603 | .range-slider {
|
9604 | position: relative;
|
9605 | -webkit-flex: 1;
|
9606 | -ms-flex: 1;
|
9607 | flex: 1;
|
9608 | cursor: pointer; }
|
9609 |
|
9610 | .range-ios {
|
9611 | padding: 8px 16px; }
|
9612 |
|
9613 | .range-ios [range-left] {
|
9614 | margin: 0 20px 0 0; }
|
9615 |
|
9616 | .range-ios [range-right] {
|
9617 | margin: 0 0 0 20px; }
|
9618 |
|
9619 | .range-ios.range-has-pin {
|
9620 | padding-top: 20px; }
|
9621 |
|
9622 | .range-ios .range-slider {
|
9623 | height: 42px; }
|
9624 |
|
9625 | .range-ios .range-bar {
|
9626 | left: 0;
|
9627 | top: 21px;
|
9628 | border-radius: 1px;
|
9629 | position: absolute;
|
9630 | width: 100%;
|
9631 | height: 1px;
|
9632 | background: #bdbdbd;
|
9633 | pointer-events: none; }
|
9634 |
|
9635 | .range-ios.range-pressed .range-bar-active {
|
9636 | will-change: left, right; }
|
9637 |
|
9638 | .range-ios.range-pressed .range-knob-handle {
|
9639 | will-change: left; }
|
9640 |
|
9641 | .range-ios .range-bar-active {
|
9642 | bottom: 0;
|
9643 | width: auto;
|
9644 | background: #007aff; }
|
9645 |
|
9646 | .range-ios .range-knob-handle {
|
9647 | left: 0;
|
9648 | top: 21px;
|
9649 | margin-left: -21px;
|
9650 | margin-top: -21px;
|
9651 | text-align: center;
|
9652 | position: absolute;
|
9653 | width: 42px;
|
9654 | height: 42px; }
|
9655 |
|
9656 | .range-ios .range-knob {
|
9657 | left: 7px;
|
9658 | top: 7px;
|
9659 | border-radius: 50%;
|
9660 | position: absolute;
|
9661 | width: 28px;
|
9662 | height: 28px;
|
9663 | background: #fff;
|
9664 | box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.02);
|
9665 | pointer-events: none; }
|
9666 |
|
9667 | .range-ios .range-tick {
|
9668 | margin-left: -0.5px;
|
9669 | border-radius: 0;
|
9670 | position: absolute;
|
9671 | top: 17.5px;
|
9672 | width: 1px;
|
9673 | height: 8px;
|
9674 | background: #bdbdbd;
|
9675 | pointer-events: none; }
|
9676 |
|
9677 | .range-ios .range-tick-active {
|
9678 | background: #007aff; }
|
9679 |
|
9680 | .range-ios .range-pin {
|
9681 | text-align: center;
|
9682 | border-radius: 50px;
|
9683 | -webkit-transform: translate3d(0, 28px, 0) scale(0.01);
|
9684 | transform: translate3d(0, 28px, 0) scale(0.01);
|
9685 | position: relative;
|
9686 | top: -20px;
|
9687 | display: inline-block;
|
9688 | min-width: 28px;
|
9689 | font-size: 12px;
|
9690 | color: #fff;
|
9691 | background: transparent;
|
9692 | transition: -webkit-transform 120ms ease;
|
9693 | transition: transform 120ms ease;
|
9694 | transition: transform 120ms ease, -webkit-transform 120ms ease;
|
9695 | padding: 8px; }
|
9696 |
|
9697 | .range-ios .range-knob-pressed .range-pin {
|
9698 | -webkit-transform: translate3d(0, 0, 0) scale(1);
|
9699 | transform: translate3d(0, 0, 0) scale(1); }
|
9700 |
|
9701 | .range-ios.range-disabled {
|
9702 | opacity: .5; }
|
9703 |
|
9704 | .range-ios-primary .range-bar-active,
|
9705 | .range-ios-primary .range-tick-active {
|
9706 | background: #007aff; }
|
9707 |
|
9708 | .range-ios-secondary .range-bar-active,
|
9709 | .range-ios-secondary .range-tick-active {
|
9710 | background: #32db64; }
|
9711 |
|
9712 | .range-ios-danger .range-bar-active,
|
9713 | .range-ios-danger .range-tick-active {
|
9714 | background: #d91e18; }
|
9715 |
|
9716 | .range-ios-light .range-bar-active,
|
9717 | .range-ios-light .range-tick-active {
|
9718 | background: #f4f4f4; }
|
9719 |
|
9720 | .range-ios-dark .range-bar-active,
|
9721 | .range-ios-dark .range-tick-active {
|
9722 | background: #222; }
|
9723 |
|
9724 | .range-md {
|
9725 | padding: 8px; }
|
9726 |
|
9727 | .range-md [range-left] {
|
9728 | margin: 0 12px 0 0; }
|
9729 |
|
9730 | .range-md [range-right] {
|
9731 | margin: 0 0 0 12px; }
|
9732 |
|
9733 | .range-md.range-has-pin {
|
9734 | padding-top: 28px; }
|
9735 |
|
9736 | .range-md .range-slider {
|
9737 | height: 42px; }
|
9738 |
|
9739 | .range-md .range-bar {
|
9740 | left: 0;
|
9741 | top: 21px;
|
9742 | position: absolute;
|
9743 | width: 100%;
|
9744 | height: 2px;
|
9745 | background: #bdbdbd;
|
9746 | pointer-events: none; }
|
9747 |
|
9748 | .range-md.range-pressed .range-bar-active {
|
9749 | will-change: left, right; }
|
9750 |
|
9751 | .range-md.range-pressed .range-knob-handle {
|
9752 | will-change: left; }
|
9753 |
|
9754 | .range-md .range-bar-active {
|
9755 | bottom: 0;
|
9756 | width: auto;
|
9757 | background: #007aff; }
|
9758 |
|
9759 | .range-md .range-knob-handle {
|
9760 | left: 0;
|
9761 | top: 21px;
|
9762 | margin-left: -21px;
|
9763 | margin-top: -21px;
|
9764 | text-align: center;
|
9765 | position: absolute;
|
9766 | width: 42px;
|
9767 | height: 42px; }
|
9768 |
|
9769 | .range-md .range-knob {
|
9770 | left: 12px;
|
9771 | top: 13px;
|
9772 | border-radius: 50%;
|
9773 | position: absolute;
|
9774 | z-index: 2;
|
9775 | width: 18px;
|
9776 | height: 18px;
|
9777 | background: #007aff;
|
9778 | -webkit-transform: scale(0.67);
|
9779 | transform: scale(0.67);
|
9780 | transition-duration: 120ms;
|
9781 | transition-property: background-color, border, -webkit-transform;
|
9782 | transition-property: transform, background-color, border;
|
9783 | transition-property: transform, background-color, border, -webkit-transform;
|
9784 | transition-timing-function: ease;
|
9785 | pointer-events: none; }
|
9786 |
|
9787 | .range-md .range-tick {
|
9788 | margin-left: -1px;
|
9789 | border-radius: 50%;
|
9790 | position: absolute;
|
9791 | top: 21px;
|
9792 | z-index: 1;
|
9793 | width: 2px;
|
9794 | height: 2px;
|
9795 | background: #000;
|
9796 | pointer-events: none; }
|
9797 |
|
9798 | .range-md .range-tick-active {
|
9799 | background: #000; }
|
9800 |
|
9801 | .range-md .range-pin {
|
9802 | padding: 8px 0;
|
9803 | text-align: center;
|
9804 | border-radius: 50%;
|
9805 | -webkit-transform: translate3d(0, 28px, 0) scale(0.01);
|
9806 | transform: translate3d(0, 28px, 0) scale(0.01);
|
9807 | position: relative;
|
9808 | top: -20px;
|
9809 | display: inline-block;
|
9810 | min-width: 28px;
|
9811 | height: 28px;
|
9812 | font-size: 12px;
|
9813 | color: #fff;
|
9814 | background: #007aff;
|
9815 | transition: background-color 120ms ease, -webkit-transform 120ms ease;
|
9816 | transition: transform 120ms ease, background-color 120ms ease;
|
9817 | transition: transform 120ms ease, background-color 120ms ease, -webkit-transform 120ms ease; }
|
9818 | .range-md .range-pin::before {
|
9819 | left: 50%;
|
9820 | top: 3px;
|
9821 | border-top-left-radius: 50%;
|
9822 | border-top-right-radius: 50%;
|
9823 | border-bottom-right-radius: 50%;
|
9824 | border-bottom-left-radius: 0;
|
9825 | margin-left: -13px;
|
9826 | position: absolute;
|
9827 | z-index: -1;
|
9828 | width: 26px;
|
9829 | height: 26px;
|
9830 | background: #007aff;
|
9831 | content: "";
|
9832 | -webkit-transform: rotate(-45deg);
|
9833 | transform: rotate(-45deg);
|
9834 | transition: background-color 120ms ease; }
|
9835 |
|
9836 | .range-md .range-knob-pressed .range-pin {
|
9837 | -webkit-transform: translate3d(0, 0, 0) scale(1);
|
9838 | transform: translate3d(0, 0, 0) scale(1); }
|
9839 |
|
9840 | .range-md:not(.range-has-pin) .range-knob-pressed .range-knob {
|
9841 | -webkit-transform: scale(1);
|
9842 | transform: scale(1); }
|
9843 |
|
9844 | .range-md .range-knob-min.range-knob-min .range-knob {
|
9845 | border: 2px solid #bdbdbd;
|
9846 | background: #191919; }
|
9847 |
|
9848 | .range-md .range-knob-min.range-knob-min .range-pin,
|
9849 | .range-md .range-knob-min.range-knob-min .range-pin::before {
|
9850 | color: #fff;
|
9851 | background: #bdbdbd; }
|
9852 |
|
9853 | .range-md.range-disabled .range-bar-active {
|
9854 | background-color: #bdbdbd; }
|
9855 |
|
9856 | .range-md.range-disabled .range-knob {
|
9857 | outline: 5px solid #fff;
|
9858 | background-color: #bdbdbd;
|
9859 | -webkit-transform: scale(0.55);
|
9860 | transform: scale(0.55); }
|
9861 |
|
9862 | .range-md-primary .range-md .range-knob-min.range-knob-min .range-knob {
|
9863 | border: 2px solid #bdbdbd;
|
9864 | background: #191919; }
|
9865 |
|
9866 | .range-md-primary .range-md .range-knob-min.range-knob-min .range-pin,
|
9867 | .range-md-primary .range-md .range-knob-min.range-knob-min .range-pin::before {
|
9868 | color: #fff;
|
9869 | background: #bdbdbd; }
|
9870 |
|
9871 | .range-md-primary .range-bar-active,
|
9872 | .range-md-primary .range-knob,
|
9873 | .range-md-primary .range-pin,
|
9874 | .range-md-primary .range-pin::before {
|
9875 | background: #007aff; }
|
9876 |
|
9877 | .range-md-secondary .range-md .range-knob-min.range-knob-min .range-knob {
|
9878 | border: 2px solid #bdbdbd;
|
9879 | background: #191919; }
|
9880 |
|
9881 | .range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin,
|
9882 | .range-md-secondary .range-md .range-knob-min.range-knob-min .range-pin::before {
|
9883 | color: #fff;
|
9884 | background: #bdbdbd; }
|
9885 |
|
9886 | .range-md-secondary .range-bar-active,
|
9887 | .range-md-secondary .range-knob,
|
9888 | .range-md-secondary .range-pin,
|
9889 | .range-md-secondary .range-pin::before {
|
9890 | background: #32db64; }
|
9891 |
|
9892 | .range-md-danger .range-md .range-knob-min.range-knob-min .range-knob {
|
9893 | border: 2px solid #bdbdbd;
|
9894 | background: #191919; }
|
9895 |
|
9896 | .range-md-danger .range-md .range-knob-min.range-knob-min .range-pin,
|
9897 | .range-md-danger .range-md .range-knob-min.range-knob-min .range-pin::before {
|
9898 | color: #fff;
|
9899 | background: #bdbdbd; }
|
9900 |
|
9901 | .range-md-danger .range-bar-active,
|
9902 | .range-md-danger .range-knob,
|
9903 | .range-md-danger .range-pin,
|
9904 | .range-md-danger .range-pin::before {
|
9905 | background: #d91e18; }
|
9906 |
|
9907 | .range-md-light .range-md .range-knob-min.range-knob-min .range-knob {
|
9908 | border: 2px solid #bdbdbd;
|
9909 | background: #191919; }
|
9910 |
|
9911 | .range-md-light .range-md .range-knob-min.range-knob-min .range-pin,
|
9912 | .range-md-light .range-md .range-knob-min.range-knob-min .range-pin::before {
|
9913 | color: #fff;
|
9914 | background: #bdbdbd; }
|
9915 |
|
9916 | .range-md-light .range-bar-active,
|
9917 | .range-md-light .range-knob,
|
9918 | .range-md-light .range-pin,
|
9919 | .range-md-light .range-pin::before {
|
9920 | background: #f4f4f4; }
|
9921 |
|
9922 | .range-md-dark .range-md .range-knob-min.range-knob-min .range-knob {
|
9923 | border: 2px solid #bdbdbd;
|
9924 | background: #191919; }
|
9925 |
|
9926 | .range-md-dark .range-md .range-knob-min.range-knob-min .range-pin,
|
9927 | .range-md-dark .range-md .range-knob-min.range-knob-min .range-pin::before {
|
9928 | color: #fff;
|
9929 | background: #bdbdbd; }
|
9930 |
|
9931 | .range-md-dark .range-bar-active,
|
9932 | .range-md-dark .range-knob,
|
9933 | .range-md-dark .range-pin,
|
9934 | .range-md-dark .range-pin::before {
|
9935 | background: #222; }
|
9936 |
|
9937 | .range-wp {
|
9938 | padding: 8px; }
|
9939 |
|
9940 | .range-wp [range-left] {
|
9941 | margin: 0 12px 0 0; }
|
9942 |
|
9943 | .range-wp [range-right] {
|
9944 | margin: 0 0 0 12px; }
|
9945 |
|
9946 | .range-wp.range-has-pin {
|
9947 | padding-top: 28px; }
|
9948 |
|
9949 | .range-wp .range-slider {
|
9950 | height: 42px; }
|
9951 |
|
9952 | .range-wp .range-bar {
|
9953 | left: 0;
|
9954 | top: 21px;
|
9955 | position: absolute;
|
9956 | width: 100%;
|
9957 | height: 2px;
|
9958 | background: #bdbdbd;
|
9959 | pointer-events: none; }
|
9960 |
|
9961 | .range-wp.range-pressed .range-bar-active {
|
9962 | will-change: left, right; }
|
9963 |
|
9964 | .range-wp.range-pressed .range-knob-handle {
|
9965 | will-change: left; }
|
9966 |
|
9967 | .range-wp .range-bar-active {
|
9968 | bottom: 0;
|
9969 | width: auto;
|
9970 | background: #007aff; }
|
9971 |
|
9972 | .range-wp .range-knob-handle {
|
9973 | left: 0;
|
9974 | top: 21px;
|
9975 | margin-left: -21px;
|
9976 | margin-top: -21px;
|
9977 | text-align: center;
|
9978 | position: absolute;
|
9979 | width: 42px;
|
9980 | height: 42px; }
|
9981 |
|
9982 | .range-wp .range-knob {
|
9983 | left: 17px;
|
9984 | top: 10px;
|
9985 | border-radius: 4px;
|
9986 | position: absolute;
|
9987 | width: 8px;
|
9988 | height: 24px;
|
9989 | background: #007aff;
|
9990 | pointer-events: none; }
|
9991 |
|
9992 | .range-wp .range-tick {
|
9993 | margin-left: -1px;
|
9994 | border-radius: 4px;
|
9995 | position: absolute;
|
9996 | top: 19px;
|
9997 | width: 2px;
|
9998 | height: 6px;
|
9999 | background: #bdbdbd;
|
10000 | pointer-events: none; }
|
10001 |
|
10002 | .range-wp .range-tick-active {
|
10003 | background: #007aff; }
|
10004 |
|
10005 | .range-wp .range-pin {
|
10006 | text-align: center;
|
10007 | border-radius: 50px;
|
10008 | -webkit-transform: translate3d(0, 28px, 0) scale(0.01);
|
10009 | transform: translate3d(0, 28px, 0) scale(0.01);
|
10010 | position: relative;
|
10011 | top: -24px;
|
10012 | display: inline-block;
|
10013 | min-width: 28px;
|
10014 | font-size: 12px;
|
10015 | color: #fff;
|
10016 | background: #007aff;
|
10017 | transition: -webkit-transform 120ms ease;
|
10018 | transition: transform 120ms ease;
|
10019 | transition: transform 120ms ease, -webkit-transform 120ms ease;
|
10020 | padding: 8px; }
|
10021 |
|
10022 | .range-wp .range-knob-pressed .range-pin {
|
10023 | -webkit-transform: translate3d(0, 0, 0) scale(1);
|
10024 | transform: translate3d(0, 0, 0) scale(1); }
|
10025 |
|
10026 | .range-wp.range-disabled {
|
10027 | opacity: .5; }
|
10028 |
|
10029 | .range-wp-primary .range-bar-active,
|
10030 | .range-wp-primary .range-tick-active,
|
10031 | .range-wp-primary .range-knob,
|
10032 | .range-wp-primary .range-pin {
|
10033 | background: #007aff; }
|
10034 |
|
10035 | .range-wp-secondary .range-bar-active,
|
10036 | .range-wp-secondary .range-tick-active,
|
10037 | .range-wp-secondary .range-knob,
|
10038 | .range-wp-secondary .range-pin {
|
10039 | background: #32db64; }
|
10040 |
|
10041 | .range-wp-danger .range-bar-active,
|
10042 | .range-wp-danger .range-tick-active,
|
10043 | .range-wp-danger .range-knob,
|
10044 | .range-wp-danger .range-pin {
|
10045 | background: #d91e18; }
|
10046 |
|
10047 | .range-wp-light .range-bar-active,
|
10048 | .range-wp-light .range-tick-active,
|
10049 | .range-wp-light .range-knob,
|
10050 | .range-wp-light .range-pin {
|
10051 | background: #f4f4f4; }
|
10052 |
|
10053 | .range-wp-dark .range-bar-active,
|
10054 | .range-wp-dark .range-tick-active,
|
10055 | .range-wp-dark .range-knob,
|
10056 | .range-wp-dark .range-pin {
|
10057 | background: #222; }
|
10058 |
|
10059 | ion-refresher {
|
10060 | left: 0;
|
10061 | top: 0;
|
10062 | position: absolute;
|
10063 | z-index: 0;
|
10064 | display: none;
|
10065 | width: 100%;
|
10066 | height: 60px; }
|
10067 | ion-refresher.refresher-active {
|
10068 | display: block; }
|
10069 |
|
10070 | .has-refresher > .scroll-content {
|
10071 | margin-top: -1px;
|
10072 | border-top: 1px solid #ddd;
|
10073 | transition: -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
|
10074 | transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1);
|
10075 | transition: transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 320ms cubic-bezier(0.36, 0.66, 0.04, 1); }
|
10076 |
|
10077 | ion-refresher-content {
|
10078 | display: -webkit-flex;
|
10079 | display: -ms-flexbox;
|
10080 | display: flex;
|
10081 | -webkit-flex-direction: column;
|
10082 | -ms-flex-direction: column;
|
10083 | flex-direction: column;
|
10084 | -webkit-justify-content: center;
|
10085 | -ms-flex-pack: center;
|
10086 | justify-content: center;
|
10087 | height: 100%; }
|
10088 |
|
10089 | .refresher-pulling,
|
10090 | .refresher-refreshing {
|
10091 | display: none;
|
10092 | width: 100%; }
|
10093 |
|
10094 | .refresher-pulling-icon,
|
10095 | .refresher-refreshing-icon {
|
10096 | text-align: center;
|
10097 | -webkit-transform-origin: center;
|
10098 | transform-origin: center;
|
10099 | font-size: 30px;
|
10100 | color: #000;
|
10101 | transition: 200ms; }
|
10102 |
|
10103 | .refresher-pulling-text,
|
10104 | .refresher-refreshing-text {
|
10105 | text-align: center;
|
10106 | font-size: 16px;
|
10107 | color: #000; }
|
10108 |
|
10109 | .refresher-refreshing .spinner-ios line,
|
10110 | .refresher-refreshing .spinner-ios-small line,
|
10111 | .refresher-refreshing .spinner-crescent circle {
|
10112 | stroke: #000; }
|
10113 |
|
10114 | .refresher-refreshing .spinner-bubbles circle,
|
10115 | .refresher-refreshing .spinner-circles circle,
|
10116 | .refresher-refreshing .spinner-dots circle {
|
10117 | fill: #000; }
|
10118 |
|
10119 | ion-refresher-content[state=pulling] .refresher-pulling {
|
10120 | display: block; }
|
10121 |
|
10122 | ion-refresher-content[state=ready] .refresher-pulling {
|
10123 | display: block; }
|
10124 |
|
10125 | ion-refresher-content[state=ready] .refresher-pulling-icon {
|
10126 | -webkit-transform: rotate(180deg);
|
10127 | transform: rotate(180deg); }
|
10128 |
|
10129 | ion-refresher-content[state=refreshing] .refresher-refreshing {
|
10130 | display: block; }
|
10131 |
|
10132 | ion-refresher-content[state=cancelling] .refresher-pulling {
|
10133 | display: block; }
|
10134 |
|
10135 | ion-refresher-content[state=cancelling] .refresher-pulling-icon {
|
10136 | -webkit-transform: scale(0);
|
10137 | transform: scale(0); }
|
10138 |
|
10139 | ion-refresher-content[state=completing] .refresher-refreshing {
|
10140 | display: block; }
|
10141 |
|
10142 | ion-refresher-content[state=completing] .refresher-refreshing-icon {
|
10143 | -webkit-transform: scale(0);
|
10144 | transform: scale(0); }
|
10145 |
|
10146 | ion-scroll {
|
10147 | position: relative;
|
10148 | display: block; }
|
10149 |
|
10150 | ion-scroll.scroll-x .scroll-content {
|
10151 | overflow-x: auto; }
|
10152 |
|
10153 | ion-scroll.scroll-y .scroll-content {
|
10154 | overflow-y: auto; }
|
10155 |
|
10156 | ion-scroll[center] .scroll-content {
|
10157 | display: -webkit-flex;
|
10158 | display: -ms-flexbox;
|
10159 | display: flex;
|
10160 | -webkit-align-items: center;
|
10161 | -ms-flex-align: center;
|
10162 | align-items: center;
|
10163 | -webkit-justify-content: center;
|
10164 | -ms-flex-pack: center;
|
10165 | justify-content: center; }
|
10166 |
|
10167 | ion-scroll .scroll-content {
|
10168 | left: 0;
|
10169 | right: 0;
|
10170 | top: 0;
|
10171 | bottom: 0;
|
10172 | position: absolute;
|
10173 | overflow-y: hidden;
|
10174 | overflow-x: hidden;
|
10175 | -webkit-overflow-scrolling: touch;
|
10176 | will-change: scroll-position; }
|
10177 |
|
10178 | ion-searchbar {
|
10179 | position: relative;
|
10180 | display: -webkit-flex;
|
10181 | display: -ms-flexbox;
|
10182 | display: flex;
|
10183 | -webkit-align-items: center;
|
10184 | -ms-flex-align: center;
|
10185 | align-items: center;
|
10186 | width: 100%; }
|
10187 |
|
10188 | .searchbar-icon {
|
10189 | pointer-events: none; }
|
10190 |
|
10191 | .searchbar-input-container {
|
10192 | position: relative;
|
10193 | display: block;
|
10194 | -webkit-flex-shrink: 1;
|
10195 | -ms-flex-negative: 1;
|
10196 | flex-shrink: 1;
|
10197 | width: 100%; }
|
10198 |
|
10199 | .searchbar-input {
|
10200 | -moz-appearance: none;
|
10201 | -ms-appearance: none;
|
10202 | -webkit-appearance: none;
|
10203 | appearance: none;
|
10204 | display: block;
|
10205 | width: 100%;
|
10206 | border: 0;
|
10207 | font-family: inherit; }
|
10208 |
|
10209 | .searchbar-clear-icon {
|
10210 | margin: 0;
|
10211 | padding: 0;
|
10212 | display: none;
|
10213 | min-height: 0; }
|
10214 |
|
10215 | .searchbar-has-value.searchbar-has-focus .searchbar-clear-icon {
|
10216 | display: block; }
|
10217 |
|
10218 | .searchbar-ios {
|
10219 | padding: 0 8px;
|
10220 | min-height: 44px;
|
10221 | border-top: 0.55px solid transparent;
|
10222 | border-bottom: 0.55px solid rgba(0, 0, 0, 0.05);
|
10223 | background: rgba(0, 0, 0, 0.2); }
|
10224 |
|
10225 | .searchbar-ios .searchbar-search-icon {
|
10226 | left: 9px;
|
10227 | top: 9px;
|
10228 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(0,%200,%200,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>");
|
10229 | margin-left: calc(50% - 60px);
|
10230 | position: absolute;
|
10231 | width: 14px;
|
10232 | height: 14px;
|
10233 | background-repeat: no-repeat;
|
10234 | background-size: 13px; }
|
10235 |
|
10236 | .searchbar-ios .searchbar-input {
|
10237 | padding: 0 28px;
|
10238 | border-radius: 5px;
|
10239 | height: 3rem;
|
10240 | font-size: 1.4rem;
|
10241 | font-weight: 400;
|
10242 | color: #000;
|
10243 | background-color: #fff; }
|
10244 | .searchbar-ios .searchbar-input::-moz-placeholder {
|
10245 | color: rgba(0, 0, 0, 0.5); }
|
10246 | .searchbar-ios .searchbar-input:-ms-input-placeholder {
|
10247 | color: rgba(0, 0, 0, 0.5); }
|
10248 | .searchbar-ios .searchbar-input::-webkit-input-placeholder {
|
10249 | text-indent: 0;
|
10250 | color: rgba(0, 0, 0, 0.5); }
|
10251 |
|
10252 | .searchbar-ios .searchbar-clear-icon {
|
10253 | right: 0;
|
10254 | top: 0;
|
10255 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>");
|
10256 | background-position: center;
|
10257 | position: absolute;
|
10258 | width: 30px;
|
10259 | height: 100%;
|
10260 | background-repeat: no-repeat;
|
10261 | background-size: 18px; }
|
10262 |
|
10263 | .searchbar-ios .searchbar-ios-cancel {
|
10264 | padding: 0 0 0 8px;
|
10265 | margin-left: 0;
|
10266 | display: none;
|
10267 | -webkit-flex-shrink: 0;
|
10268 | -ms-flex-negative: 0;
|
10269 | flex-shrink: 0;
|
10270 | height: 30px;
|
10271 | cursor: pointer; }
|
10272 |
|
10273 | .searchbar-ios.searchbar-left-aligned .searchbar-search-icon {
|
10274 | margin-left: 0; }
|
10275 |
|
10276 | .searchbar-ios.searchbar-left-aligned .searchbar-input {
|
10277 | padding-left: 30px; }
|
10278 |
|
10279 | .searchbar-ios.searchbar-show-cancel.searchbar-has-focus .searchbar-ios-cancel {
|
10280 | display: block; }
|
10281 |
|
10282 | .toolbar .searchbar-ios {
|
10283 | border-bottom-width: 0;
|
10284 | background: transparent; }
|
10285 |
|
10286 | .toolbar .searchbar-ios .searchbar-input {
|
10287 | background: rgba(0, 0, 0, 0.08); }
|
10288 |
|
10289 | .toolbar .searchbar-ios .searchbar-ios-cancel {
|
10290 | padding: 0; }
|
10291 |
|
10292 | .toolbar .searchbar-ios.searchbar-has-focus .searchbar-ios-cancel {
|
10293 | padding-left: 8px; }
|
10294 |
|
10295 | .searchbar-ios .searchbar-md-cancel {
|
10296 | display: none; }
|
10297 |
|
10298 | .searchbar-ios-primary .searchbar-ios-cancel {
|
10299 | color: #007aff; }
|
10300 |
|
10301 | .searchbar-ios-primary .searchbar-ios-cancel:hover:not(.disable-hover) {
|
10302 | color: #1485ff; }
|
10303 |
|
10304 | .toolbar-ios-primary .searchbar-ios .searchbar-search-icon {
|
10305 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>"); }
|
10306 |
|
10307 | .toolbar-ios-primary .searchbar-ios .searchbar-input {
|
10308 | color: #fff;
|
10309 | background: rgba(255, 255, 255, 0.08); }
|
10310 | .toolbar-ios-primary .searchbar-ios .searchbar-input::-moz-placeholder {
|
10311 | color: rgba(255, 255, 255, 0.5); }
|
10312 | .toolbar-ios-primary .searchbar-ios .searchbar-input:-ms-input-placeholder {
|
10313 | color: rgba(255, 255, 255, 0.5); }
|
10314 | .toolbar-ios-primary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
|
10315 | text-indent: 0;
|
10316 | color: rgba(255, 255, 255, 0.5); }
|
10317 |
|
10318 | .toolbar-ios-primary .searchbar-ios .searchbar-clear-icon {
|
10319 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>"); }
|
10320 |
|
10321 | .toolbar-ios-primary .searchbar-ios .searchbar-ios-cancel {
|
10322 | color: #fff; }
|
10323 |
|
10324 | .searchbar-ios-secondary .searchbar-ios-cancel {
|
10325 | color: #32db64; }
|
10326 |
|
10327 | .searchbar-ios-secondary .searchbar-ios-cancel:hover:not(.disable-hover) {
|
10328 | color: #2ec95c; }
|
10329 |
|
10330 | .toolbar-ios-secondary .searchbar-ios .searchbar-search-icon {
|
10331 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>"); }
|
10332 |
|
10333 | .toolbar-ios-secondary .searchbar-ios .searchbar-input {
|
10334 | color: #fff;
|
10335 | background: rgba(255, 255, 255, 0.08); }
|
10336 | .toolbar-ios-secondary .searchbar-ios .searchbar-input::-moz-placeholder {
|
10337 | color: rgba(255, 255, 255, 0.5); }
|
10338 | .toolbar-ios-secondary .searchbar-ios .searchbar-input:-ms-input-placeholder {
|
10339 | color: rgba(255, 255, 255, 0.5); }
|
10340 | .toolbar-ios-secondary .searchbar-ios .searchbar-input::-webkit-input-placeholder {
|
10341 | text-indent: 0;
|
10342 | color: rgba(255, 255, 255, 0.5); }
|
10343 |
|
10344 | .toolbar-ios-secondary .searchbar-ios .searchbar-clear-icon {
|
10345 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>"); }
|
10346 |
|
10347 | .toolbar-ios-secondary .searchbar-ios .searchbar-ios-cancel {
|
10348 | color: #fff; }
|
10349 |
|
10350 | .searchbar-ios-danger .searchbar-ios-cancel {
|
10351 | color: #d91e18; }
|
10352 |
|
10353 | .searchbar-ios-danger .searchbar-ios-cancel:hover:not(.disable-hover) {
|
10354 | color: #dc302a; }
|
10355 |
|
10356 | .toolbar-ios-danger .searchbar-ios .searchbar-search-icon {
|
10357 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>"); }
|
10358 |
|
10359 | .toolbar-ios-danger .searchbar-ios .searchbar-input {
|
10360 | color: #fff;
|
10361 | background: rgba(255, 255, 255, 0.08); }
|
10362 | .toolbar-ios-danger .searchbar-ios .searchbar-input::-moz-placeholder {
|
10363 | color: rgba(255, 255, 255, 0.5); }
|
10364 | .toolbar-ios-danger .searchbar-ios .searchbar-input:-ms-input-placeholder {
|
10365 | color: rgba(255, 255, 255, 0.5); }
|
10366 | .toolbar-ios-danger .searchbar-ios .searchbar-input::-webkit-input-placeholder {
|
10367 | text-indent: 0;
|
10368 | color: rgba(255, 255, 255, 0.5); }
|
10369 |
|
10370 | .toolbar-ios-danger .searchbar-ios .searchbar-clear-icon {
|
10371 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>"); }
|
10372 |
|
10373 | .toolbar-ios-danger .searchbar-ios .searchbar-ios-cancel {
|
10374 | color: #fff; }
|
10375 |
|
10376 | .searchbar-ios-light .searchbar-ios-cancel {
|
10377 | color: #f4f4f4; }
|
10378 |
|
10379 | .searchbar-ios-light .searchbar-ios-cancel:hover:not(.disable-hover) {
|
10380 | color: #e0e0e0; }
|
10381 |
|
10382 | .toolbar-ios-light .searchbar-ios .searchbar-search-icon {
|
10383 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(0,%200,%200,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>"); }
|
10384 |
|
10385 | .toolbar-ios-light .searchbar-ios .searchbar-input {
|
10386 | color: #000;
|
10387 | background: rgba(0, 0, 0, 0.08); }
|
10388 | .toolbar-ios-light .searchbar-ios .searchbar-input::-moz-placeholder {
|
10389 | color: rgba(0, 0, 0, 0.5); }
|
10390 | .toolbar-ios-light .searchbar-ios .searchbar-input:-ms-input-placeholder {
|
10391 | color: rgba(0, 0, 0, 0.5); }
|
10392 | .toolbar-ios-light .searchbar-ios .searchbar-input::-webkit-input-placeholder {
|
10393 | text-indent: 0;
|
10394 | color: rgba(0, 0, 0, 0.5); }
|
10395 |
|
10396 | .toolbar-ios-light .searchbar-ios .searchbar-clear-icon {
|
10397 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(0,%200,%200,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>"); }
|
10398 |
|
10399 | .toolbar-ios-light .searchbar-ios .searchbar-ios-cancel {
|
10400 | color: #007aff; }
|
10401 |
|
10402 | .searchbar-ios-dark .searchbar-ios-cancel {
|
10403 | color: #222; }
|
10404 |
|
10405 | .searchbar-ios-dark .searchbar-ios-cancel:hover:not(.disable-hover) {
|
10406 | color: #343434; }
|
10407 |
|
10408 | .toolbar-ios-dark .searchbar-ios .searchbar-search-icon {
|
10409 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2013%2013'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M5,1c2.2,0,4,1.8,4,4S7.2,9,5,9S1,7.2,1,5S2.8,1,5,1%20M5,0C2.2,0,0,2.2,0,5s2.2,5,5,5s5-2.2,5-5S7.8,0,5,0%20L5,0z'/><line%20stroke='rgba(255,%20255,%20255,%200.5)'%20stroke-miterlimit='10'%20x1='12.6'%20y1='12.6'%20x2='8.2'%20y2='8.2'/></svg>"); }
|
10410 |
|
10411 | .toolbar-ios-dark .searchbar-ios .searchbar-input {
|
10412 | color: #fff;
|
10413 | background: rgba(255, 255, 255, 0.08); }
|
10414 | .toolbar-ios-dark .searchbar-ios .searchbar-input::-moz-placeholder {
|
10415 | color: rgba(255, 255, 255, 0.5); }
|
10416 | .toolbar-ios-dark .searchbar-ios .searchbar-input:-ms-input-placeholder {
|
10417 | color: rgba(255, 255, 255, 0.5); }
|
10418 | .toolbar-ios-dark .searchbar-ios .searchbar-input::-webkit-input-placeholder {
|
10419 | text-indent: 0;
|
10420 | color: rgba(255, 255, 255, 0.5); }
|
10421 |
|
10422 | .toolbar-ios-dark .searchbar-ios .searchbar-clear-icon {
|
10423 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='rgba(255,%20255,%20255,%200.5)'%20d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0S484.3,190.1,403.1,108.9z%20M352,340.2L340.2,352l-84.4-84.2l-84,83.8L160,339.8l84-83.8l-84-83.8l11.8-11.8l84,83.8l84.4-84.2l11.8,11.8L267.6,256L352,340.2z'/></svg>"); }
|
10424 |
|
10425 | .toolbar-ios-dark .searchbar-ios .searchbar-ios-cancel {
|
10426 | color: #fff; }
|
10427 |
|
10428 | .searchbar-ios.searchbar-animated.searchbar-show-cancel .searchbar-ios-cancel {
|
10429 | display: block; }
|
10430 |
|
10431 | .searchbar-ios.searchbar-animated .searchbar-search-icon,
|
10432 | .searchbar-ios.searchbar-animated .searchbar-input {
|
10433 | transition: all 300ms ease; }
|
10434 |
|
10435 | .searchbar-animated.searchbar-has-focus .searchbar-ios-cancel {
|
10436 | opacity: 1;
|
10437 | pointer-events: auto; }
|
10438 |
|
10439 | .searchbar-animated .searchbar-ios-cancel {
|
10440 | margin-right: -100%;
|
10441 | -webkit-transform: translate3d(0, 0, 0);
|
10442 | transform: translate3d(0, 0, 0);
|
10443 | opacity: 0;
|
10444 | transition: all 300ms ease;
|
10445 | pointer-events: none; }
|
10446 |
|
10447 | .searchbar-md {
|
10448 | background: inherit;
|
10449 | padding: 8px; }
|
10450 |
|
10451 | .searchbar-md .searchbar-search-icon {
|
10452 | left: 16px;
|
10453 | top: 11px;
|
10454 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%235b5b5b'%20d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z%20M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>");
|
10455 | width: 21px;
|
10456 | height: 21px; }
|
10457 |
|
10458 | .searchbar-md .searchbar-md-cancel {
|
10459 | left: 10px;
|
10460 | top: 0;
|
10461 | margin: 0;
|
10462 | display: none;
|
10463 | width: 21px;
|
10464 | height: 100%; }
|
10465 |
|
10466 | .searchbar-md .searchbar-search-icon,
|
10467 | .searchbar-md .searchbar-md-cancel {
|
10468 | position: absolute;
|
10469 | background-repeat: no-repeat;
|
10470 | background-size: 20px; }
|
10471 |
|
10472 | .searchbar-md .searchbar-search-icon.activated,
|
10473 | .searchbar-md .searchbar-md-cancel.activated {
|
10474 | background-color: transparent; }
|
10475 |
|
10476 | .searchbar-md .searchbar-input {
|
10477 | padding: 6px 55px;
|
10478 | border-radius: 2px;
|
10479 | background-position: left 8px center;
|
10480 | height: auto;
|
10481 | font-size: 1.6rem;
|
10482 | font-weight: 400;
|
10483 | line-height: 3rem;
|
10484 | color: #141414;
|
10485 | background-color: #fff;
|
10486 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
|
10487 | .searchbar-md .searchbar-input::-moz-placeholder {
|
10488 | color: #aeaeae; }
|
10489 | .searchbar-md .searchbar-input:-ms-input-placeholder {
|
10490 | color: #aeaeae; }
|
10491 | .searchbar-md .searchbar-input::-webkit-input-placeholder {
|
10492 | text-indent: 0;
|
10493 | color: #aeaeae; }
|
10494 |
|
10495 | .searchbar-md .searchbar-clear-icon {
|
10496 | right: 13px;
|
10497 | top: 0;
|
10498 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%235b5b5b'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
|
10499 | padding: 0;
|
10500 | background-position: center;
|
10501 | position: absolute;
|
10502 | width: 22px;
|
10503 | height: 100%;
|
10504 | background-repeat: no-repeat;
|
10505 | background-size: 22px; }
|
10506 |
|
10507 | .searchbar-md .searchbar-clear-icon.activated {
|
10508 | background-color: transparent; }
|
10509 |
|
10510 | .searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-search-icon {
|
10511 | display: none; }
|
10512 |
|
10513 | .searchbar-md.searchbar-has-focus.searchbar-show-cancel .searchbar-md-cancel {
|
10514 | display: -webkit-inline-flex;
|
10515 | display: -ms-inline-flexbox;
|
10516 | display: inline-flex; }
|
10517 |
|
10518 | .toolbar .searchbar-md {
|
10519 | padding: 3px; }
|
10520 |
|
10521 | .toolbar .searchbar-md .searchbar-md-cancel {
|
10522 | left: 14px; }
|
10523 |
|
10524 | .searchbar-md .searchbar-ios-cancel {
|
10525 | display: none; }
|
10526 |
|
10527 | .searchbar-wp {
|
10528 | background: transparent;
|
10529 | padding: 8px; }
|
10530 |
|
10531 | .searchbar-wp .searchbar-input-container {
|
10532 | border: 2px solid rgba(0, 0, 0, 0.5); }
|
10533 |
|
10534 | .searchbar-wp .searchbar-search-icon {
|
10535 | right: 8px;
|
10536 | top: 5px;
|
10537 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><path%20fill='%23858585'%20d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z%20M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>");
|
10538 | position: absolute;
|
10539 | width: 21px;
|
10540 | height: 21px;
|
10541 | background-repeat: no-repeat;
|
10542 | background-size: 20px; }
|
10543 |
|
10544 | .searchbar-wp .searchbar-search-icon.activated {
|
10545 | background-color: transparent; }
|
10546 |
|
10547 | .searchbar-wp .searchbar-input {
|
10548 | padding: 0 8px;
|
10549 | border-radius: 0;
|
10550 | background-position: left 8px center;
|
10551 | height: auto;
|
10552 | font-size: 1.4rem;
|
10553 | font-weight: 400;
|
10554 | line-height: 3rem;
|
10555 | color: #141414;
|
10556 | background-color: #fff; }
|
10557 | .searchbar-wp .searchbar-input::-moz-placeholder {
|
10558 | color: #858585; }
|
10559 | .searchbar-wp .searchbar-input:-ms-input-placeholder {
|
10560 | color: #858585; }
|
10561 | .searchbar-wp .searchbar-input::-webkit-input-placeholder {
|
10562 | text-indent: 0;
|
10563 | color: #858585; }
|
10564 |
|
10565 | .searchbar-wp .searchbar-clear-icon {
|
10566 | right: 8px;
|
10567 | top: 0;
|
10568 | background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'><polygon%20fill='%23858585'%20points='405,136.798%20375.202,107%20256,226.202%20136.798,107%20107,136.798%20226.202,256%20107,375.202%20136.798,405%20256,285.798%20375.202,405%20405,375.202%20285.798,256'/></svg>");
|
10569 | padding: 0;
|
10570 | background-position: center;
|
10571 | position: absolute;
|
10572 | width: 22px;
|
10573 | height: 100%;
|
10574 | background-repeat: no-repeat;
|
10575 | background-size: 22px; }
|
10576 |
|
10577 | .searchbar-wp .searchbar-clear-icon.activated {
|
10578 | background-color: transparent; }
|
10579 |
|
10580 | .searchbar-wp.searchbar-has-focus .searchbar-input-container {
|
10581 | border-color: #007aff; }
|
10582 |
|
10583 | .searchbar-wp.searchbar-has-value .searchbar-search-icon {
|
10584 | display: none; }
|
10585 |
|
10586 | .searchbar-wp .searchbar-ios-cancel {
|
10587 | display: none; }
|
10588 |
|
10589 | .searchbar-wp .searchbar-md-cancel {
|
10590 | display: none; }
|
10591 |
|
10592 | .toolbar .searchbar-wp {
|
10593 | padding: 2px; }
|
10594 |
|
10595 | .searchbar-wp-primary.searchbar-has-focus .searchbar-input-container {
|
10596 | border-color: #007aff; }
|
10597 |
|
10598 | .searchbar-wp-secondary.searchbar-has-focus .searchbar-input-container {
|
10599 | border-color: #32db64; }
|
10600 |
|
10601 | .searchbar-wp-danger.searchbar-has-focus .searchbar-input-container {
|
10602 | border-color: #d91e18; }
|
10603 |
|
10604 | .searchbar-wp-light.searchbar-has-focus .searchbar-input-container {
|
10605 | border-color: #f4f4f4; }
|
10606 |
|
10607 | .searchbar-wp-dark.searchbar-has-focus .searchbar-input-container {
|
10608 | border-color: #222; }
|
10609 |
|
10610 | ion-segment {
|
10611 | display: -webkit-flex;
|
10612 | display: -ms-flexbox;
|
10613 | display: flex;
|
10614 | -webkit-flex: 1;
|
10615 | -ms-flex: 1;
|
10616 | flex: 1;
|
10617 | -webkit-align-items: center;
|
10618 | -ms-flex-align: center;
|
10619 | align-items: center;
|
10620 | -webkit-justify-content: center;
|
10621 | -ms-flex-pack: center;
|
10622 | justify-content: center;
|
10623 | width: 100%; }
|
10624 |
|
10625 | .segment-button {
|
10626 | margin-left: 0;
|
10627 | margin-right: 0;
|
10628 | text-align: center;
|
10629 | position: relative;
|
10630 | display: block;
|
10631 | overflow: hidden;
|
10632 | text-overflow: ellipsis;
|
10633 | white-space: nowrap;
|
10634 | cursor: pointer; }
|
10635 |
|
10636 | .segment-ios .segment-button {
|
10637 | -webkit-flex: 1;
|
10638 | -ms-flex: 1;
|
10639 | flex: 1;
|
10640 | width: 0;
|
10641 | height: 3.2rem;
|
10642 | border-width: 1px;
|
10643 | border-style: solid;
|
10644 | border-color: #007aff;
|
10645 | font-size: 1.3rem;
|
10646 | line-height: 3rem;
|
10647 | color: #007aff;
|
10648 | background-color: transparent; }
|
10649 | .segment-ios .segment-button ion-icon {
|
10650 | font-size: 2.6rem;
|
10651 | line-height: 2.8rem; }
|
10652 | .segment-ios .segment-button.segment-activated {
|
10653 | color: #fff;
|
10654 | background-color: #007aff;
|
10655 | opacity: 1;
|
10656 | transition: 100ms all linear; }
|
10657 | .segment-ios .segment-button:hover:not(.segment-activated) {
|
10658 | background-color: rgba(0, 122, 255, 0.1);
|
10659 | transition: 100ms all linear; }
|
10660 | .segment-ios .segment-button:active:not(.segment-activated) {
|
10661 | background-color: rgba(0, 122, 255, 0.16);
|
10662 | transition: 100ms all linear; }
|
10663 | .segment-ios .segment-button:first-of-type {
|
10664 | border-top-left-radius: 4px;
|
10665 | border-top-right-radius: 0;
|
10666 | border-bottom-right-radius: 0;
|
10667 | border-bottom-left-radius: 4px;
|
10668 | margin-right: 0; }
|
10669 | .segment-ios .segment-button:not(:first-of-type) {
|
10670 | border-left-width: 0; }
|
10671 | .segment-ios .segment-button:last-of-type {
|
10672 | border-top-left-radius: 0;
|
10673 | border-top-right-radius: 4px;
|
10674 | border-bottom-right-radius: 4px;
|
10675 | border-bottom-left-radius: 0;
|
10676 | margin-left: 0;
|
10677 | border-left-width: 0; }
|
10678 |
|
10679 | [dir="rtl"] .segment-ios .segment-button:first-of-type {
|
10680 | border-left-width: 0; }
|
10681 |
|
10682 | [dir="rtl"] .segment-ios .segment-button:last-of-type {
|
10683 | border-left-width: 1px; }
|
10684 |
|
10685 | .segment-ios.segment-disabled {
|
10686 | opacity: .4;
|
10687 | pointer-events: none; }
|
10688 |
|
10689 | .segment-ios .segment-button-disabled {
|
10690 | color: rgba(0, 122, 255, 0.3);
|
10691 | pointer-events: none; }
|
10692 |
|
10693 | .toolbar-ios .segment-ios {
|
10694 | left: 0;
|
10695 | right: 0;
|
10696 | top: 0;
|
10697 | bottom: 0;
|
10698 | position: absolute; }
|
10699 |
|
10700 | .toolbar-ios .segment-button {
|
10701 | max-width: 100px;
|
10702 | height: 2.6rem;
|
10703 | font-size: 1.2rem;
|
10704 | line-height: 2.5rem; }
|
10705 | .toolbar-ios .segment-button ion-icon {
|
10706 | font-size: 2.2rem;
|
10707 | line-height: 2.4rem; }
|
10708 |
|
10709 | .segment-ios-primary .segment-button {
|
10710 | border-color: #007aff;
|
10711 | color: #007aff; }
|
10712 | .segment-ios-primary .segment-button:hover:not(.segment-activated) {
|
10713 | background-color: rgba(0, 122, 255, 0.1); }
|
10714 | .segment-ios-primary .segment-button:active:not(.segment-activated) {
|
10715 | background-color: rgba(0, 122, 255, 0.16); }
|
10716 | .segment-ios-primary .segment-button.segment-activated {
|
10717 | color: #fff;
|
10718 | background-color: #007aff; }
|
10719 |
|
10720 | .segment-ios-primary .segment-button-disabled {
|
10721 | color: rgba(0, 122, 255, 0.3); }
|
10722 |
|
10723 | .toolbar-ios-primary .segment-ios .segment-button.segment-activated {
|
10724 | color: #007aff; }
|
10725 |
|
10726 | .segment-ios-secondary .segment-button {
|
10727 | border-color: #32db64;
|
10728 | color: #32db64; }
|
10729 | .segment-ios-secondary .segment-button:hover:not(.segment-activated) {
|
10730 | background-color: rgba(50, 219, 100, 0.1); }
|
10731 | .segment-ios-secondary .segment-button:active:not(.segment-activated) {
|
10732 | background-color: rgba(50, 219, 100, 0.16); }
|
10733 | .segment-ios-secondary .segment-button.segment-activated {
|
10734 | color: #fff;
|
10735 | background-color: #32db64; }
|
10736 |
|
10737 | .segment-ios-secondary .segment-button-disabled {
|
10738 | color: rgba(50, 219, 100, 0.3); }
|
10739 |
|
10740 | .toolbar-ios-secondary .segment-ios .segment-button.segment-activated {
|
10741 | color: #32db64; }
|
10742 |
|
10743 | .segment-ios-danger .segment-button {
|
10744 | border-color: #d91e18;
|
10745 | color: #d91e18; }
|
10746 | .segment-ios-danger .segment-button:hover:not(.segment-activated) {
|
10747 | background-color: rgba(217, 30, 24, 0.1); }
|
10748 | .segment-ios-danger .segment-button:active:not(.segment-activated) {
|
10749 | background-color: rgba(217, 30, 24, 0.16); }
|
10750 | .segment-ios-danger .segment-button.segment-activated {
|
10751 | color: #fff;
|
10752 | background-color: #d91e18; }
|
10753 |
|
10754 | .segment-ios-danger .segment-button-disabled {
|
10755 | color: rgba(217, 30, 24, 0.3); }
|
10756 |
|
10757 | .toolbar-ios-danger .segment-ios .segment-button.segment-activated {
|
10758 | color: #d91e18; }
|
10759 |
|
10760 | .segment-ios-light .segment-button {
|
10761 | border-color: #f4f4f4;
|
10762 | color: #f4f4f4; }
|
10763 | .segment-ios-light .segment-button:hover:not(.segment-activated) {
|
10764 | background-color: rgba(244, 244, 244, 0.1); }
|
10765 | .segment-ios-light .segment-button:active:not(.segment-activated) {
|
10766 | background-color: rgba(244, 244, 244, 0.16); }
|
10767 | .segment-ios-light .segment-button.segment-activated {
|
10768 | color: #000;
|
10769 | background-color: #f4f4f4; }
|
10770 |
|
10771 | .segment-ios-light .segment-button-disabled {
|
10772 | color: rgba(244, 244, 244, 0.3); }
|
10773 |
|
10774 | .toolbar-ios-light .segment-ios .segment-button.segment-activated {
|
10775 | color: #f4f4f4; }
|
10776 |
|
10777 | .segment-ios-dark .segment-button {
|
10778 | border-color: #222;
|
10779 | color: #222; }
|
10780 | .segment-ios-dark .segment-button:hover:not(.segment-activated) {
|
10781 | background-color: rgba(34, 34, 34, 0.1); }
|
10782 | .segment-ios-dark .segment-button:active:not(.segment-activated) {
|
10783 | background-color: rgba(34, 34, 34, 0.16); }
|
10784 | .segment-ios-dark .segment-button.segment-activated {
|
10785 | color: #fff;
|
10786 | background-color: #222; }
|
10787 |
|
10788 | .segment-ios-dark .segment-button-disabled {
|
10789 | color: rgba(34, 34, 34, 0.3); }
|
10790 |
|
10791 | .toolbar-ios-dark .segment-ios .segment-button.segment-activated {
|
10792 | color: #222; }
|
10793 |
|
10794 | .segment-md .segment-button {
|
10795 | -webkit-flex: 1;
|
10796 | -ms-flex: 1;
|
10797 | flex: 1;
|
10798 | width: 0;
|
10799 | height: 4.2rem;
|
10800 | border-bottom-width: 2px;
|
10801 | border-bottom-style: solid;
|
10802 | border-bottom-color: rgba(0, 0, 0, 0.1);
|
10803 | font-size: 1.2rem;
|
10804 | font-weight: 500;
|
10805 | line-height: 4rem;
|
10806 | text-transform: uppercase;
|
10807 | color: #007aff;
|
10808 | background-color: transparent;
|
10809 | opacity: 0.7;
|
10810 | transition: 100ms all linear;
|
10811 | padding: 0 6px; }
|
10812 | .segment-md .segment-button ion-icon {
|
10813 | font-size: 2.6rem;
|
10814 | line-height: 4rem; }
|
10815 | .segment-md .segment-button.activated, .segment-md .segment-button.segment-activated {
|
10816 | border-color: #007aff;
|
10817 | opacity: 1; }
|
10818 |
|
10819 | .segment-md.segment-disabled,
|
10820 | .segment-md .segment-button-disabled {
|
10821 | opacity: 0.3;
|
10822 | pointer-events: none; }
|
10823 |
|
10824 | .toolbar .segment-md {
|
10825 | margin: 0 auto; }
|
10826 |
|
10827 | .toolbar .segment-md .segment-button.activated,
|
10828 | .toolbar .segment-md .segment-button.segment-activated {
|
10829 | opacity: 1; }
|
10830 |
|
10831 | .segment-md-primary .segment-button {
|
10832 | color: #007aff; }
|
10833 | .segment-md-primary .segment-button.activated, .segment-md-primary .segment-button.segment-activated {
|
10834 | border-color: #007aff;
|
10835 | color: #007aff;
|
10836 | opacity: 1; }
|
10837 |
|
10838 | .segment-md-secondary .segment-button {
|
10839 | color: #32db64; }
|
10840 | .segment-md-secondary .segment-button.activated, .segment-md-secondary .segment-button.segment-activated {
|
10841 | border-color: #32db64;
|
10842 | color: #32db64;
|
10843 | opacity: 1; }
|
10844 |
|
10845 | .segment-md-danger .segment-button {
|
10846 | color: #d91e18; }
|
10847 | .segment-md-danger .segment-button.activated, .segment-md-danger .segment-button.segment-activated {
|
10848 | border-color: #d91e18;
|
10849 | color: #d91e18;
|
10850 | opacity: 1; }
|
10851 |
|
10852 | .segment-md-light .segment-button {
|
10853 | color: #f4f4f4; }
|
10854 | .segment-md-light .segment-button.activated, .segment-md-light .segment-button.segment-activated {
|
10855 | border-color: #f4f4f4;
|
10856 | color: #f4f4f4;
|
10857 | opacity: 1; }
|
10858 |
|
10859 | .segment-md-dark .segment-button {
|
10860 | color: #222; }
|
10861 | .segment-md-dark .segment-button.activated, .segment-md-dark .segment-button.segment-activated {
|
10862 | border-color: #222;
|
10863 | color: #222;
|
10864 | opacity: 1; }
|
10865 |
|
10866 | .segment-wp {
|
10867 | -webkit-justify-content: flex-start;
|
10868 | -ms-flex-pack: start;
|
10869 | justify-content: flex-start; }
|
10870 |
|
10871 | .segment-wp .segment-button {
|
10872 | height: 4rem;
|
10873 | font-size: 1.3rem;
|
10874 | font-weight: bold;
|
10875 | line-height: 4rem;
|
10876 | text-transform: uppercase;
|
10877 | color: #fff;
|
10878 | background-color: transparent;
|
10879 | opacity: 0.5;
|
10880 | padding: 0 6px; }
|
10881 | .segment-wp .segment-button.segment-activated {
|
10882 | opacity: 1; }
|
10883 | .segment-wp .segment-button ion-icon {
|
10884 | font-size: 2.6rem;
|
10885 | line-height: 4rem; }
|
10886 |
|
10887 | .segment-wp.segment-disabled,
|
10888 | .segment-wp .segment-button-disabled {
|
10889 | opacity: 0.3;
|
10890 | pointer-events: none; }
|
10891 |
|
10892 | .toolbar .segment-wp {
|
10893 | margin: 0 auto; }
|
10894 |
|
10895 | .segment-wp-primary .segment-button {
|
10896 | color: #007aff; }
|
10897 | .segment-wp-primary .segment-button.activated, .segment-wp-primary .segment-button.segment-activated {
|
10898 | border-color: #007aff;
|
10899 | color: #007aff;
|
10900 | opacity: 1; }
|
10901 |
|
10902 | .segment-wp-secondary .segment-button {
|
10903 | color: #32db64; }
|
10904 | .segment-wp-secondary .segment-button.activated, .segment-wp-secondary .segment-button.segment-activated {
|
10905 | border-color: #32db64;
|
10906 | color: #32db64;
|
10907 | opacity: 1; }
|
10908 |
|
10909 | .segment-wp-danger .segment-button {
|
10910 | color: #d91e18; }
|
10911 | .segment-wp-danger .segment-button.activated, .segment-wp-danger .segment-button.segment-activated {
|
10912 | border-color: #d91e18;
|
10913 | color: #d91e18;
|
10914 | opacity: 1; }
|
10915 |
|
10916 | .segment-wp-light .segment-button {
|
10917 | color: #f4f4f4; }
|
10918 | .segment-wp-light .segment-button.activated, .segment-wp-light .segment-button.segment-activated {
|
10919 | border-color: #f4f4f4;
|
10920 | color: #f4f4f4;
|
10921 | opacity: 1; }
|
10922 |
|
10923 | .segment-wp-dark .segment-button {
|
10924 | color: #222; }
|
10925 | .segment-wp-dark .segment-button.activated, .segment-wp-dark .segment-button.segment-activated {
|
10926 | border-color: #222;
|
10927 | color: #222;
|
10928 | opacity: 1; }
|
10929 |
|
10930 | ion-select {
|
10931 | display: -webkit-flex;
|
10932 | display: -ms-flexbox;
|
10933 | display: flex;
|
10934 | overflow: hidden;
|
10935 | max-width: 45%; }
|
10936 |
|
10937 | .select-text {
|
10938 | overflow: hidden;
|
10939 | -webkit-flex: 1;
|
10940 | -ms-flex: 1;
|
10941 | flex: 1;
|
10942 | min-width: 16px;
|
10943 | font-size: inherit;
|
10944 | text-overflow: ellipsis;
|
10945 | white-space: nowrap; }
|
10946 |
|
10947 | .item-multiple-inputs ion-select {
|
10948 | position: relative; }
|
10949 |
|
10950 | .select-disabled,
|
10951 | .item-select-disabled ion-label {
|
10952 | opacity: .4;
|
10953 | pointer-events: none; }
|
10954 |
|
10955 | .select-popover ion-list {
|
10956 | margin: -1px 0; }
|
10957 |
|
10958 | .select-ios {
|
10959 | padding: 11px 8px 11px 16px; }
|
10960 |
|
10961 | .select-ios .select-placeholder {
|
10962 | color: #999; }
|
10963 |
|
10964 | .select-ios .select-icon {
|
10965 | position: relative;
|
10966 | width: 12px;
|
10967 | height: 18px; }
|
10968 |
|
10969 | .select-ios .select-icon .select-icon-inner {
|
10970 | left: 5px;
|
10971 | top: 50%;
|
10972 | margin-top: -2px;
|
10973 | position: absolute;
|
10974 | width: 0;
|
10975 | height: 0;
|
10976 | border-top: 5px solid;
|
10977 | border-right: 5px solid transparent;
|
10978 | border-left: 5px solid transparent;
|
10979 | color: #999;
|
10980 | pointer-events: none; }
|
10981 |
|
10982 | .select-md {
|
10983 | padding: 13px 8px 13px 16px; }
|
10984 |
|
10985 | .select-md .select-placeholder {
|
10986 | color: #999; }
|
10987 |
|
10988 | .select-md .item-select ion-label {
|
10989 | margin-left: 0; }
|
10990 |
|
10991 | .select-md .select-icon {
|
10992 | position: relative;
|
10993 | width: 12px;
|
10994 | height: 19px; }
|
10995 |
|
10996 | .select-md .select-icon .select-icon-inner {
|
10997 | left: 5px;
|
10998 | top: 50%;
|
10999 | margin-top: -3px;
|
11000 | position: absolute;
|
11001 | width: 0;
|
11002 | height: 0;
|
11003 | border-top: 5px solid;
|
11004 | border-right: 5px solid transparent;
|
11005 | border-left: 5px solid transparent;
|
11006 | color: #999;
|
11007 | pointer-events: none; }
|
11008 |
|
11009 | .select-wp {
|
11010 | margin: 13px 8px;
|
11011 | padding: 0 8px;
|
11012 | -webkit-flex: 1;
|
11013 | -ms-flex: 1;
|
11014 | flex: 1;
|
11015 | max-width: 100%;
|
11016 | border: 2px solid rgba(0, 0, 0, 0.5);
|
11017 | line-height: 3rem; }
|
11018 |
|
11019 | .select-wp .select-placeholder {
|
11020 | color: rgba(0, 0, 0, 0.5); }
|
11021 |
|
11022 | .item-wp.item-select ion-label {
|
11023 | margin-left: 0; }
|
11024 |
|
11025 | .select-wp .select-icon {
|
11026 | position: relative;
|
11027 | -webkit-align-self: center;
|
11028 | -ms-flex-item-align: center;
|
11029 | -ms-grid-row-align: center;
|
11030 | align-self: center;
|
11031 | width: 18px;
|
11032 | height: 18px; }
|
11033 |
|
11034 | .select-wp .select-icon .select-icon-inner {
|
11035 | left: 5px;
|
11036 | top: 3px;
|
11037 | position: absolute;
|
11038 | display: block;
|
11039 | width: 9px;
|
11040 | height: 9px;
|
11041 | border-top: 2px solid rgba(0, 0, 0, 0.5);
|
11042 | border-right: 2px solid rgba(0, 0, 0, 0.5);
|
11043 | -webkit-transform: rotate(135deg);
|
11044 | transform: rotate(135deg);
|
11045 | pointer-events: none; }
|
11046 |
|
11047 | .select-wp .select-text {
|
11048 | min-height: 3rem; }
|
11049 |
|
11050 | .hidden-show-when {
|
11051 | display: none !important; }
|
11052 |
|
11053 | .hidden-hide-when {
|
11054 | display: none !important; }
|
11055 |
|
11056 | .swiper-container {
|
11057 | margin-left: auto;
|
11058 | margin-right: auto;
|
11059 | padding: 0;
|
11060 | position: relative;
|
11061 | z-index: 1;
|
11062 | display: -webkit-flex;
|
11063 | display: -ms-flexbox;
|
11064 | display: flex;
|
11065 | overflow: hidden;
|
11066 | width: 100%;
|
11067 | height: 100%; }
|
11068 |
|
11069 | .swiper-container-no-flexbox .swiper-slide {
|
11070 | float: left; }
|
11071 |
|
11072 | .swiper-container-vertical > .swiper-wrapper {
|
11073 | -webkit-flex-direction: column;
|
11074 | -ms-flex-direction: column;
|
11075 | flex-direction: column; }
|
11076 |
|
11077 | .swiper-wrapper {
|
11078 | padding: 0;
|
11079 | position: relative;
|
11080 | z-index: 1;
|
11081 | display: -webkit-flex;
|
11082 | display: -ms-flexbox;
|
11083 | display: flex;
|
11084 | width: 100%;
|
11085 | height: 100%;
|
11086 | transition-property: -webkit-transform;
|
11087 | transition-property: transform;
|
11088 | transition-property: transform, -webkit-transform;
|
11089 | box-sizing: content-box; }
|
11090 |
|
11091 | .swiper-container-android .swiper-slide,
|
11092 | .swiper-wrapper {
|
11093 | -webkit-transform: translate3d(0, 0, 0);
|
11094 | transform: translate3d(0, 0, 0); }
|
11095 |
|
11096 | .swiper-container-multirow > .swiper-wrapper {
|
11097 | -webkit-flex-wrap: wrap;
|
11098 | -ms-flex-wrap: wrap;
|
11099 | flex-wrap: wrap; }
|
11100 |
|
11101 | .swiper-container-free-mode > .swiper-wrapper {
|
11102 | margin: 0 auto;
|
11103 | transition-timing-function: ease-out; }
|
11104 |
|
11105 | .swiper-slide {
|
11106 | text-align: center;
|
11107 | position: relative;
|
11108 | display: -webkit-flex;
|
11109 | display: -ms-flexbox;
|
11110 | display: flex;
|
11111 | -webkit-flex-shrink: 0;
|
11112 | -ms-flex-negative: 0;
|
11113 | flex-shrink: 0;
|
11114 | -webkit-align-items: center;
|
11115 | -ms-flex-align: center;
|
11116 | align-items: center;
|
11117 | -webkit-justify-content: center;
|
11118 | -ms-flex-pack: center;
|
11119 | justify-content: center;
|
11120 | width: 100%;
|
11121 | height: 100%;
|
11122 | font-size: 18px;
|
11123 | box-sizing: border-box; }
|
11124 |
|
11125 | .swiper-container-autoheight,
|
11126 | .swiper-container-autoheight .swiper-slide {
|
11127 | height: auto; }
|
11128 |
|
11129 | .swiper-container-autoheight .swiper-wrapper {
|
11130 | -webkit-align-items: flex-start;
|
11131 | -ms-flex-align: start;
|
11132 | align-items: flex-start;
|
11133 | transition-property: height, -webkit-transform;
|
11134 | transition-property: transform, height;
|
11135 | transition-property: transform, height, -webkit-transform; }
|
11136 |
|
11137 | .swiper-container .swiper-notification {
|
11138 | left: 0;
|
11139 | top: 0;
|
11140 | position: absolute;
|
11141 | z-index: -1000;
|
11142 | opacity: 0;
|
11143 | pointer-events: none; }
|
11144 |
|
11145 | .swiper-wp8-horizontal {
|
11146 | -ms-touch-action: pan-y;
|
11147 | touch-action: pan-y; }
|
11148 |
|
11149 | .swiper-wp8-vertical {
|
11150 | -ms-touch-action: pan-x;
|
11151 | touch-action: pan-x; }
|
11152 |
|
11153 | .swiper-button-prev,
|
11154 | .swiper-button-next {
|
11155 | top: 50%;
|
11156 | margin-top: -22px;
|
11157 | background-position: center;
|
11158 | position: absolute;
|
11159 | z-index: 10;
|
11160 | width: 27px;
|
11161 | height: 44px;
|
11162 | background-repeat: no-repeat;
|
11163 | background-size: 27px 44px;
|
11164 | cursor: pointer; }
|
11165 |
|
11166 | .swiper-button-prev.swiper-button-disabled,
|
11167 | .swiper-button-next.swiper-button-disabled {
|
11168 | cursor: auto;
|
11169 | opacity: .35;
|
11170 | pointer-events: none; }
|
11171 |
|
11172 | .swiper-button-prev,
|
11173 | .swiper-container-rtl .swiper-button-next {
|
11174 | left: 10px;
|
11175 | right: auto;
|
11176 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); }
|
11177 |
|
11178 | .swiper-button-prev.swiper-button-black,
|
11179 | .swiper-container-rtl .swiper-button-next.swiper-button-black {
|
11180 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }
|
11181 |
|
11182 | .swiper-button-prev.swiper-button-white,
|
11183 | .swiper-container-rtl .swiper-button-next.swiper-button-white {
|
11184 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
|
11185 |
|
11186 | .swiper-button-next,
|
11187 | .swiper-container-rtl .swiper-button-prev {
|
11188 | left: auto;
|
11189 | right: 10px;
|
11190 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E"); }
|
11191 |
|
11192 | .swiper-button-next.swiper-button-black,
|
11193 | .swiper-container-rtl .swiper-button-prev.swiper-button-black {
|
11194 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }
|
11195 |
|
11196 | .swiper-button-next.swiper-button-white,
|
11197 | .swiper-container-rtl .swiper-button-prev.swiper-button-white {
|
11198 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
|
11199 |
|
11200 | .swiper-pagination {
|
11201 | text-align: center;
|
11202 | -webkit-transform: translate3d(0, 0, 0);
|
11203 | transform: translate3d(0, 0, 0);
|
11204 | position: absolute;
|
11205 | z-index: 10;
|
11206 | transition: 300ms;
|
11207 | pointer-events: none; }
|
11208 |
|
11209 | .swiper-pagination.swiper-pagination-hidden {
|
11210 | opacity: 0; }
|
11211 |
|
11212 | .swiper-pagination-fraction,
|
11213 | .swiper-pagination-custom,
|
11214 | .swiper-container-horizontal > .swiper-pagination-bullets {
|
11215 | left: 0;
|
11216 | bottom: 10px;
|
11217 | width: 100%; }
|
11218 |
|
11219 | .swiper-pagination-bullet {
|
11220 | border-radius: 100%;
|
11221 | display: inline-block;
|
11222 | width: 8px;
|
11223 | height: 8px;
|
11224 | background: #000;
|
11225 | opacity: .2;
|
11226 | pointer-events: auto; }
|
11227 |
|
11228 | button.swiper-pagination-bullet {
|
11229 | margin: 0;
|
11230 | padding: 0;
|
11231 | -moz-appearance: none;
|
11232 | -ms-appearance: none;
|
11233 | -webkit-appearance: none;
|
11234 | appearance: none;
|
11235 | border: 0;
|
11236 | box-shadow: none; }
|
11237 |
|
11238 | .swiper-pagination-clickable .swiper-pagination-bullet {
|
11239 | cursor: pointer; }
|
11240 |
|
11241 | .swiper-pagination-white .swiper-pagination-bullet {
|
11242 | background: #fff; }
|
11243 |
|
11244 | .swiper-pagination-bullet-active {
|
11245 | background: #007aff;
|
11246 | opacity: 1; }
|
11247 |
|
11248 | .swiper-pagination-white .swiper-pagination-bullet-active {
|
11249 | background: #fff; }
|
11250 |
|
11251 | .swiper-pagination-black .swiper-pagination-bullet-active {
|
11252 | background: #000; }
|
11253 |
|
11254 | .swiper-container-vertical > .swiper-pagination-bullets {
|
11255 | right: 10px;
|
11256 | top: 50%;
|
11257 | -webkit-transform: translate3d(0, -50%, 0);
|
11258 | transform: translate3d(0, -50%, 0); }
|
11259 |
|
11260 | .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
|
11261 | margin: 5px 0;
|
11262 | display: block; }
|
11263 |
|
11264 | .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
|
11265 | margin: 0 5px; }
|
11266 |
|
11267 | .swiper-pagination-progress {
|
11268 | position: absolute;
|
11269 | background: rgba(0, 0, 0, 0.25); }
|
11270 |
|
11271 | .swiper-pagination-progress .swiper-pagination-progressbar {
|
11272 | left: 0;
|
11273 | top: 0;
|
11274 | -webkit-transform-origin: left top;
|
11275 | transform-origin: left top;
|
11276 | position: absolute;
|
11277 | width: 100%;
|
11278 | height: 100%;
|
11279 | background: #007aff;
|
11280 | -webkit-transform: scale(0);
|
11281 | transform: scale(0); }
|
11282 |
|
11283 | .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
|
11284 | -webkit-transform-origin: right top;
|
11285 | transform-origin: right top; }
|
11286 |
|
11287 | .swiper-container-horizontal > .swiper-pagination-progress {
|
11288 | left: 0;
|
11289 | top: 0;
|
11290 | width: 100%;
|
11291 | height: 4px; }
|
11292 |
|
11293 | .swiper-container-vertical > .swiper-pagination-progress {
|
11294 | left: 0;
|
11295 | top: 0;
|
11296 | width: 4px;
|
11297 | height: 100%; }
|
11298 |
|
11299 | .swiper-pagination-progress.swiper-pagination-white {
|
11300 | background: rgba(255, 255, 255, 0.5); }
|
11301 |
|
11302 | .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
|
11303 | background: #fff; }
|
11304 |
|
11305 | .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
|
11306 | background: #000; }
|
11307 |
|
11308 | .swiper-container-3d {
|
11309 | -webkit-perspective: 1200px;
|
11310 | perspective: 1200px; }
|
11311 |
|
11312 | .swiper-container-3d .swiper-wrapper,
|
11313 | .swiper-container-3d .swiper-slide,
|
11314 | .swiper-container-3d .swiper-slide-shadow-left,
|
11315 | .swiper-container-3d .swiper-slide-shadow-right,
|
11316 | .swiper-container-3d .swiper-slide-shadow-top,
|
11317 | .swiper-container-3d .swiper-slide-shadow-bottom,
|
11318 | .swiper-container-3d .swiper-cube-shadow {
|
11319 | -webkit-transform-style: preserve-3d;
|
11320 | transform-style: preserve-3d; }
|
11321 |
|
11322 | .swiper-container-3d .swiper-slide-shadow-left,
|
11323 | .swiper-container-3d .swiper-slide-shadow-right,
|
11324 | .swiper-container-3d .swiper-slide-shadow-top,
|
11325 | .swiper-container-3d .swiper-slide-shadow-bottom {
|
11326 | left: 0;
|
11327 | top: 0;
|
11328 | position: absolute;
|
11329 | z-index: 10;
|
11330 | width: 100%;
|
11331 | height: 100%;
|
11332 | pointer-events: none; }
|
11333 |
|
11334 | .swiper-container-3d .swiper-slide-shadow-left {
|
11335 | background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }
|
11336 |
|
11337 | .swiper-container-3d .swiper-slide-shadow-right {
|
11338 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }
|
11339 |
|
11340 | .swiper-container-3d .swiper-slide-shadow-top {
|
11341 | background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }
|
11342 |
|
11343 | .swiper-container-3d .swiper-slide-shadow-bottom {
|
11344 | background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }
|
11345 |
|
11346 | .swiper-container-coverflow .swiper-wrapper,
|
11347 | .swiper-container-flip .swiper-wrapper {
|
11348 | -webkit-perspective: 1200px;
|
11349 | perspective: 1200px; }
|
11350 |
|
11351 | .swiper-container-cube,
|
11352 | .swiper-container-flip {
|
11353 | overflow: visible; }
|
11354 |
|
11355 | .swiper-container-cube .swiper-slide,
|
11356 | .swiper-container-flip .swiper-slide {
|
11357 | z-index: 1;
|
11358 | -webkit-backface-visibility: hidden;
|
11359 | backface-visibility: hidden;
|
11360 | pointer-events: none; }
|
11361 |
|
11362 | .swiper-container-cube .swiper-slide .swiper-slide,
|
11363 | .swiper-container-flip .swiper-slide .swiper-slide {
|
11364 | pointer-events: none; }
|
11365 |
|
11366 | .swiper-container-cube .swiper-slide-active,
|
11367 | .swiper-container-flip .swiper-slide-active,
|
11368 | .swiper-container-cube .swiper-slide-active .swiper-slide-active,
|
11369 | .swiper-container-flip .swiper-slide-active .swiper-slide-active {
|
11370 | pointer-events: auto; }
|
11371 |
|
11372 | .swiper-container-cube .swiper-slide-shadow-top,
|
11373 | .swiper-container-flip .swiper-slide-shadow-top,
|
11374 | .swiper-container-cube .swiper-slide-shadow-bottom,
|
11375 | .swiper-container-flip .swiper-slide-shadow-bottom,
|
11376 | .swiper-container-cube .swiper-slide-shadow-left,
|
11377 | .swiper-container-flip .swiper-slide-shadow-left,
|
11378 | .swiper-container-cube .swiper-slide-shadow-right,
|
11379 | .swiper-container-flip .swiper-slide-shadow-right {
|
11380 | z-index: 0;
|
11381 | -webkit-backface-visibility: hidden;
|
11382 | backface-visibility: hidden; }
|
11383 |
|
11384 | .swiper-container-cube .swiper-slide {
|
11385 | -webkit-transform-origin: 0 0;
|
11386 | transform-origin: 0 0;
|
11387 | width: 100%;
|
11388 | height: 100%;
|
11389 | visibility: hidden; }
|
11390 |
|
11391 | .swiper-container-cube.swiper-container-rtl .swiper-slide {
|
11392 | -webkit-transform-origin: 100% 0;
|
11393 | transform-origin: 100% 0; }
|
11394 |
|
11395 | .swiper-container-cube .swiper-slide-active,
|
11396 | .swiper-container-cube .swiper-slide-next,
|
11397 | .swiper-container-cube .swiper-slide-prev,
|
11398 | .swiper-container-cube .swiper-slide-next + .swiper-slide {
|
11399 | visibility: visible;
|
11400 | pointer-events: auto; }
|
11401 |
|
11402 | .swiper-container-cube .swiper-cube-shadow {
|
11403 | left: 0;
|
11404 | bottom: 0;
|
11405 | position: absolute;
|
11406 | z-index: 0;
|
11407 | width: 100%;
|
11408 | height: 100%;
|
11409 | background: #000;
|
11410 | opacity: .6;
|
11411 | -webkit-filter: blur(50px);
|
11412 | filter: blur(50px); }
|
11413 |
|
11414 | .swiper-container-fade.swiper-container-free-mode .swiper-slide {
|
11415 | transition-timing-function: ease-out; }
|
11416 |
|
11417 | .swiper-container-fade .swiper-slide {
|
11418 | transition-property: opacity;
|
11419 | pointer-events: none; }
|
11420 |
|
11421 | .swiper-container-fade .swiper-slide .swiper-slide {
|
11422 | pointer-events: none; }
|
11423 |
|
11424 | .swiper-container-fade .swiper-slide-active,
|
11425 | .swiper-container-fade .swiper-slide-active .swiper-slide-active {
|
11426 | pointer-events: auto; }
|
11427 |
|
11428 | .swiper-zoom-container {
|
11429 | text-align: center;
|
11430 | display: -webkit-flex;
|
11431 | display: -ms-flexbox;
|
11432 | display: flex;
|
11433 | -webkit-align-items: center;
|
11434 | -ms-flex-align: center;
|
11435 | align-items: center;
|
11436 | -webkit-justify-content: center;
|
11437 | -ms-flex-pack: center;
|
11438 | justify-content: center;
|
11439 | width: 100%;
|
11440 | height: 100%; }
|
11441 |
|
11442 | .swiper-zoom-container > img,
|
11443 | .swiper-zoom-container > svg,
|
11444 | .swiper-zoom-container > canvas {
|
11445 | max-width: 100%;
|
11446 | max-height: 100%;
|
11447 | object-fit: contain; }
|
11448 |
|
11449 | .swiper-scrollbar {
|
11450 | border-radius: 10px;
|
11451 | position: relative;
|
11452 | background: rgba(0, 0, 0, 0.1);
|
11453 | -ms-touch-action: none;
|
11454 | touch-action: none; }
|
11455 |
|
11456 | .swiper-container-horizontal > .swiper-scrollbar {
|
11457 | left: 1%;
|
11458 | bottom: 3px;
|
11459 | position: absolute;
|
11460 | z-index: 50;
|
11461 | width: 98%;
|
11462 | height: 5px; }
|
11463 |
|
11464 | .swiper-container-vertical > .swiper-scrollbar {
|
11465 | right: 3px;
|
11466 | top: 1%;
|
11467 | position: absolute;
|
11468 | z-index: 50;
|
11469 | width: 5px;
|
11470 | height: 98%; }
|
11471 |
|
11472 | .swiper-scrollbar-drag {
|
11473 | left: 0;
|
11474 | top: 0;
|
11475 | border-radius: 10px;
|
11476 | position: relative;
|
11477 | width: 100%;
|
11478 | height: 100%;
|
11479 | background: rgba(0, 0, 0, 0.5); }
|
11480 |
|
11481 | .swiper-scrollbar-cursor-drag {
|
11482 | cursor: move; }
|
11483 |
|
11484 | .swiper-lazy-preloader {
|
11485 | left: 50%;
|
11486 | top: 50%;
|
11487 | margin-left: -21px;
|
11488 | margin-top: -21px;
|
11489 | -webkit-transform-origin: 50%;
|
11490 | transform-origin: 50%;
|
11491 | position: absolute;
|
11492 | z-index: 10;
|
11493 | width: 42px;
|
11494 | height: 42px;
|
11495 | -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
|
11496 | animation: swiper-preloader-spin 1s steps(12, end) infinite; }
|
11497 |
|
11498 | .swiper-lazy-preloader::after {
|
11499 | background-position: 50%;
|
11500 | display: block;
|
11501 | width: 100%;
|
11502 | height: 100%;
|
11503 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
11504 | background-repeat: no-repeat;
|
11505 | background-size: 100%;
|
11506 | content: ""; }
|
11507 |
|
11508 | .swiper-lazy-preloader-white::after {
|
11509 | background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }
|
11510 |
|
11511 | @-webkit-keyframes swiper-preloader-spin {
|
11512 | 100% {
|
11513 | -webkit-transform: rotate(360deg);
|
11514 | transform: rotate(360deg); } }
|
11515 |
|
11516 | @keyframes swiper-preloader-spin {
|
11517 | 100% {
|
11518 | -webkit-transform: rotate(360deg);
|
11519 | transform: rotate(360deg); } }
|
11520 |
|
11521 | ion-slides {
|
11522 | display: block;
|
11523 | width: 100%;
|
11524 | height: 100%; }
|
11525 |
|
11526 | .slide-zoom {
|
11527 | text-align: center;
|
11528 | display: block;
|
11529 | width: 100%; }
|
11530 |
|
11531 | .swiper-slide img {
|
11532 | width: auto;
|
11533 | max-width: 100%;
|
11534 | height: auto;
|
11535 | max-height: 100%; }
|
11536 |
|
11537 | .split-pane {
|
11538 | left: 0;
|
11539 | right: 0;
|
11540 | top: 0;
|
11541 | bottom: 0;
|
11542 | position: absolute;
|
11543 | display: -webkit-flex;
|
11544 | display: -ms-flexbox;
|
11545 | display: flex;
|
11546 | -webkit-flex-direction: row;
|
11547 | -ms-flex-direction: row;
|
11548 | flex-direction: row;
|
11549 | -webkit-flex-wrap: nowrap;
|
11550 | -ms-flex-wrap: nowrap;
|
11551 | flex-wrap: nowrap;
|
11552 | contain: strict; }
|
11553 |
|
11554 | .split-pane-side:not(ion-menu) {
|
11555 | display: none; }
|
11556 |
|
11557 | .split-pane-visible > .split-pane-side,
|
11558 | .split-pane-visible > .split-pane-main {
|
11559 | left: 0;
|
11560 | right: 0;
|
11561 | top: 0;
|
11562 | bottom: 0;
|
11563 | position: relative;
|
11564 | z-index: 0;
|
11565 | -webkit-flex: 1;
|
11566 | -ms-flex: 1;
|
11567 | flex: 1;
|
11568 | box-shadow: none !important; }
|
11569 |
|
11570 | .split-pane-visible > .split-pane-side {
|
11571 | -webkit-flex-shrink: 0;
|
11572 | -ms-flex-negative: 0;
|
11573 | flex-shrink: 0;
|
11574 | -webkit-order: -1;
|
11575 | -ms-flex-order: -1;
|
11576 | order: -1; }
|
11577 |
|
11578 | .split-pane-visible > .split-pane-main,
|
11579 | .split-pane-visible > ion-nav.split-pane-side,
|
11580 | .split-pane-visible > ion-tabs.split-pane-side,
|
11581 | .split-pane-visible > ion-menu.menu-enabled {
|
11582 | display: block; }
|
11583 |
|
11584 | .split-pane-visible > ion-split-pane.split-pane-side,
|
11585 | .split-pane-visible > ion-split-pane.split-pane-main {
|
11586 | display: -webkit-flex;
|
11587 | display: -ms-flexbox;
|
11588 | display: flex; }
|
11589 |
|
11590 | .split-pane-visible > ion-menu.menu-enabled > .menu-inner {
|
11591 | left: 0;
|
11592 | right: 0;
|
11593 | width: auto;
|
11594 | box-shadow: none !important;
|
11595 | -webkit-transform: none !important;
|
11596 | transform: none !important; }
|
11597 |
|
11598 | .split-pane-visible > ion-menu.menu-enabled > .ion-backdrop {
|
11599 | display: hidden !important; }
|
11600 |
|
11601 | .split-pane-visible > .split-pane-side[side=start] {
|
11602 | -webkit-order: -1;
|
11603 | -ms-flex-order: -1;
|
11604 | order: -1; }
|
11605 |
|
11606 | .split-pane-visible > .split-pane-side[side=end] {
|
11607 | -webkit-order: 1;
|
11608 | -ms-flex-order: 1;
|
11609 | order: 1; }
|
11610 |
|
11611 | .split-pane-visible > .split-pane-side[side=left] {
|
11612 | -webkit-order: -1;
|
11613 | -ms-flex-order: -1;
|
11614 | order: -1; }
|
11615 |
|
11616 | .split-pane-visible > .split-pane-side[side=right] {
|
11617 | -webkit-order: 1;
|
11618 | -ms-flex-order: 1;
|
11619 | order: 1; }
|
11620 |
|
11621 | .split-pane-ios.split-pane-visible > .split-pane-side {
|
11622 | min-width: 270px;
|
11623 | max-width: 28%;
|
11624 | border-right: 0.55px solid #000;
|
11625 | border-left: 0; }
|
11626 |
|
11627 | .split-pane-ios.split-pane-visible > .split-pane-side[side=right] {
|
11628 | border-right: 0;
|
11629 | border-left: 0.55px solid #000; }
|
11630 |
|
11631 | .split-pane-md.split-pane-visible > .split-pane-side {
|
11632 | min-width: 270px;
|
11633 | max-width: 28%;
|
11634 | border-right: 1px solid #dedede;
|
11635 | border-left: 0; }
|
11636 |
|
11637 | .split-pane-md.split-pane-visible > .split-pane-side[side=right] {
|
11638 | border-right: 0;
|
11639 | border-left: 1px solid #dedede; }
|
11640 |
|
11641 | .split-pane-wp.split-pane-visible > .split-pane-side {
|
11642 | min-width: 270px;
|
11643 | max-width: 28%;
|
11644 | border-right: 1px solid transparent;
|
11645 | border-left: 0; }
|
11646 |
|
11647 | .split-pane-wp.split-pane-visible > .split-pane-side[side=right] {
|
11648 | border-right: 0;
|
11649 | border-left: 1px solid transparent; }
|
11650 |
|
11651 | ion-spinner {
|
11652 | position: relative;
|
11653 | display: inline-block;
|
11654 | width: 28px;
|
11655 | height: 28px; }
|
11656 |
|
11657 | ion-spinner svg {
|
11658 | left: 0;
|
11659 | top: 0;
|
11660 | position: absolute;
|
11661 | width: 100%;
|
11662 | height: 100%;
|
11663 | -webkit-transform: translateZ(0);
|
11664 | transform: translateZ(0); }
|
11665 |
|
11666 | ion-spinner.spinner-paused svg {
|
11667 | -webkit-animation-play-state: paused;
|
11668 | animation-play-state: paused; }
|
11669 |
|
11670 | .spinner-ios line,
|
11671 | .spinner-ios-small line {
|
11672 | stroke-width: 4px;
|
11673 | stroke-linecap: round; }
|
11674 |
|
11675 | .spinner-ios svg,
|
11676 | .spinner-ios-small svg {
|
11677 | -webkit-animation: spinner-fade-out 1s linear infinite;
|
11678 | animation: spinner-fade-out 1s linear infinite; }
|
11679 |
|
11680 | .spinner-bubbles svg {
|
11681 | -webkit-animation: spinner-scale-out 1s linear infinite;
|
11682 | animation: spinner-scale-out 1s linear infinite; }
|
11683 |
|
11684 | .spinner-circles svg {
|
11685 | -webkit-animation: spinner-fade-out 1s linear infinite;
|
11686 | animation: spinner-fade-out 1s linear infinite; }
|
11687 |
|
11688 | .spinner-crescent circle {
|
11689 | fill: transparent;
|
11690 | stroke-width: 4px;
|
11691 | stroke-dasharray: 128px;
|
11692 | stroke-dashoffset: 82px; }
|
11693 |
|
11694 | .spinner-crescent svg {
|
11695 | -webkit-animation: spinner-rotate 1s linear infinite;
|
11696 | animation: spinner-rotate 1s linear infinite; }
|
11697 |
|
11698 | .spinner-dots circle {
|
11699 | stroke-width: 0; }
|
11700 |
|
11701 | .spinner-dots svg {
|
11702 | -webkit-transform-origin: center;
|
11703 | transform-origin: center;
|
11704 | -webkit-animation: spinner-dots 1s linear infinite;
|
11705 | animation: spinner-dots 1s linear infinite; }
|
11706 |
|
11707 | @-webkit-keyframes spinner-fade-out {
|
11708 | 0% {
|
11709 | opacity: 1; }
|
11710 | 100% {
|
11711 | opacity: 0; } }
|
11712 |
|
11713 | @keyframes spinner-fade-out {
|
11714 | 0% {
|
11715 | opacity: 1; }
|
11716 | 100% {
|
11717 | opacity: 0; } }
|
11718 |
|
11719 | @-webkit-keyframes spinner-scale-out {
|
11720 | 0% {
|
11721 | -webkit-transform: scale(1, 1);
|
11722 | transform: scale(1, 1); }
|
11723 | 100% {
|
11724 | -webkit-transform: scale(0, 0);
|
11725 | transform: scale(0, 0); } }
|
11726 |
|
11727 | @keyframes spinner-scale-out {
|
11728 | 0% {
|
11729 | -webkit-transform: scale(1, 1);
|
11730 | transform: scale(1, 1); }
|
11731 | 100% {
|
11732 | -webkit-transform: scale(0, 0);
|
11733 | transform: scale(0, 0); } }
|
11734 |
|
11735 | @-webkit-keyframes spinner-rotate {
|
11736 | 0% {
|
11737 | -webkit-transform: rotate(0deg);
|
11738 | transform: rotate(0deg); }
|
11739 | 100% {
|
11740 | -webkit-transform: rotate(360deg);
|
11741 | transform: rotate(360deg); } }
|
11742 |
|
11743 | @keyframes spinner-rotate {
|
11744 | 0% {
|
11745 | -webkit-transform: rotate(0deg);
|
11746 | transform: rotate(0deg); }
|
11747 | 100% {
|
11748 | -webkit-transform: rotate(360deg);
|
11749 | transform: rotate(360deg); } }
|
11750 |
|
11751 | @-webkit-keyframes spinner-dots {
|
11752 | 0% {
|
11753 | opacity: .9;
|
11754 | -webkit-transform: scale(1, 1);
|
11755 | transform: scale(1, 1); }
|
11756 | 50% {
|
11757 | opacity: .3;
|
11758 | -webkit-transform: scale(0.4, 0.4);
|
11759 | transform: scale(0.4, 0.4); }
|
11760 | 100% {
|
11761 | opacity: .9;
|
11762 | -webkit-transform: scale(1, 1);
|
11763 | transform: scale(1, 1); } }
|
11764 |
|
11765 | @keyframes spinner-dots {
|
11766 | 0% {
|
11767 | opacity: .9;
|
11768 | -webkit-transform: scale(1, 1);
|
11769 | transform: scale(1, 1); }
|
11770 | 50% {
|
11771 | opacity: .3;
|
11772 | -webkit-transform: scale(0.4, 0.4);
|
11773 | transform: scale(0.4, 0.4); }
|
11774 | 100% {
|
11775 | opacity: .9;
|
11776 | -webkit-transform: scale(1, 1);
|
11777 | transform: scale(1, 1); } }
|
11778 |
|
11779 | .spinner-ios-ios line,
|
11780 | .spinner-ios-ios-small line {
|
11781 | stroke: #69717d; }
|
11782 |
|
11783 | .spinner-ios-bubbles circle {
|
11784 | fill: #000; }
|
11785 |
|
11786 | .spinner-ios-circles circle {
|
11787 | fill: #69717d; }
|
11788 |
|
11789 | .spinner-ios-crescent circle {
|
11790 | stroke: #000; }
|
11791 |
|
11792 | .spinner-ios-dots circle {
|
11793 | fill: #444; }
|
11794 |
|
11795 | .spinner-ios-primary.spinner-ios line,
|
11796 | .spinner-ios-primary.spinner-ios-small line,
|
11797 | .spinner-ios-primary.spinner-crescent circle {
|
11798 | stroke: #007aff; }
|
11799 |
|
11800 | .spinner-ios-primary.spinner-bubbles circle,
|
11801 | .spinner-ios-primary.spinner-circles circle,
|
11802 | .spinner-ios-primary.spinner-dots circle {
|
11803 | fill: #007aff; }
|
11804 |
|
11805 | .spinner-ios-secondary.spinner-ios line,
|
11806 | .spinner-ios-secondary.spinner-ios-small line,
|
11807 | .spinner-ios-secondary.spinner-crescent circle {
|
11808 | stroke: #32db64; }
|
11809 |
|
11810 | .spinner-ios-secondary.spinner-bubbles circle,
|
11811 | .spinner-ios-secondary.spinner-circles circle,
|
11812 | .spinner-ios-secondary.spinner-dots circle {
|
11813 | fill: #32db64; }
|
11814 |
|
11815 | .spinner-ios-danger.spinner-ios line,
|
11816 | .spinner-ios-danger.spinner-ios-small line,
|
11817 | .spinner-ios-danger.spinner-crescent circle {
|
11818 | stroke: #d91e18; }
|
11819 |
|
11820 | .spinner-ios-danger.spinner-bubbles circle,
|
11821 | .spinner-ios-danger.spinner-circles circle,
|
11822 | .spinner-ios-danger.spinner-dots circle {
|
11823 | fill: #d91e18; }
|
11824 |
|
11825 | .spinner-ios-light.spinner-ios line,
|
11826 | .spinner-ios-light.spinner-ios-small line,
|
11827 | .spinner-ios-light.spinner-crescent circle {
|
11828 | stroke: #f4f4f4; }
|
11829 |
|
11830 | .spinner-ios-light.spinner-bubbles circle,
|
11831 | .spinner-ios-light.spinner-circles circle,
|
11832 | .spinner-ios-light.spinner-dots circle {
|
11833 | fill: #f4f4f4; }
|
11834 |
|
11835 | .spinner-ios-dark.spinner-ios line,
|
11836 | .spinner-ios-dark.spinner-ios-small line,
|
11837 | .spinner-ios-dark.spinner-crescent circle {
|
11838 | stroke: #222; }
|
11839 |
|
11840 | .spinner-ios-dark.spinner-bubbles circle,
|
11841 | .spinner-ios-dark.spinner-circles circle,
|
11842 | .spinner-ios-dark.spinner-dots circle {
|
11843 | fill: #222; }
|
11844 |
|
11845 | .spinner-md-ios line,
|
11846 | .spinner-md-ios-small line {
|
11847 | stroke: #69717d; }
|
11848 |
|
11849 | .spinner-md-bubbles circle {
|
11850 | fill: #000; }
|
11851 |
|
11852 | .spinner-md-circles circle {
|
11853 | fill: #69717d; }
|
11854 |
|
11855 | .spinner-md-crescent circle {
|
11856 | stroke: #000; }
|
11857 |
|
11858 | .spinner-md-dots circle {
|
11859 | fill: #444; }
|
11860 |
|
11861 | .spinner-md-primary.spinner-ios line,
|
11862 | .spinner-md-primary.spinner-ios-small line,
|
11863 | .spinner-md-primary.spinner-crescent circle {
|
11864 | stroke: #007aff; }
|
11865 |
|
11866 | .spinner-md-primary.spinner-bubbles circle,
|
11867 | .spinner-md-primary.spinner-circles circle,
|
11868 | .spinner-md-primary.spinner-dots circle {
|
11869 | fill: #007aff; }
|
11870 |
|
11871 | .spinner-md-secondary.spinner-ios line,
|
11872 | .spinner-md-secondary.spinner-ios-small line,
|
11873 | .spinner-md-secondary.spinner-crescent circle {
|
11874 | stroke: #32db64; }
|
11875 |
|
11876 | .spinner-md-secondary.spinner-bubbles circle,
|
11877 | .spinner-md-secondary.spinner-circles circle,
|
11878 | .spinner-md-secondary.spinner-dots circle {
|
11879 | fill: #32db64; }
|
11880 |
|
11881 | .spinner-md-danger.spinner-ios line,
|
11882 | .spinner-md-danger.spinner-ios-small line,
|
11883 | .spinner-md-danger.spinner-crescent circle {
|
11884 | stroke: #d91e18; }
|
11885 |
|
11886 | .spinner-md-danger.spinner-bubbles circle,
|
11887 | .spinner-md-danger.spinner-circles circle,
|
11888 | .spinner-md-danger.spinner-dots circle {
|
11889 | fill: #d91e18; }
|
11890 |
|
11891 | .spinner-md-light.spinner-ios line,
|
11892 | .spinner-md-light.spinner-ios-small line,
|
11893 | .spinner-md-light.spinner-crescent circle {
|
11894 | stroke: #f4f4f4; }
|
11895 |
|
11896 | .spinner-md-light.spinner-bubbles circle,
|
11897 | .spinner-md-light.spinner-circles circle,
|
11898 | .spinner-md-light.spinner-dots circle {
|
11899 | fill: #f4f4f4; }
|
11900 |
|
11901 | .spinner-md-dark.spinner-ios line,
|
11902 | .spinner-md-dark.spinner-ios-small line,
|
11903 | .spinner-md-dark.spinner-crescent circle {
|
11904 | stroke: #222; }
|
11905 |
|
11906 | .spinner-md-dark.spinner-bubbles circle,
|
11907 | .spinner-md-dark.spinner-circles circle,
|
11908 | .spinner-md-dark.spinner-dots circle {
|
11909 | fill: #222; }
|
11910 |
|
11911 | .spinner-wp-ios line,
|
11912 | .spinner-wp-ios-small line {
|
11913 | stroke: #69717d; }
|
11914 |
|
11915 | .spinner-wp-bubbles circle {
|
11916 | fill: #000; }
|
11917 |
|
11918 | .spinner-wp-circles circle {
|
11919 | fill: #69717d; }
|
11920 |
|
11921 | .spinner-wp-crescent circle {
|
11922 | stroke: #000; }
|
11923 |
|
11924 | .spinner-wp-dots circle {
|
11925 | fill: #444; }
|
11926 |
|
11927 | .spinner-wp-primary.spinner-ios line,
|
11928 | .spinner-wp-primary.spinner-ios-small line,
|
11929 | .spinner-wp-primary.spinner-crescent circle {
|
11930 | stroke: #007aff; }
|
11931 |
|
11932 | .spinner-wp-primary.spinner-bubbles circle,
|
11933 | .spinner-wp-primary.spinner-circles circle,
|
11934 | .spinner-wp-primary.spinner-dots circle {
|
11935 | fill: #007aff; }
|
11936 |
|
11937 | .spinner-wp-secondary.spinner-ios line,
|
11938 | .spinner-wp-secondary.spinner-ios-small line,
|
11939 | .spinner-wp-secondary.spinner-crescent circle {
|
11940 | stroke: #32db64; }
|
11941 |
|
11942 | .spinner-wp-secondary.spinner-bubbles circle,
|
11943 | .spinner-wp-secondary.spinner-circles circle,
|
11944 | .spinner-wp-secondary.spinner-dots circle {
|
11945 | fill: #32db64; }
|
11946 |
|
11947 | .spinner-wp-danger.spinner-ios line,
|
11948 | .spinner-wp-danger.spinner-ios-small line,
|
11949 | .spinner-wp-danger.spinner-crescent circle {
|
11950 | stroke: #d91e18; }
|
11951 |
|
11952 | .spinner-wp-danger.spinner-bubbles circle,
|
11953 | .spinner-wp-danger.spinner-circles circle,
|
11954 | .spinner-wp-danger.spinner-dots circle {
|
11955 | fill: #d91e18; }
|
11956 |
|
11957 | .spinner-wp-light.spinner-ios line,
|
11958 | .spinner-wp-light.spinner-ios-small line,
|
11959 | .spinner-wp-light.spinner-crescent circle {
|
11960 | stroke: #f4f4f4; }
|
11961 |
|
11962 | .spinner-wp-light.spinner-bubbles circle,
|
11963 | .spinner-wp-light.spinner-circles circle,
|
11964 | .spinner-wp-light.spinner-dots circle {
|
11965 | fill: #f4f4f4; }
|
11966 |
|
11967 | .spinner-wp-dark.spinner-ios line,
|
11968 | .spinner-wp-dark.spinner-ios-small line,
|
11969 | .spinner-wp-dark.spinner-crescent circle {
|
11970 | stroke: #222; }
|
11971 |
|
11972 | .spinner-wp-dark.spinner-bubbles circle,
|
11973 | .spinner-wp-dark.spinner-circles circle,
|
11974 | .spinner-wp-dark.spinner-dots circle {
|
11975 | fill: #222; }
|
11976 |
|
11977 | .tabbar {
|
11978 | left: 0;
|
11979 | bottom: 0;
|
11980 | position: absolute;
|
11981 | z-index: 10;
|
11982 | display: -webkit-flex;
|
11983 | display: -ms-flexbox;
|
11984 | display: flex;
|
11985 | width: 100%;
|
11986 | opacity: 0; }
|
11987 |
|
11988 | .tabbar-hidden .tabbar {
|
11989 | display: none; }
|
11990 |
|
11991 | .tabbar.show-tabbar {
|
11992 | opacity: 1; }
|
11993 |
|
11994 | [tabsPlacement=top] > .tabbar {
|
11995 | top: 0;
|
11996 | bottom: auto; }
|
11997 |
|
11998 | .tab-button {
|
11999 | margin: 0;
|
12000 | text-align: center;
|
12001 | border-radius: 0;
|
12002 | position: relative;
|
12003 | z-index: 0;
|
12004 | display: -webkit-flex;
|
12005 | display: -ms-flexbox;
|
12006 | display: flex;
|
12007 | overflow: hidden;
|
12008 | -webkit-flex: 1;
|
12009 | -ms-flex: 1;
|
12010 | flex: 1;
|
12011 | -webkit-flex-direction: column;
|
12012 | -ms-flex-direction: column;
|
12013 | flex-direction: column;
|
12014 | -webkit-align-items: center;
|
12015 | -ms-flex-align: center;
|
12016 | align-items: center;
|
12017 | -webkit-align-self: center;
|
12018 | -ms-flex-item-align: center;
|
12019 | align-self: center;
|
12020 | -webkit-justify-content: center;
|
12021 | -ms-flex-pack: center;
|
12022 | justify-content: center;
|
12023 | border: 0;
|
12024 | text-decoration: none;
|
12025 | background: none;
|
12026 | cursor: pointer;
|
12027 | -webkit-user-select: none;
|
12028 | -moz-user-select: none;
|
12029 | -ms-user-select: none;
|
12030 | user-select: none; }
|
12031 |
|
12032 | .tab-disabled {
|
12033 | pointer-events: none; }
|
12034 |
|
12035 | .tab-disabled ion-badge,
|
12036 | .tab-disabled ion-icon,
|
12037 | .tab-disabled span {
|
12038 | opacity: .4; }
|
12039 |
|
12040 | .tab-button-text {
|
12041 | margin-top: 3px;
|
12042 | margin-bottom: 2px; }
|
12043 |
|
12044 | .tab-button-text,
|
12045 | .tab-button-icon {
|
12046 | display: none;
|
12047 | overflow: hidden;
|
12048 | -webkit-align-self: center;
|
12049 | -ms-flex-item-align: center;
|
12050 | -ms-grid-row-align: center;
|
12051 | align-self: center;
|
12052 | min-width: 26px;
|
12053 | max-width: 100%;
|
12054 | text-overflow: ellipsis;
|
12055 | white-space: nowrap; }
|
12056 |
|
12057 | .has-icon .tab-button-icon,
|
12058 | .has-title .tab-button-text {
|
12059 | display: block; }
|
12060 |
|
12061 | .has-title-only .tab-button-text {
|
12062 | white-space: normal; }
|
12063 |
|
12064 | [tabsLayout=icon-bottom] .tab-button .tab-button-icon {
|
12065 | -webkit-order: 10;
|
12066 | -ms-flex-order: 10;
|
12067 | order: 10; }
|
12068 |
|
12069 | [tabsLayout=icon-left] .tab-button,
|
12070 | [tabsLayout=icon-right] .tab-button,
|
12071 | [tabsLayout=icon-start] .tab-button,
|
12072 | [tabsLayout=icon-end] .tab-button {
|
12073 | -webkit-flex-direction: row;
|
12074 | -ms-flex-direction: row;
|
12075 | flex-direction: row; }
|
12076 |
|
12077 | [tabsLayout=icon-left] .tab-button .tab-button-icon,
|
12078 | [tabsLayout=icon-start] .tab-button .tab-button-icon {
|
12079 | padding-right: 8px;
|
12080 | text-align: right;
|
12081 | text-align: end; }
|
12082 |
|
12083 | [tabsLayout=icon-right] .tab-button .tab-button-icon,
|
12084 | [tabsLayout=icon-end] .tab-button .tab-button-icon {
|
12085 | padding-left: 8px;
|
12086 | text-align: left;
|
12087 | text-align: start;
|
12088 | -webkit-order: 10;
|
12089 | -ms-flex-order: 10;
|
12090 | order: 10; }
|
12091 |
|
12092 | .tab-hidden,
|
12093 | .tab-highlight,
|
12094 | [tabsLayout=icon-hide] .tab-button-icon,
|
12095 | [tabsLayout=title-hide] .tab-button-text {
|
12096 | display: none; }
|
12097 |
|
12098 | .tab-badge {
|
12099 | right: 4%;
|
12100 | top: 6%;
|
12101 | right: calc(50% - 50px);
|
12102 | padding: 1px 6px;
|
12103 | position: absolute;
|
12104 | height: auto;
|
12105 | font-size: 12px;
|
12106 | line-height: 16px; }
|
12107 |
|
12108 | .has-icon .tab-badge {
|
12109 | right: calc(50% - 30px); }
|
12110 |
|
12111 | [tabsLayout=icon-bottom] .tab-badge,
|
12112 | [tabsLayout=icon-left] .tab-badge,
|
12113 | [tabsLayout=icon-right] .tab-badge,
|
12114 | [tabsLayout=icon-start] .tab-badge,
|
12115 | [tabsLayout=icon-end] .tab-badge {
|
12116 | right: calc(50% - 50px); }
|
12117 |
|
12118 | .tabs-ios .tabbar {
|
12119 | -webkit-justify-content: center;
|
12120 | -ms-flex-pack: center;
|
12121 | justify-content: center;
|
12122 | border-top: 0.55px solid rgba(0, 0, 0, 0.3);
|
12123 | background: #151515; }
|
12124 |
|
12125 | .tabs-ios[tabsPlacement=top] .tabbar {
|
12126 | border-top: 0;
|
12127 | border-bottom: 0.55px solid rgba(0, 0, 0, 0.3); }
|
12128 |
|
12129 | .tabs-ios .tab-button {
|
12130 | max-width: 240px;
|
12131 | min-height: 49px;
|
12132 | font-size: 10px;
|
12133 | font-weight: 500;
|
12134 | color: #8c8c8c;
|
12135 | padding: 0 2px; }
|
12136 |
|
12137 | .tabs-ios .tab-button:hover:not(.disable-hover),
|
12138 | .tabs-ios .tab-button[aria-selected=true] {
|
12139 | color: #007aff; }
|
12140 |
|
12141 | .tabs-ios .tab-button[aria-selected=true] .tab-button-icon {
|
12142 | color: #007aff; }
|
12143 |
|
12144 | .tabs-ios .tab-button-text {
|
12145 | margin-top: 0;
|
12146 | margin-bottom: 1px;
|
12147 | min-height: 11px; }
|
12148 |
|
12149 | .tabs-ios .has-title-only .tab-button-text {
|
12150 | font-size: 12px; }
|
12151 |
|
12152 | .tabs-ios .tab-button-icon {
|
12153 | margin-top: 4px;
|
12154 | margin-bottom: 1px;
|
12155 | min-width: 35px;
|
12156 | height: 30px;
|
12157 | font-size: 30px;
|
12158 | color: #8c8c8c; }
|
12159 |
|
12160 | .tabs-ios .tab-button-icon::before {
|
12161 | vertical-align: top; }
|
12162 |
|
12163 | .tabs-ios[tabsLayout=icon-right] .tab-button .tab-button-text,
|
12164 | .tabs-ios[tabsLayout=icon-left] .tab-button .tab-button-text,
|
12165 | .tabs-ios[tabsLayout=icon-end] .tab-button .tab-button-text,
|
12166 | .tabs-ios[tabsLayout=icon-start] .tab-button .tab-button-text {
|
12167 | font-size: 1.4rem;
|
12168 | line-height: 1.1; }
|
12169 |
|
12170 | .tabs-ios[tabsLayout=icon-right] .tab-button ion-icon,
|
12171 | .tabs-ios[tabsLayout=icon-left] .tab-button ion-icon,
|
12172 | .tabs-ios[tabsLayout=icon-end] .tab-button ion-icon,
|
12173 | .tabs-ios[tabsLayout=icon-start] .tab-button ion-icon {
|
12174 | min-width: 24px;
|
12175 | height: 26px;
|
12176 | font-size: 24px; }
|
12177 |
|
12178 | .tabs-ios[tabsLayout=icon-hide] .tab-button,
|
12179 | .tabs-ios .tab-button.has-title-only {
|
12180 | min-height: 41px; }
|
12181 |
|
12182 | .tabs-ios[tabsLayout=icon-hide] .tab-button .tab-button-text,
|
12183 | .tabs-ios .tab-button.has-title-only .tab-button-text {
|
12184 | margin: 2px 0;
|
12185 | font-size: 1.4rem;
|
12186 | line-height: 1.1; }
|
12187 |
|
12188 | .tabs-ios[tabsLayout=title-hide] .tab-button,
|
12189 | .tabs-ios .tab-button.icon-only {
|
12190 | min-height: 41px; }
|
12191 |
|
12192 | .tabs-ios-primary .tabbar {
|
12193 | border-color: #0062cc;
|
12194 | background-color: #007aff; }
|
12195 |
|
12196 | .tabs-ios-primary .tab-button,
|
12197 | .tabs-ios-primary .tab-button-icon,
|
12198 | .tabs-ios-primary .tab-button:hover:not(.disable-hover),
|
12199 | .tabs-ios-primary .tab-button:hover:not(.disable-hover) .tab-button-icon {
|
12200 | color: rgba(255, 255, 255, 0.7); }
|
12201 |
|
12202 | .tabs-ios-primary .tab-button[aria-selected=true],
|
12203 | .tabs-ios-primary .tab-button[aria-selected=true] .tab-button-icon {
|
12204 | color: #fff; }
|
12205 |
|
12206 | .tabs-ios-secondary .tabbar {
|
12207 | border-color: #21b94e;
|
12208 | background-color: #32db64; }
|
12209 |
|
12210 | .tabs-ios-secondary .tab-button,
|
12211 | .tabs-ios-secondary .tab-button-icon,
|
12212 | .tabs-ios-secondary .tab-button:hover:not(.disable-hover),
|
12213 | .tabs-ios-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon {
|
12214 | color: rgba(255, 255, 255, 0.7); }
|
12215 |
|
12216 | .tabs-ios-secondary .tab-button[aria-selected=true],
|
12217 | .tabs-ios-secondary .tab-button[aria-selected=true] .tab-button-icon {
|
12218 | color: #fff; }
|
12219 |
|
12220 | .tabs-ios-danger .tabbar {
|
12221 | border-color: #ab1813;
|
12222 | background-color: #d91e18; }
|
12223 |
|
12224 | .tabs-ios-danger .tab-button,
|
12225 | .tabs-ios-danger .tab-button-icon,
|
12226 | .tabs-ios-danger .tab-button:hover:not(.disable-hover),
|
12227 | .tabs-ios-danger .tab-button:hover:not(.disable-hover) .tab-button-icon {
|
12228 | color: rgba(255, 255, 255, 0.7); }
|
12229 |
|
12230 | .tabs-ios-danger .tab-button[aria-selected=true],
|
12231 | .tabs-ios-danger .tab-button[aria-selected=true] .tab-button-icon {
|
12232 | color: #fff; }
|
12233 |
|
12234 | .tabs-ios-light .tabbar {
|
12235 | border-color: #dbdbdb;
|
12236 | background-color: #f4f4f4; }
|
12237 |
|
12238 | .tabs-ios-light .tab-button,
|
12239 | .tabs-ios-light .tab-button-icon,
|
12240 | .tabs-ios-light .tab-button:hover:not(.disable-hover),
|
12241 | .tabs-ios-light .tab-button:hover:not(.disable-hover) .tab-button-icon {
|
12242 | color: rgba(0, 0, 0, 0.7); }
|
12243 |
|
12244 | .tabs-ios-light .tab-button[aria-selected=true],
|
12245 | .tabs-ios-light .tab-button[aria-selected=true] .tab-button-icon {
|
12246 | color: #000; }
|
12247 |
|
12248 | .tabs-ios-dark .tabbar {
|
12249 | border-color: #090909;
|
12250 | background-color: #222; }
|
12251 |
|
12252 | .tabs-ios-dark .tab-button,
|
12253 | .tabs-ios-dark .tab-button-icon,
|
12254 | .tabs-ios-dark .tab-button:hover:not(.disable-hover),
|
12255 | .tabs-ios-dark .tab-button:hover:not(.disable-hover) .tab-button-icon {
|
12256 | color: rgba(255, 255, 255, 0.7); }
|
12257 |
|
12258 | .tabs-ios-dark .tab-button[aria-selected=true],
|
12259 | .tabs-ios-dark .tab-button[aria-selected=true] .tab-button-icon {
|
12260 | color: #fff; }
|
12261 |
|
12262 | .tabs-md .tabbar {
|
12263 | background: #151515; }
|
12264 |
|
12265 | .tabs-md .tab-button {
|
12266 | min-height: 5.6rem;
|
12267 | font-weight: normal;
|
12268 | color: rgba(60, 60, 60, 0.7);
|
12269 | padding: 0; }
|
12270 |
|
12271 | .tabs-md .tab-button[aria-selected=true] {
|
12272 | color: #007aff;
|
12273 | padding: 0; }
|
12274 |
|
12275 | .tabs-md .tab-button-text {
|
12276 | font-size: 1.2rem;
|
12277 | text-transform: none;
|
12278 | transition: -webkit-transform 0.3s ease-in-out;
|
12279 | transition: transform 0.3s ease-in-out;
|
12280 | transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
|
12281 | margin: 0;
|
12282 | -webkit-transform-origin: 50% 80%;
|
12283 | transform-origin: 50% 80%; }
|
12284 |
|
12285 | .tabs-md .tab-button[aria-selected=true] .tab-button-text {
|
12286 | -webkit-transform: scale3d(1.16667, 1.16667, 1);
|
12287 | transform: scale3d(1.16667, 1.16667, 1);
|
12288 | transition: -webkit-transform 0.3s ease-in-out;
|
12289 | transition: transform 0.3s ease-in-out;
|
12290 | transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
|
12291 |
|
12292 | .tabs-md[tabsLayout=icon-top] .has-icon .tab-button-text {
|
12293 | margin-top: 4px;
|
12294 | margin-bottom: 0; }
|
12295 |
|
12296 | .tabs-md[tabsLayout=icon-bottom] .tab-button .tab-button-text {
|
12297 | margin-top: 0; }
|
12298 |
|
12299 | .tabs-md .tab-button-icon {
|
12300 | margin-top: 1px;
|
12301 | min-width: 2.4rem;
|
12302 | font-size: 2.4rem;
|
12303 | color: rgba(60, 60, 60, 0.7);
|
12304 | transition: -webkit-transform 0.3s ease-in-out;
|
12305 | transition: transform 0.3s ease-in-out;
|
12306 | transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
|
12307 | -webkit-transform-origin: 50% 150%;
|
12308 | transform-origin: 50% 150%; }
|
12309 |
|
12310 | .tabs-md .tab-button[aria-selected=true] .tab-button-icon {
|
12311 | color: #007aff;
|
12312 | -webkit-transform: translate3d(0, -2px, 0);
|
12313 | transform: translate3d(0, -2px, 0); }
|
12314 |
|
12315 | .tabs-md[tabsLayout=icon-right] .tab-button[aria-selected=true] .tab-button-icon,
|
12316 | .tabs-md[tabsLayout=icon-end] .tab-button[aria-selected=true] .tab-button-icon {
|
12317 | -webkit-transform: translate3d(2px, 0, 0);
|
12318 | transform: translate3d(2px, 0, 0); }
|
12319 |
|
12320 | .tabs-md[tabsLayout=icon-bottom] .tab-button[aria-selected=true] .tab-button-icon {
|
12321 | -webkit-transform: translate3d(0, 2px, 0);
|
12322 | transform: translate3d(0, 2px, 0); }
|
12323 |
|
12324 | .tabs-md[tabsLayout=icon-left] .tab-button[aria-selected=true] .tab-button-icon,
|
12325 | .tabs-md[tabsLayout=icon-start] .tab-button[aria-selected=true] .tab-button-icon {
|
12326 | -webkit-transform: translate3d(-2px, 0, 0);
|
12327 | transform: translate3d(-2px, 0, 0); }
|
12328 |
|
12329 | .tabs-md[tabsLayout=icon-hide] .tab-button,
|
12330 | .tabs-md[tabsLayout=title-hide] .tab-button,
|
12331 | .tabs-md .tab-button.icon-only,
|
12332 | .tabs-md .tab-button.has-title-only {
|
12333 | padding: 0 10px; }
|
12334 |
|
12335 | .tabs-md[tabsHighlight=true] .tab-highlight {
|
12336 | left: 0;
|
12337 | bottom: 0;
|
12338 | -webkit-transform-origin: 0 0;
|
12339 | transform-origin: 0 0;
|
12340 | position: absolute;
|
12341 | display: block;
|
12342 | width: 1px;
|
12343 | height: 2px;
|
12344 | background: #007aff;
|
12345 | -webkit-transform: translateZ(0);
|
12346 | transform: translateZ(0); }
|
12347 |
|
12348 | .tabs-md[tabsHighlight=true] .tab-highlight.animate {
|
12349 | transition-duration: 300ms; }
|
12350 |
|
12351 | .tabs-md[tabsHighlight=true][tabsPlacement=bottom] > .tabbar > .tab-highlight {
|
12352 | top: 0; }
|
12353 |
|
12354 | .tabs-md-primary .tabbar {
|
12355 | background-color: #007aff; }
|
12356 |
|
12357 | .tabs-md-primary .tab-button,
|
12358 | .tabs-md-primary .tab-button-icon {
|
12359 | color: rgba(255, 255, 255, 0.7); }
|
12360 |
|
12361 | .tabs-md-primary .tab-button:hover:not(.disable-hover),
|
12362 | .tabs-md-primary .tab-button[aria-selected=true],
|
12363 | .tabs-md-primary .tab-button[aria-selected=true] .tab-button-icon {
|
12364 | color: #fff; }
|
12365 |
|
12366 | .tabs-md-primary[tabsHighlight=true] .tab-highlight {
|
12367 | background: #fff; }
|
12368 |
|
12369 | .tabs-md-secondary .tabbar {
|
12370 | background-color: #32db64; }
|
12371 |
|
12372 | .tabs-md-secondary .tab-button,
|
12373 | .tabs-md-secondary .tab-button-icon {
|
12374 | color: rgba(255, 255, 255, 0.7); }
|
12375 |
|
12376 | .tabs-md-secondary .tab-button:hover:not(.disable-hover),
|
12377 | .tabs-md-secondary .tab-button[aria-selected=true],
|
12378 | .tabs-md-secondary .tab-button[aria-selected=true] .tab-button-icon {
|
12379 | color: #fff; }
|
12380 |
|
12381 | .tabs-md-secondary[tabsHighlight=true] .tab-highlight {
|
12382 | background: #fff; }
|
12383 |
|
12384 | .tabs-md-danger .tabbar {
|
12385 | background-color: #d91e18; }
|
12386 |
|
12387 | .tabs-md-danger .tab-button,
|
12388 | .tabs-md-danger .tab-button-icon {
|
12389 | color: rgba(255, 255, 255, 0.7); }
|
12390 |
|
12391 | .tabs-md-danger .tab-button:hover:not(.disable-hover),
|
12392 | .tabs-md-danger .tab-button[aria-selected=true],
|
12393 | .tabs-md-danger .tab-button[aria-selected=true] .tab-button-icon {
|
12394 | color: #fff; }
|
12395 |
|
12396 | .tabs-md-danger[tabsHighlight=true] .tab-highlight {
|
12397 | background: #fff; }
|
12398 |
|
12399 | .tabs-md-light .tabbar {
|
12400 | background-color: #f4f4f4; }
|
12401 |
|
12402 | .tabs-md-light .tab-button,
|
12403 | .tabs-md-light .tab-button-icon {
|
12404 | color: rgba(0, 0, 0, 0.7); }
|
12405 |
|
12406 | .tabs-md-light .tab-button:hover:not(.disable-hover),
|
12407 | .tabs-md-light .tab-button[aria-selected=true],
|
12408 | .tabs-md-light .tab-button[aria-selected=true] .tab-button-icon {
|
12409 | color: #000; }
|
12410 |
|
12411 | .tabs-md-light[tabsHighlight=true] .tab-highlight {
|
12412 | background: #000; }
|
12413 |
|
12414 | .tabs-md-dark .tabbar {
|
12415 | background-color: #222; }
|
12416 |
|
12417 | .tabs-md-dark .tab-button,
|
12418 | .tabs-md-dark .tab-button-icon {
|
12419 | color: rgba(255, 255, 255, 0.7); }
|
12420 |
|
12421 | .tabs-md-dark .tab-button:hover:not(.disable-hover),
|
12422 | .tabs-md-dark .tab-button[aria-selected=true],
|
12423 | .tabs-md-dark .tab-button[aria-selected=true] .tab-button-icon {
|
12424 | color: #fff; }
|
12425 |
|
12426 | .tabs-md-dark[tabsHighlight=true] .tab-highlight {
|
12427 | background: #fff; }
|
12428 |
|
12429 | .tabs-wp .tabbar {
|
12430 | background: #151515; }
|
12431 |
|
12432 | .tabs-wp .tab-button {
|
12433 | border-radius: 0;
|
12434 | min-height: 4.8rem;
|
12435 | border-bottom: 2px solid transparent;
|
12436 | font-size: 1.2rem;
|
12437 | font-weight: normal;
|
12438 | color: rgba(140, 140, 140, 0.7);
|
12439 | box-shadow: none;
|
12440 | padding: 12px 10px 5px; }
|
12441 |
|
12442 | .tabs-wp .tab-button[aria-selected=true] {
|
12443 | border-bottom-color: #007aff;
|
12444 | color: #007aff; }
|
12445 |
|
12446 | .tabs-wp .tab-button.activated {
|
12447 | background: rgba(0, 0, 0, 0.1); }
|
12448 |
|
12449 | .tabs-wp[tabsPlacement=bottom] .tab-button {
|
12450 | border-top: 2px solid transparent;
|
12451 | border-bottom-width: 0; }
|
12452 |
|
12453 | .tabs-wp[tabsPlacement=bottom] .tab-button[aria-selected=true] {
|
12454 | border-top-color: #007aff; }
|
12455 |
|
12456 | .tabs-wp .tab-button-text {
|
12457 | margin-top: 5px;
|
12458 | margin-bottom: 5px; }
|
12459 |
|
12460 | .tabs-wp .tab-button-icon {
|
12461 | min-width: 2.4rem;
|
12462 | font-size: 2.4rem;
|
12463 | color: rgba(140, 140, 140, 0.7); }
|
12464 |
|
12465 | .tabs-wp .tab-button[aria-selected=true] .tab-button-icon {
|
12466 | color: #007aff; }
|
12467 |
|
12468 | .tabs-wp[tabsLayout=icon-bottom] .tab-button {
|
12469 | padding-top: 8px;
|
12470 | padding-bottom: 8px; }
|
12471 |
|
12472 | .tabs-wp[tabsLayout=icon-right] .tab-button,
|
12473 | .tabs-wp[tabsLayout=icon-left] .tab-button,
|
12474 | .tabs-wp[tabsLayout=icon-end] .tab-button,
|
12475 | .tabs-wp[tabsLayout=icon-start] .tab-button {
|
12476 | padding-bottom: 10px; }
|
12477 |
|
12478 | .tabs-wp[tabsLayout=icon-right] .tab-button ion-icon,
|
12479 | .tabs-wp[tabsLayout=icon-left] .tab-button ion-icon,
|
12480 | .tabs-wp[tabsLayout=icon-end] .tab-button ion-icon,
|
12481 | .tabs-wp[tabsLayout=icon-start] .tab-button ion-icon {
|
12482 | min-width: 24px; }
|
12483 |
|
12484 | .tabs-wp[tabsLayout=icon-hide] .tab-button,
|
12485 | .tabs-wp[tabsLayout=title-hide] .tab-button,
|
12486 | .tabs-wp .tab-button.icon-only,
|
12487 | .tabs-wp .tab-button.has-title-only {
|
12488 | padding: 6px 10px; }
|
12489 |
|
12490 | .tabs-wp-primary .tabbar {
|
12491 | background-color: #007aff; }
|
12492 |
|
12493 | .tabs-wp-primary .tab-button,
|
12494 | .tabs-wp-primary .tab-button-icon {
|
12495 | color: rgba(255, 255, 255, 0.7); }
|
12496 |
|
12497 | .tabs-wp-primary .tab-button:hover:not(.disable-hover),
|
12498 | .tabs-wp-primary .tab-button:hover:not(.disable-hover) .tab-button-icon,
|
12499 | .tabs-wp-primary .tab-button[aria-selected=true],
|
12500 | .tabs-wp-primary .tab-button[aria-selected=true] .tab-button-icon {
|
12501 | border-color: #fff;
|
12502 | color: #fff; }
|
12503 |
|
12504 | .tabs-wp-secondary .tabbar {
|
12505 | background-color: #32db64; }
|
12506 |
|
12507 | .tabs-wp-secondary .tab-button,
|
12508 | .tabs-wp-secondary .tab-button-icon {
|
12509 | color: rgba(255, 255, 255, 0.7); }
|
12510 |
|
12511 | .tabs-wp-secondary .tab-button:hover:not(.disable-hover),
|
12512 | .tabs-wp-secondary .tab-button:hover:not(.disable-hover) .tab-button-icon,
|
12513 | .tabs-wp-secondary .tab-button[aria-selected=true],
|
12514 | .tabs-wp-secondary .tab-button[aria-selected=true] .tab-button-icon {
|
12515 | border-color: #fff;
|
12516 | color: #fff; }
|
12517 |
|
12518 | .tabs-wp-danger .tabbar {
|
12519 | background-color: #d91e18; }
|
12520 |
|
12521 | .tabs-wp-danger .tab-button,
|
12522 | .tabs-wp-danger .tab-button-icon {
|
12523 | color: rgba(255, 255, 255, 0.7); }
|
12524 |
|
12525 | .tabs-wp-danger .tab-button:hover:not(.disable-hover),
|
12526 | .tabs-wp-danger .tab-button:hover:not(.disable-hover) .tab-button-icon,
|
12527 | .tabs-wp-danger .tab-button[aria-selected=true],
|
12528 | .tabs-wp-danger .tab-button[aria-selected=true] .tab-button-icon {
|
12529 | border-color: #fff;
|
12530 | color: #fff; }
|
12531 |
|
12532 | .tabs-wp-light .tabbar {
|
12533 | background-color: #f4f4f4; }
|
12534 |
|
12535 | .tabs-wp-light .tab-button,
|
12536 | .tabs-wp-light .tab-button-icon {
|
12537 | color: rgba(0, 0, 0, 0.7); }
|
12538 |
|
12539 | .tabs-wp-light .tab-button:hover:not(.disable-hover),
|
12540 | .tabs-wp-light .tab-button:hover:not(.disable-hover) .tab-button-icon,
|
12541 | .tabs-wp-light .tab-button[aria-selected=true],
|
12542 | .tabs-wp-light .tab-button[aria-selected=true] .tab-button-icon {
|
12543 | border-color: #000;
|
12544 | color: #000; }
|
12545 |
|
12546 | .tabs-wp-dark .tabbar {
|
12547 | background-color: #222; }
|
12548 |
|
12549 | .tabs-wp-dark .tab-button,
|
12550 | .tabs-wp-dark .tab-button-icon {
|
12551 | color: rgba(255, 255, 255, 0.7); }
|
12552 |
|
12553 | .tabs-wp-dark .tab-button:hover:not(.disable-hover),
|
12554 | .tabs-wp-dark .tab-button:hover:not(.disable-hover) .tab-button-icon,
|
12555 | .tabs-wp-dark .tab-button[aria-selected=true],
|
12556 | .tabs-wp-dark .tab-button[aria-selected=true] .tab-button-icon {
|
12557 | border-color: #fff;
|
12558 | color: #fff; }
|
12559 |
|
12560 | ion-toast {
|
12561 | left: 0;
|
12562 | top: 0;
|
12563 | position: absolute;
|
12564 | z-index: 1000;
|
12565 | display: block;
|
12566 | width: 100%;
|
12567 | height: 100%;
|
12568 | pointer-events: none;
|
12569 | contain: strict; }
|
12570 |
|
12571 | .toast-container {
|
12572 | display: -webkit-flex;
|
12573 | display: -ms-flexbox;
|
12574 | display: flex;
|
12575 | -webkit-align-items: center;
|
12576 | -ms-flex-align: center;
|
12577 | align-items: center;
|
12578 | pointer-events: auto;
|
12579 | contain: content; }
|
12580 |
|
12581 | .toast-button {
|
12582 | padding: 19px 16px 17px;
|
12583 | font-size: 1.5rem; }
|
12584 |
|
12585 | .toast-message {
|
12586 | -webkit-flex: 1;
|
12587 | -ms-flex: 1;
|
12588 | flex: 1; }
|
12589 |
|
12590 | .toast-ios .toast-wrapper {
|
12591 | left: 10px;
|
12592 | right: 10px;
|
12593 | margin: auto;
|
12594 | border-radius: 0.65rem;
|
12595 | position: absolute;
|
12596 | z-index: 10;
|
12597 | display: block;
|
12598 | max-width: 700px;
|
12599 | background: rgba(0, 0, 0, 0.9); }
|
12600 |
|
12601 | .toast-ios .toast-wrapper.toast-top {
|
12602 | -webkit-transform: translate3d(0, -100%, 0);
|
12603 | transform: translate3d(0, -100%, 0);
|
12604 | margin: constant(safe-area-inset-top) auto auto;
|
12605 | margin: env(safe-area-inset-top) auto auto;
|
12606 | top: 0; }
|
12607 |
|
12608 | .toast-ios .toast-wrapper.toast-bottom {
|
12609 | -webkit-transform: translate3d(0, 100%, 0);
|
12610 | transform: translate3d(0, 100%, 0);
|
12611 | margin: auto auto constant(safe-area-inset-bottom);
|
12612 | margin: auto auto env(safe-area-inset-bottom);
|
12613 | bottom: 0; }
|
12614 |
|
12615 | .toast-ios .toast-wrapper.toast-middle {
|
12616 | opacity: .01; }
|
12617 |
|
12618 | .toast-ios .toast-message {
|
12619 | font-size: 1.4rem;
|
12620 | color: #fff;
|
12621 | padding: 1.5rem; }
|
12622 |
|
12623 | .toast-md .toast-wrapper {
|
12624 | left: 0;
|
12625 | right: 0;
|
12626 | margin: auto;
|
12627 | position: absolute;
|
12628 | z-index: 10;
|
12629 | display: block;
|
12630 | width: 100%;
|
12631 | max-width: 700px;
|
12632 | background: #333; }
|
12633 |
|
12634 | .toast-md .toast-wrapper.toast-top {
|
12635 | -webkit-transform: translate3d(0, -100%, 0);
|
12636 | transform: translate3d(0, -100%, 0);
|
12637 | top: 0; }
|
12638 |
|
12639 | .toast-md .toast-wrapper.toast-bottom {
|
12640 | -webkit-transform: translate3d(0, 100%, 0);
|
12641 | transform: translate3d(0, 100%, 0);
|
12642 | bottom: 0; }
|
12643 |
|
12644 | .toast-md .toast-wrapper.toast-middle {
|
12645 | opacity: .01; }
|
12646 |
|
12647 | .toast-md .toast-message {
|
12648 | font-size: 1.5rem;
|
12649 | color: #fff;
|
12650 | padding: 19px 16px 17px; }
|
12651 |
|
12652 | .toast-wp .toast-wrapper {
|
12653 | left: 0;
|
12654 | right: 0;
|
12655 | margin: auto;
|
12656 | border-radius: 0;
|
12657 | position: absolute;
|
12658 | z-index: 10;
|
12659 | display: block;
|
12660 | max-width: 700px;
|
12661 | background: black; }
|
12662 |
|
12663 | .toast-wp .toast-wrapper.toast-top {
|
12664 | top: 0;
|
12665 | opacity: .01; }
|
12666 |
|
12667 | .toast-wp .toast-wrapper.toast-bottom {
|
12668 | bottom: 0;
|
12669 | opacity: .01; }
|
12670 |
|
12671 | .toast-wp .toast-wrapper.toast-middle {
|
12672 | opacity: .01; }
|
12673 |
|
12674 | .toast-message {
|
12675 | font-size: 1.4rem;
|
12676 | color: #fff;
|
12677 | padding: 1.5rem; }
|
12678 |
|
12679 | .toast-button {
|
12680 | color: #fff; }
|
12681 |
|
12682 | .toggle-ios {
|
12683 | position: relative;
|
12684 | display: block;
|
12685 | width: 51px;
|
12686 | height: 32px;
|
12687 | box-sizing: content-box;
|
12688 | contain: strict; }
|
12689 |
|
12690 | .toggle-ios .toggle-icon {
|
12691 | border-radius: 16px;
|
12692 | position: relative;
|
12693 | display: block;
|
12694 | width: 100%;
|
12695 | height: 100%;
|
12696 | background-color: #1c1c1c;
|
12697 | transition: background-color 300ms;
|
12698 | pointer-events: none; }
|
12699 |
|
12700 | .toggle-ios .toggle-icon::before {
|
12701 | left: 2px;
|
12702 | right: 2px;
|
12703 | top: 2px;
|
12704 | bottom: 2px;
|
12705 | border-radius: 16px;
|
12706 | position: absolute;
|
12707 | background-color: #242424;
|
12708 | content: "";
|
12709 | -webkit-transform: scale3d(1, 1, 1);
|
12710 | transform: scale3d(1, 1, 1);
|
12711 | transition: -webkit-transform 300ms;
|
12712 | transition: transform 300ms;
|
12713 | transition: transform 300ms, -webkit-transform 300ms; }
|
12714 |
|
12715 | .toggle-ios .toggle-inner {
|
12716 | left: 2px;
|
12717 | top: 2px;
|
12718 | border-radius: 14px;
|
12719 | position: absolute;
|
12720 | width: 28px;
|
12721 | height: 28px;
|
12722 | background-color: #242424;
|
12723 | box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16), 0 3px 1px rgba(0, 0, 0, 0.1);
|
12724 | transition: width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
|
12725 | transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms;
|
12726 | transition: transform 300ms, width 120ms ease-in-out 80ms, left 110ms ease-in-out 80ms, right 110ms ease-in-out 80ms, -webkit-transform 300ms;
|
12727 | will-change: transform;
|
12728 | contain: strict; }
|
12729 |
|
12730 | .toggle-ios.toggle-checked .toggle-icon {
|
12731 | background-color: #007aff; }
|
12732 |
|
12733 | .toggle-ios.toggle-activated .toggle-icon::before,
|
12734 | .toggle-ios.toggle-checked .toggle-icon::before {
|
12735 | -webkit-transform: scale3d(0, 0, 0);
|
12736 | transform: scale3d(0, 0, 0); }
|
12737 |
|
12738 | .toggle-ios.toggle-checked .toggle-inner {
|
12739 | -webkit-transform: translate3d(19px, 0, 0);
|
12740 | transform: translate3d(19px, 0, 0); }
|
12741 |
|
12742 | .toggle-ios.toggle-activated.toggle-checked .toggle-inner::before {
|
12743 | -webkit-transform: scale3d(0, 0, 0);
|
12744 | transform: scale3d(0, 0, 0); }
|
12745 |
|
12746 | .toggle-ios.toggle-activated .toggle-inner {
|
12747 | width: 34px; }
|
12748 |
|
12749 | .toggle-ios.toggle-activated.toggle-checked .toggle-inner {
|
12750 | left: -4px; }
|
12751 |
|
12752 | .toggle-ios.toggle-disabled,
|
12753 | .item-ios.item-toggle-disabled ion-label {
|
12754 | opacity: 0.3;
|
12755 | pointer-events: none; }
|
12756 |
|
12757 | .item-ios .toggle-ios {
|
12758 | margin: 0;
|
12759 | padding: 6px 8px 5px 16px; }
|
12760 |
|
12761 | .item-ios .toggle-ios[item-left],
|
12762 | .item-ios .toggle-ios[item-start] {
|
12763 | padding: 6px 16px 5px 0; }
|
12764 |
|
12765 | .toggle-ios-primary.toggle-checked .toggle-icon {
|
12766 | background-color: #007aff; }
|
12767 |
|
12768 | .toggle-ios-secondary.toggle-checked .toggle-icon {
|
12769 | background-color: #32db64; }
|
12770 |
|
12771 | .toggle-ios-danger.toggle-checked .toggle-icon {
|
12772 | background-color: #d91e18; }
|
12773 |
|
12774 | .toggle-ios-light.toggle-checked .toggle-icon {
|
12775 | background-color: #f4f4f4; }
|
12776 |
|
12777 | .toggle-ios-dark.toggle-checked .toggle-icon {
|
12778 | background-color: #222; }
|
12779 |
|
12780 | .toggle-md {
|
12781 | position: relative;
|
12782 | display: block;
|
12783 | width: 36px;
|
12784 | height: 14px;
|
12785 | box-sizing: content-box;
|
12786 | contain: strict;
|
12787 | padding: 12px; }
|
12788 |
|
12789 | .toggle-md .toggle-icon {
|
12790 | border-radius: 14px;
|
12791 | position: relative;
|
12792 | display: block;
|
12793 | width: 100%;
|
12794 | height: 100%;
|
12795 | background-color: #dedede;
|
12796 | transition: background-color 300ms;
|
12797 | pointer-events: none; }
|
12798 |
|
12799 | .toggle-md .toggle-inner {
|
12800 | left: 0;
|
12801 | top: -3px;
|
12802 | border-radius: 50%;
|
12803 | position: absolute;
|
12804 | width: 20px;
|
12805 | height: 20px;
|
12806 | background-color: #191919;
|
12807 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
12808 | transition-duration: 300ms;
|
12809 | transition-property: background-color, -webkit-transform;
|
12810 | transition-property: transform, background-color;
|
12811 | transition-property: transform, background-color, -webkit-transform;
|
12812 | will-change: transform, background-color;
|
12813 | contain: strict; }
|
12814 |
|
12815 | .toggle-md.toggle-checked .toggle-icon {
|
12816 | background-color: #80bdff; }
|
12817 |
|
12818 | .toggle-md.toggle-checked .toggle-inner {
|
12819 | -webkit-transform: translate3d(16px, 0, 0);
|
12820 | transform: translate3d(16px, 0, 0);
|
12821 | background-color: #007aff; }
|
12822 |
|
12823 | .toggle-md.toggle-disabled,
|
12824 | .item-md.item-toggle-disabled ion-label {
|
12825 | opacity: 0.3;
|
12826 | pointer-events: none; }
|
12827 |
|
12828 | .toggle-md.toggle-disabled ion-radio {
|
12829 | opacity: 0.3; }
|
12830 |
|
12831 | .item-md .toggle-md {
|
12832 | cursor: pointer;
|
12833 | margin: 0;
|
12834 | padding: 12px 8px 12px 16px; }
|
12835 |
|
12836 | .item-md .toggle-md[item-left],
|
12837 | .item-md .toggle-md[item-start] {
|
12838 | padding: 12px 18px 12px 2px; }
|
12839 |
|
12840 | .item-md.item-toggle ion-label {
|
12841 | margin-left: 0; }
|
12842 |
|
12843 | .toggle-md-primary.toggle-checked .toggle-icon {
|
12844 | background-color: #80bdff; }
|
12845 |
|
12846 | .toggle-md-primary.toggle-checked .toggle-inner {
|
12847 | background-color: #007aff; }
|
12848 |
|
12849 | .toggle-md-secondary.toggle-checked .toggle-icon {
|
12850 | background-color: #9eeeb6; }
|
12851 |
|
12852 | .toggle-md-secondary.toggle-checked .toggle-inner {
|
12853 | background-color: #32db64; }
|
12854 |
|
12855 | .toggle-md-danger.toggle-checked .toggle-icon {
|
12856 | background-color: #f18380; }
|
12857 |
|
12858 | .toggle-md-danger.toggle-checked .toggle-inner {
|
12859 | background-color: #d91e18; }
|
12860 |
|
12861 | .toggle-md-light.toggle-checked .toggle-icon {
|
12862 | background-color: white; }
|
12863 |
|
12864 | .toggle-md-light.toggle-checked .toggle-inner {
|
12865 | background-color: #f4f4f4; }
|
12866 |
|
12867 | .toggle-md-dark.toggle-checked .toggle-icon {
|
12868 | background-color: #626262; }
|
12869 |
|
12870 | .toggle-md-dark.toggle-checked .toggle-inner {
|
12871 | background-color: #222; }
|
12872 |
|
12873 | .toggle-wp {
|
12874 | position: relative;
|
12875 | display: block;
|
12876 | width: 40px;
|
12877 | height: 18px;
|
12878 | box-sizing: content-box;
|
12879 | contain: strict; }
|
12880 |
|
12881 | .toggle-wp .toggle-icon {
|
12882 | border-radius: 18px;
|
12883 | position: relative;
|
12884 | display: block;
|
12885 | width: 100%;
|
12886 | height: 100%;
|
12887 | border: 2px solid #323232;
|
12888 | background-color: transparent;
|
12889 | pointer-events: none;
|
12890 | contain: strict; }
|
12891 |
|
12892 | .toggle-wp .toggle-inner {
|
12893 | left: 2px;
|
12894 | top: 2px;
|
12895 | border-radius: 50%;
|
12896 | position: absolute;
|
12897 | width: 10px;
|
12898 | height: 10px;
|
12899 | background-color: #323232;
|
12900 | transition-duration: 300ms;
|
12901 | transition-property: background-color, -webkit-transform;
|
12902 | transition-property: transform, background-color;
|
12903 | transition-property: transform, background-color, -webkit-transform;
|
12904 | will-change: transform, background-color; }
|
12905 |
|
12906 | .toggle-wp.toggle-checked .toggle-icon {
|
12907 | border-color: #007aff;
|
12908 | background-color: #007aff; }
|
12909 |
|
12910 | .toggle-wp.toggle-checked .toggle-inner {
|
12911 | -webkit-transform: translate3d(22px, 0, 0);
|
12912 | transform: translate3d(22px, 0, 0);
|
12913 | background-color: #fff; }
|
12914 |
|
12915 | .toggle-wp.toggle-disabled,
|
12916 | .item-wp.item-toggle-disabled ion-label {
|
12917 | opacity: 0.3;
|
12918 | pointer-events: none; }
|
12919 |
|
12920 | .toggle-wp.toggle-disabled ion-radio {
|
12921 | opacity: 0.3; }
|
12922 |
|
12923 | .item-wp .toggle-wp {
|
12924 | margin: 0;
|
12925 | cursor: pointer;
|
12926 | padding: 12px 8px 12px 16px; }
|
12927 |
|
12928 | .item-wp .toggle-wp[item-left],
|
12929 | .item-wp .toggle-wp[item-start] {
|
12930 | padding: 12px 18px 12px 2px; }
|
12931 |
|
12932 | .item-wp.item-toggle ion-label {
|
12933 | margin-left: 0; }
|
12934 |
|
12935 | .toggle-wp-primary.toggle-checked .toggle-icon {
|
12936 | border-color: #007aff;
|
12937 | background-color: #007aff; }
|
12938 |
|
12939 | .toggle-wp-primary.toggle-checked .toggle-inner {
|
12940 | background-color: #fff; }
|
12941 |
|
12942 | .toggle-wp-secondary.toggle-checked .toggle-icon {
|
12943 | border-color: #32db64;
|
12944 | background-color: #32db64; }
|
12945 |
|
12946 | .toggle-wp-secondary.toggle-checked .toggle-inner {
|
12947 | background-color: #fff; }
|
12948 |
|
12949 | .toggle-wp-danger.toggle-checked .toggle-icon {
|
12950 | border-color: #d91e18;
|
12951 | background-color: #d91e18; }
|
12952 |
|
12953 | .toggle-wp-danger.toggle-checked .toggle-inner {
|
12954 | background-color: #fff; }
|
12955 |
|
12956 | .toggle-wp-light.toggle-checked .toggle-icon {
|
12957 | border-color: #f4f4f4;
|
12958 | background-color: #f4f4f4; }
|
12959 |
|
12960 | .toggle-wp-light.toggle-checked .toggle-inner {
|
12961 | background-color: #000; }
|
12962 |
|
12963 | .toggle-wp-dark.toggle-checked .toggle-icon {
|
12964 | border-color: #222;
|
12965 | background-color: #222; }
|
12966 |
|
12967 | .toggle-wp-dark.toggle-checked .toggle-inner {
|
12968 | background-color: #fff; }
|
12969 |
|
12970 | ion-toolbar {
|
12971 | position: relative;
|
12972 | z-index: 10; }
|
12973 |
|
12974 | .toolbar {
|
12975 | display: -webkit-flex;
|
12976 | display: -ms-flexbox;
|
12977 | display: flex;
|
12978 | overflow: hidden;
|
12979 | -webkit-flex-direction: row;
|
12980 | -ms-flex-direction: row;
|
12981 | flex-direction: row;
|
12982 | -webkit-align-items: center;
|
12983 | -ms-flex-align: center;
|
12984 | align-items: center;
|
12985 | -webkit-justify-content: space-between;
|
12986 | -ms-flex-pack: justify;
|
12987 | justify-content: space-between;
|
12988 | width: 100%;
|
12989 | contain: content; }
|
12990 |
|
12991 | .toolbar-background {
|
12992 | left: 0;
|
12993 | top: 0;
|
12994 | position: absolute;
|
12995 | z-index: -1;
|
12996 | width: 100%;
|
12997 | height: 100%;
|
12998 | border: 0;
|
12999 | -webkit-transform: translateZ(0);
|
13000 | transform: translateZ(0);
|
13001 | pointer-events: none;
|
13002 | contain: strict; }
|
13003 |
|
13004 | ion-title {
|
13005 | display: -webkit-flex;
|
13006 | display: -ms-flexbox;
|
13007 | display: flex;
|
13008 | -webkit-flex: 1;
|
13009 | -ms-flex: 1;
|
13010 | flex: 1;
|
13011 | -webkit-align-items: center;
|
13012 | -ms-flex-align: center;
|
13013 | align-items: center;
|
13014 | -webkit-transform: translateZ(0);
|
13015 | transform: translateZ(0); }
|
13016 |
|
13017 | .toolbar-title {
|
13018 | display: block;
|
13019 | overflow: hidden;
|
13020 | width: 100%;
|
13021 | text-overflow: ellipsis;
|
13022 | white-space: nowrap; }
|
13023 |
|
13024 | ion-buttons {
|
13025 | margin: 0 0.2rem;
|
13026 | display: block;
|
13027 | -webkit-transform: translateZ(0);
|
13028 | transform: translateZ(0);
|
13029 | pointer-events: none; }
|
13030 |
|
13031 | ion-buttons button,
|
13032 | ion-buttons a,
|
13033 | ion-buttons input,
|
13034 | ion-buttons textarea,
|
13035 | ion-buttons div {
|
13036 | pointer-events: auto; }
|
13037 |
|
13038 | .toolbar[transparent] .toolbar-background {
|
13039 | border-color: transparent;
|
13040 | background: transparent; }
|
13041 |
|
13042 | ion-buttons,
|
13043 | .bar-button-menutoggle {
|
13044 | z-index: 99;
|
13045 | -webkit-transform: translateZ(0);
|
13046 | transform: translateZ(0); }
|
13047 |
|
13048 | ion-navbar.toolbar {
|
13049 | display: -webkit-flex;
|
13050 | display: -ms-flexbox;
|
13051 | display: flex;
|
13052 | -webkit-transform: translateZ(0);
|
13053 | transform: translateZ(0); }
|
13054 |
|
13055 | .bar-button {
|
13056 | margin: 0;
|
13057 | padding: 0;
|
13058 | text-align: center;
|
13059 | -moz-appearance: none;
|
13060 | -ms-appearance: none;
|
13061 | -webkit-appearance: none;
|
13062 | appearance: none;
|
13063 | position: relative;
|
13064 | display: inline-block;
|
13065 | line-height: 1;
|
13066 | text-overflow: ellipsis;
|
13067 | text-transform: none;
|
13068 | white-space: nowrap;
|
13069 | cursor: pointer;
|
13070 | vertical-align: top;
|
13071 | vertical-align: -webkit-baseline-middle;
|
13072 | -webkit-user-select: none;
|
13073 | -moz-user-select: none;
|
13074 | -ms-user-select: none;
|
13075 | user-select: none; }
|
13076 |
|
13077 | .bar-button::after {
|
13078 | left: -2px;
|
13079 | right: -2px;
|
13080 | top: -7px;
|
13081 | bottom: -6px;
|
13082 | position: absolute;
|
13083 | content: ""; }
|
13084 |
|
13085 | .bar-button-menutoggle {
|
13086 | display: -webkit-flex;
|
13087 | display: -ms-flexbox;
|
13088 | display: flex;
|
13089 | -webkit-align-items: center;
|
13090 | -ms-flex-align: center;
|
13091 | align-items: center; }
|
13092 |
|
13093 | .back-button {
|
13094 | display: none; }
|
13095 |
|
13096 | .back-button.show-back-button {
|
13097 | display: inline-block; }
|
13098 |
|
13099 | .back-button-text {
|
13100 | display: -webkit-flex;
|
13101 | display: -ms-flexbox;
|
13102 | display: flex;
|
13103 | -webkit-align-items: center;
|
13104 | -ms-flex-align: center;
|
13105 | align-items: center; }
|
13106 |
|
13107 | .toolbar-ios {
|
13108 | padding: 4px;
|
13109 | padding-left: 4px;
|
13110 | padding-right: 4px;
|
13111 | min-height: 44px; }
|
13112 | @media screen and (orientation: landscape) {
|
13113 | .toolbar-ios {
|
13114 | padding-left: calc(constant(safe-area-inset-left) + 4px);
|
13115 | padding-right: calc(constant(safe-area-inset-right) + 4px);
|
13116 | padding-left: calc(env(safe-area-inset-left) + 4px);
|
13117 | padding-right: calc(env(safe-area-inset-right) + 4px); } }
|
13118 |
|
13119 | .toolbar-background-ios {
|
13120 | background: #151515; }
|
13121 |
|
13122 | .header-ios .toolbar-background-ios,
|
13123 | .footer-ios .toolbar-background-ios {
|
13124 | border-style: solid;
|
13125 | border-color: rgba(0, 0, 0, 0.3); }
|
13126 |
|
13127 | .header-ios .toolbar-ios:last-child .toolbar-background-ios {
|
13128 | border-width: 0 0 0.55px; }
|
13129 |
|
13130 | .footer-ios .toolbar-ios:first-child .toolbar-background-ios {
|
13131 | border-width: 0.55px 0 0; }
|
13132 |
|
13133 | .header-ios[no-border] .toolbar-ios:last-child .toolbar-background-ios {
|
13134 | border-bottom-width: 0; }
|
13135 |
|
13136 | .footer-ios[no-border] .toolbar-ios:first-child .toolbar-background-ios {
|
13137 | border-top-width: 0; }
|
13138 |
|
13139 | .toolbar-content-ios {
|
13140 | -webkit-flex: 1;
|
13141 | -ms-flex: 1;
|
13142 | flex: 1;
|
13143 | -webkit-order: 4;
|
13144 | -ms-flex-order: 4;
|
13145 | order: 4;
|
13146 | min-width: 0; }
|
13147 |
|
13148 | .toolbar-title-ios {
|
13149 | text-align: center;
|
13150 | font-size: 1.7rem;
|
13151 | font-weight: 600;
|
13152 | color: #fff;
|
13153 | pointer-events: auto; }
|
13154 |
|
13155 | .toolbar-ios ion-title {
|
13156 | left: 0;
|
13157 | top: 0;
|
13158 | padding: 0 90px 1px;
|
13159 | position: absolute;
|
13160 | width: 100%;
|
13161 | height: 100%;
|
13162 | -webkit-transform: translateZ(0);
|
13163 | transform: translateZ(0);
|
13164 | pointer-events: none; }
|
13165 |
|
13166 | .bar-buttons-ios {
|
13167 | -webkit-order: 3;
|
13168 | -ms-flex-order: 3;
|
13169 | order: 3;
|
13170 | -webkit-transform: translateZ(0);
|
13171 | transform: translateZ(0); }
|
13172 |
|
13173 | .bar-buttons-ios[left] {
|
13174 | -webkit-order: 2;
|
13175 | -ms-flex-order: 2;
|
13176 | order: 2; }
|
13177 |
|
13178 | .bar-buttons-ios[end] {
|
13179 | text-align: right;
|
13180 | text-align: end;
|
13181 | -webkit-order: 5;
|
13182 | -ms-flex-order: 5;
|
13183 | order: 5; }
|
13184 |
|
13185 | .bar-buttons-ios[right] {
|
13186 | text-align: right;
|
13187 | -webkit-order: 6;
|
13188 | -ms-flex-order: 6;
|
13189 | order: 6; }
|
13190 |
|
13191 | .bar-button-ios {
|
13192 | padding: 0 4px;
|
13193 | border-radius: 4px;
|
13194 | height: 32px;
|
13195 | border: 0;
|
13196 | font-size: 1.7rem; }
|
13197 |
|
13198 | .bar-button-outline-ios {
|
13199 | border-width: 1px;
|
13200 | border-style: solid;
|
13201 | border-color: #fff;
|
13202 | color: #fff;
|
13203 | background-color: transparent; }
|
13204 | .bar-button-outline-ios:hover:not(.disable-hover) {
|
13205 | opacity: .4; }
|
13206 | .bar-button-outline-ios.activated {
|
13207 | color: #000;
|
13208 | background-color: #fff; }
|
13209 |
|
13210 | .bar-button-solid-ios {
|
13211 | color: #000;
|
13212 | background-color: #fff; }
|
13213 | .bar-button-solid-ios:hover:not(.disable-hover) {
|
13214 | color: #000;
|
13215 | opacity: .4; }
|
13216 | .bar-button-solid-ios.activated {
|
13217 | color: #000;
|
13218 | background-color: #ebebeb;
|
13219 | opacity: .4; }
|
13220 |
|
13221 | .bar-button-ios.bar-button-icon-start ion-icon {
|
13222 | padding-right: 0.3em;
|
13223 | font-size: 1.4em;
|
13224 | line-height: .67;
|
13225 | pointer-events: none; }
|
13226 |
|
13227 | .bar-button-ios.bar-button-icon-end ion-icon {
|
13228 | padding-left: 0.4em;
|
13229 | font-size: 1.4em;
|
13230 | line-height: .67;
|
13231 | pointer-events: none; }
|
13232 |
|
13233 | .bar-button-ios[icon-only] {
|
13234 | padding: 0;
|
13235 | min-width: .9em; }
|
13236 |
|
13237 | .bar-button-ios[icon-only] ion-icon {
|
13238 | padding: 0 0.1em;
|
13239 | font-size: 1.8em;
|
13240 | line-height: .67;
|
13241 | pointer-events: none; }
|
13242 |
|
13243 | .back-button-ios {
|
13244 | margin: 0;
|
13245 | z-index: 99;
|
13246 | overflow: visible;
|
13247 | -webkit-order: 0;
|
13248 | -ms-flex-order: 0;
|
13249 | order: 0;
|
13250 | min-height: 3.2rem;
|
13251 | line-height: 1;
|
13252 | -webkit-transform: translateZ(0);
|
13253 | transform: translateZ(0); }
|
13254 |
|
13255 | .back-button-icon-ios {
|
13256 | margin: -1px 0 0;
|
13257 | display: inherit;
|
13258 | min-width: 18px;
|
13259 | font-size: 3.4rem; }
|
13260 |
|
13261 | .back-button-text-ios {
|
13262 | letter-spacing: -.01em; }
|
13263 |
|
13264 | .bar-button-menutoggle-ios {
|
13265 | margin: 0 6px;
|
13266 | padding: 0;
|
13267 | -webkit-order: 1;
|
13268 | -ms-flex-order: 1;
|
13269 | order: 1;
|
13270 | min-width: 36px; }
|
13271 | .bar-button-menutoggle-ios ion-icon {
|
13272 | padding: 0 6px;
|
13273 | font-size: 2.8rem; }
|
13274 |
|
13275 | .bar-button-menutoggle-ios[end],
|
13276 | .bar-button-menutoggle-ios[right] {
|
13277 | -webkit-order: 7;
|
13278 | -ms-flex-order: 7;
|
13279 | order: 7; }
|
13280 |
|
13281 | .bar-button-default-ios,
|
13282 | .bar-button-default.bar-button-ios-default,
|
13283 | .bar-button-clear-ios-default {
|
13284 | color: #fff;
|
13285 | background-color: transparent; }
|
13286 | .bar-button-default-ios:hover:not(.disable-hover),
|
13287 | .bar-button-default.bar-button-ios-default:hover:not(.disable-hover),
|
13288 | .bar-button-clear-ios-default:hover:not(.disable-hover) {
|
13289 | color: #fff; }
|
13290 | .bar-button-default-ios.activated,
|
13291 | .bar-button-default.bar-button-ios-default.activated,
|
13292 | .bar-button-clear-ios-default.activated {
|
13293 | opacity: .4; }
|
13294 |
|
13295 | .bar-button-clear-ios,
|
13296 | .bar-button-default.bar-button-ios-clear,
|
13297 | .bar-button-clear-ios-clear {
|
13298 | color: #fff;
|
13299 | background-color: transparent; }
|
13300 | .bar-button-clear-ios:hover:not(.disable-hover),
|
13301 | .bar-button-default.bar-button-ios-clear:hover:not(.disable-hover),
|
13302 | .bar-button-clear-ios-clear:hover:not(.disable-hover) {
|
13303 | color: #fff; }
|
13304 | .bar-button-clear-ios.activated,
|
13305 | .bar-button-default.bar-button-ios-clear.activated,
|
13306 | .bar-button-clear-ios-clear.activated {
|
13307 | opacity: .4; }
|
13308 |
|
13309 | .toolbar-ios-primary .toolbar-background-ios {
|
13310 | background: #007aff; }
|
13311 |
|
13312 | .toolbar-ios-primary .toolbar-title-ios,
|
13313 | .toolbar-ios-primary .bar-button-clear-ios,
|
13314 | .toolbar-ios-primary .bar-button-default-ios {
|
13315 | color: #fff; }
|
13316 |
|
13317 | .toolbar-ios-primary .bar-button-primary-ios,
|
13318 | .toolbar-ios-primary .bar-button-default.bar-button-ios-primary,
|
13319 | .toolbar-ios-primary .bar-button-clear-ios-primary {
|
13320 | color: #007aff;
|
13321 | background-color: transparent; }
|
13322 | .toolbar-ios-primary .bar-button-primary-ios:hover:not(.disable-hover),
|
13323 | .toolbar-ios-primary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
|
13324 | .toolbar-ios-primary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
|
13325 | color: #007aff; }
|
13326 | .toolbar-ios-primary .bar-button-primary-ios.activated,
|
13327 | .toolbar-ios-primary .bar-button-default.bar-button-ios-primary.activated,
|
13328 | .toolbar-ios-primary .bar-button-clear-ios-primary.activated {
|
13329 | opacity: .4; }
|
13330 |
|
13331 | .toolbar-ios-primary .bar-button-outline-ios-primary {
|
13332 | border-color: #007aff;
|
13333 | color: #007aff;
|
13334 | background-color: transparent; }
|
13335 | .toolbar-ios-primary .bar-button-outline-ios-primary.activated {
|
13336 | color: #fff;
|
13337 | background-color: #007aff; }
|
13338 |
|
13339 | .toolbar-ios-primary .bar-button-solid-ios-primary {
|
13340 | color: #fff;
|
13341 | background-color: #007aff; }
|
13342 | .toolbar-ios-primary .bar-button-solid-ios-primary.activated {
|
13343 | color: #fff;
|
13344 | background-color: #1485ff; }
|
13345 |
|
13346 | .toolbar-ios-primary .bar-button-secondary-ios,
|
13347 | .toolbar-ios-primary .bar-button-default.bar-button-ios-secondary,
|
13348 | .toolbar-ios-primary .bar-button-clear-ios-secondary {
|
13349 | color: #32db64;
|
13350 | background-color: transparent; }
|
13351 | .toolbar-ios-primary .bar-button-secondary-ios:hover:not(.disable-hover),
|
13352 | .toolbar-ios-primary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
|
13353 | .toolbar-ios-primary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
|
13354 | color: #32db64; }
|
13355 | .toolbar-ios-primary .bar-button-secondary-ios.activated,
|
13356 | .toolbar-ios-primary .bar-button-default.bar-button-ios-secondary.activated,
|
13357 | .toolbar-ios-primary .bar-button-clear-ios-secondary.activated {
|
13358 | opacity: .4; }
|
13359 |
|
13360 | .toolbar-ios-primary .bar-button-outline-ios-secondary {
|
13361 | border-color: #32db64;
|
13362 | color: #32db64;
|
13363 | background-color: transparent; }
|
13364 | .toolbar-ios-primary .bar-button-outline-ios-secondary.activated {
|
13365 | color: #fff;
|
13366 | background-color: #32db64; }
|
13367 |
|
13368 | .toolbar-ios-primary .bar-button-solid-ios-secondary {
|
13369 | color: #fff;
|
13370 | background-color: #32db64; }
|
13371 | .toolbar-ios-primary .bar-button-solid-ios-secondary.activated {
|
13372 | color: #fff;
|
13373 | background-color: #2ec95c; }
|
13374 |
|
13375 | .toolbar-ios-primary .bar-button-danger-ios,
|
13376 | .toolbar-ios-primary .bar-button-default.bar-button-ios-danger,
|
13377 | .toolbar-ios-primary .bar-button-clear-ios-danger {
|
13378 | color: #d91e18;
|
13379 | background-color: transparent; }
|
13380 | .toolbar-ios-primary .bar-button-danger-ios:hover:not(.disable-hover),
|
13381 | .toolbar-ios-primary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
|
13382 | .toolbar-ios-primary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
|
13383 | color: #d91e18; }
|
13384 | .toolbar-ios-primary .bar-button-danger-ios.activated,
|
13385 | .toolbar-ios-primary .bar-button-default.bar-button-ios-danger.activated,
|
13386 | .toolbar-ios-primary .bar-button-clear-ios-danger.activated {
|
13387 | opacity: .4; }
|
13388 |
|
13389 | .toolbar-ios-primary .bar-button-outline-ios-danger {
|
13390 | border-color: #d91e18;
|
13391 | color: #d91e18;
|
13392 | background-color: transparent; }
|
13393 | .toolbar-ios-primary .bar-button-outline-ios-danger.activated {
|
13394 | color: #fff;
|
13395 | background-color: #d91e18; }
|
13396 |
|
13397 | .toolbar-ios-primary .bar-button-solid-ios-danger {
|
13398 | color: #fff;
|
13399 | background-color: #d91e18; }
|
13400 | .toolbar-ios-primary .bar-button-solid-ios-danger.activated {
|
13401 | color: #fff;
|
13402 | background-color: #dc302a; }
|
13403 |
|
13404 | .toolbar-ios-primary .bar-button-light-ios,
|
13405 | .toolbar-ios-primary .bar-button-default.bar-button-ios-light,
|
13406 | .toolbar-ios-primary .bar-button-clear-ios-light {
|
13407 | color: #f4f4f4;
|
13408 | background-color: transparent; }
|
13409 | .toolbar-ios-primary .bar-button-light-ios:hover:not(.disable-hover),
|
13410 | .toolbar-ios-primary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
|
13411 | .toolbar-ios-primary .bar-button-clear-ios-light:hover:not(.disable-hover) {
|
13412 | color: #f4f4f4; }
|
13413 | .toolbar-ios-primary .bar-button-light-ios.activated,
|
13414 | .toolbar-ios-primary .bar-button-default.bar-button-ios-light.activated,
|
13415 | .toolbar-ios-primary .bar-button-clear-ios-light.activated {
|
13416 | opacity: .4; }
|
13417 |
|
13418 | .toolbar-ios-primary .bar-button-outline-ios-light {
|
13419 | border-color: #f4f4f4;
|
13420 | color: #f4f4f4;
|
13421 | background-color: transparent; }
|
13422 | .toolbar-ios-primary .bar-button-outline-ios-light.activated {
|
13423 | color: #000;
|
13424 | background-color: #f4f4f4; }
|
13425 |
|
13426 | .toolbar-ios-primary .bar-button-solid-ios-light {
|
13427 | color: #000;
|
13428 | background-color: #f4f4f4; }
|
13429 | .toolbar-ios-primary .bar-button-solid-ios-light.activated {
|
13430 | color: #000;
|
13431 | background-color: #e0e0e0; }
|
13432 |
|
13433 | .toolbar-ios-primary .bar-button-dark-ios,
|
13434 | .toolbar-ios-primary .bar-button-default.bar-button-ios-dark,
|
13435 | .toolbar-ios-primary .bar-button-clear-ios-dark {
|
13436 | color: #222;
|
13437 | background-color: transparent; }
|
13438 | .toolbar-ios-primary .bar-button-dark-ios:hover:not(.disable-hover),
|
13439 | .toolbar-ios-primary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
|
13440 | .toolbar-ios-primary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
|
13441 | color: #222; }
|
13442 | .toolbar-ios-primary .bar-button-dark-ios.activated,
|
13443 | .toolbar-ios-primary .bar-button-default.bar-button-ios-dark.activated,
|
13444 | .toolbar-ios-primary .bar-button-clear-ios-dark.activated {
|
13445 | opacity: .4; }
|
13446 |
|
13447 | .toolbar-ios-primary .bar-button-outline-ios-dark {
|
13448 | border-color: #222;
|
13449 | color: #222;
|
13450 | background-color: transparent; }
|
13451 | .toolbar-ios-primary .bar-button-outline-ios-dark.activated {
|
13452 | color: #fff;
|
13453 | background-color: #222; }
|
13454 |
|
13455 | .toolbar-ios-primary .bar-button-solid-ios-dark {
|
13456 | color: #fff;
|
13457 | background-color: #222; }
|
13458 | .toolbar-ios-primary .bar-button-solid-ios-dark.activated {
|
13459 | color: #fff;
|
13460 | background-color: #343434; }
|
13461 |
|
13462 | .bar-button-primary-ios,
|
13463 | .bar-button-default.bar-button-ios-primary,
|
13464 | .bar-button-clear-ios-primary {
|
13465 | color: #007aff;
|
13466 | background-color: transparent; }
|
13467 | .bar-button-primary-ios:hover:not(.disable-hover),
|
13468 | .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
|
13469 | .bar-button-clear-ios-primary:hover:not(.disable-hover) {
|
13470 | color: #007aff; }
|
13471 | .bar-button-primary-ios.activated,
|
13472 | .bar-button-default.bar-button-ios-primary.activated,
|
13473 | .bar-button-clear-ios-primary.activated {
|
13474 | opacity: .4; }
|
13475 |
|
13476 | .bar-button-outline-ios-primary {
|
13477 | border-color: #007aff;
|
13478 | color: #007aff;
|
13479 | background-color: transparent; }
|
13480 | .bar-button-outline-ios-primary.activated {
|
13481 | color: #fff;
|
13482 | background-color: #007aff; }
|
13483 |
|
13484 | .bar-button-solid-ios-primary {
|
13485 | color: #fff;
|
13486 | background-color: #007aff; }
|
13487 | .bar-button-solid-ios-primary.activated {
|
13488 | color: #fff;
|
13489 | background-color: #1485ff; }
|
13490 |
|
13491 | .toolbar-ios-secondary .toolbar-background-ios {
|
13492 | background: #32db64; }
|
13493 |
|
13494 | .toolbar-ios-secondary .toolbar-title-ios,
|
13495 | .toolbar-ios-secondary .bar-button-clear-ios,
|
13496 | .toolbar-ios-secondary .bar-button-default-ios {
|
13497 | color: #fff; }
|
13498 |
|
13499 | .toolbar-ios-secondary .bar-button-primary-ios,
|
13500 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-primary,
|
13501 | .toolbar-ios-secondary .bar-button-clear-ios-primary {
|
13502 | color: #007aff;
|
13503 | background-color: transparent; }
|
13504 | .toolbar-ios-secondary .bar-button-primary-ios:hover:not(.disable-hover),
|
13505 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
|
13506 | .toolbar-ios-secondary .bar-button-clear-ios-primary:hover:not(.disable-hover) {
|
13507 | color: #007aff; }
|
13508 | .toolbar-ios-secondary .bar-button-primary-ios.activated,
|
13509 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-primary.activated,
|
13510 | .toolbar-ios-secondary .bar-button-clear-ios-primary.activated {
|
13511 | opacity: .4; }
|
13512 |
|
13513 | .toolbar-ios-secondary .bar-button-outline-ios-primary {
|
13514 | border-color: #007aff;
|
13515 | color: #007aff;
|
13516 | background-color: transparent; }
|
13517 | .toolbar-ios-secondary .bar-button-outline-ios-primary.activated {
|
13518 | color: #fff;
|
13519 | background-color: #007aff; }
|
13520 |
|
13521 | .toolbar-ios-secondary .bar-button-solid-ios-primary {
|
13522 | color: #fff;
|
13523 | background-color: #007aff; }
|
13524 | .toolbar-ios-secondary .bar-button-solid-ios-primary.activated {
|
13525 | color: #fff;
|
13526 | background-color: #1485ff; }
|
13527 |
|
13528 | .toolbar-ios-secondary .bar-button-secondary-ios,
|
13529 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary,
|
13530 | .toolbar-ios-secondary .bar-button-clear-ios-secondary {
|
13531 | color: #32db64;
|
13532 | background-color: transparent; }
|
13533 | .toolbar-ios-secondary .bar-button-secondary-ios:hover:not(.disable-hover),
|
13534 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
|
13535 | .toolbar-ios-secondary .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
|
13536 | color: #32db64; }
|
13537 | .toolbar-ios-secondary .bar-button-secondary-ios.activated,
|
13538 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-secondary.activated,
|
13539 | .toolbar-ios-secondary .bar-button-clear-ios-secondary.activated {
|
13540 | opacity: .4; }
|
13541 |
|
13542 | .toolbar-ios-secondary .bar-button-outline-ios-secondary {
|
13543 | border-color: #32db64;
|
13544 | color: #32db64;
|
13545 | background-color: transparent; }
|
13546 | .toolbar-ios-secondary .bar-button-outline-ios-secondary.activated {
|
13547 | color: #fff;
|
13548 | background-color: #32db64; }
|
13549 |
|
13550 | .toolbar-ios-secondary .bar-button-solid-ios-secondary {
|
13551 | color: #fff;
|
13552 | background-color: #32db64; }
|
13553 | .toolbar-ios-secondary .bar-button-solid-ios-secondary.activated {
|
13554 | color: #fff;
|
13555 | background-color: #2ec95c; }
|
13556 |
|
13557 | .toolbar-ios-secondary .bar-button-danger-ios,
|
13558 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-danger,
|
13559 | .toolbar-ios-secondary .bar-button-clear-ios-danger {
|
13560 | color: #d91e18;
|
13561 | background-color: transparent; }
|
13562 | .toolbar-ios-secondary .bar-button-danger-ios:hover:not(.disable-hover),
|
13563 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
|
13564 | .toolbar-ios-secondary .bar-button-clear-ios-danger:hover:not(.disable-hover) {
|
13565 | color: #d91e18; }
|
13566 | .toolbar-ios-secondary .bar-button-danger-ios.activated,
|
13567 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-danger.activated,
|
13568 | .toolbar-ios-secondary .bar-button-clear-ios-danger.activated {
|
13569 | opacity: .4; }
|
13570 |
|
13571 | .toolbar-ios-secondary .bar-button-outline-ios-danger {
|
13572 | border-color: #d91e18;
|
13573 | color: #d91e18;
|
13574 | background-color: transparent; }
|
13575 | .toolbar-ios-secondary .bar-button-outline-ios-danger.activated {
|
13576 | color: #fff;
|
13577 | background-color: #d91e18; }
|
13578 |
|
13579 | .toolbar-ios-secondary .bar-button-solid-ios-danger {
|
13580 | color: #fff;
|
13581 | background-color: #d91e18; }
|
13582 | .toolbar-ios-secondary .bar-button-solid-ios-danger.activated {
|
13583 | color: #fff;
|
13584 | background-color: #dc302a; }
|
13585 |
|
13586 | .toolbar-ios-secondary .bar-button-light-ios,
|
13587 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-light,
|
13588 | .toolbar-ios-secondary .bar-button-clear-ios-light {
|
13589 | color: #f4f4f4;
|
13590 | background-color: transparent; }
|
13591 | .toolbar-ios-secondary .bar-button-light-ios:hover:not(.disable-hover),
|
13592 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
|
13593 | .toolbar-ios-secondary .bar-button-clear-ios-light:hover:not(.disable-hover) {
|
13594 | color: #f4f4f4; }
|
13595 | .toolbar-ios-secondary .bar-button-light-ios.activated,
|
13596 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-light.activated,
|
13597 | .toolbar-ios-secondary .bar-button-clear-ios-light.activated {
|
13598 | opacity: .4; }
|
13599 |
|
13600 | .toolbar-ios-secondary .bar-button-outline-ios-light {
|
13601 | border-color: #f4f4f4;
|
13602 | color: #f4f4f4;
|
13603 | background-color: transparent; }
|
13604 | .toolbar-ios-secondary .bar-button-outline-ios-light.activated {
|
13605 | color: #000;
|
13606 | background-color: #f4f4f4; }
|
13607 |
|
13608 | .toolbar-ios-secondary .bar-button-solid-ios-light {
|
13609 | color: #000;
|
13610 | background-color: #f4f4f4; }
|
13611 | .toolbar-ios-secondary .bar-button-solid-ios-light.activated {
|
13612 | color: #000;
|
13613 | background-color: #e0e0e0; }
|
13614 |
|
13615 | .toolbar-ios-secondary .bar-button-dark-ios,
|
13616 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-dark,
|
13617 | .toolbar-ios-secondary .bar-button-clear-ios-dark {
|
13618 | color: #222;
|
13619 | background-color: transparent; }
|
13620 | .toolbar-ios-secondary .bar-button-dark-ios:hover:not(.disable-hover),
|
13621 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
|
13622 | .toolbar-ios-secondary .bar-button-clear-ios-dark:hover:not(.disable-hover) {
|
13623 | color: #222; }
|
13624 | .toolbar-ios-secondary .bar-button-dark-ios.activated,
|
13625 | .toolbar-ios-secondary .bar-button-default.bar-button-ios-dark.activated,
|
13626 | .toolbar-ios-secondary .bar-button-clear-ios-dark.activated {
|
13627 | opacity: .4; }
|
13628 |
|
13629 | .toolbar-ios-secondary .bar-button-outline-ios-dark {
|
13630 | border-color: #222;
|
13631 | color: #222;
|
13632 | background-color: transparent; }
|
13633 | .toolbar-ios-secondary .bar-button-outline-ios-dark.activated {
|
13634 | color: #fff;
|
13635 | background-color: #222; }
|
13636 |
|
13637 | .toolbar-ios-secondary .bar-button-solid-ios-dark {
|
13638 | color: #fff;
|
13639 | background-color: #222; }
|
13640 | .toolbar-ios-secondary .bar-button-solid-ios-dark.activated {
|
13641 | color: #fff;
|
13642 | background-color: #343434; }
|
13643 |
|
13644 | .bar-button-secondary-ios,
|
13645 | .bar-button-default.bar-button-ios-secondary,
|
13646 | .bar-button-clear-ios-secondary {
|
13647 | color: #32db64;
|
13648 | background-color: transparent; }
|
13649 | .bar-button-secondary-ios:hover:not(.disable-hover),
|
13650 | .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
|
13651 | .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
|
13652 | color: #32db64; }
|
13653 | .bar-button-secondary-ios.activated,
|
13654 | .bar-button-default.bar-button-ios-secondary.activated,
|
13655 | .bar-button-clear-ios-secondary.activated {
|
13656 | opacity: .4; }
|
13657 |
|
13658 | .bar-button-outline-ios-secondary {
|
13659 | border-color: #32db64;
|
13660 | color: #32db64;
|
13661 | background-color: transparent; }
|
13662 | .bar-button-outline-ios-secondary.activated {
|
13663 | color: #fff;
|
13664 | background-color: #32db64; }
|
13665 |
|
13666 | .bar-button-solid-ios-secondary {
|
13667 | color: #fff;
|
13668 | background-color: #32db64; }
|
13669 | .bar-button-solid-ios-secondary.activated {
|
13670 | color: #fff;
|
13671 | background-color: #2ec95c; }
|
13672 |
|
13673 | .toolbar-ios-danger .toolbar-background-ios {
|
13674 | background: #d91e18; }
|
13675 |
|
13676 | .toolbar-ios-danger .toolbar-title-ios,
|
13677 | .toolbar-ios-danger .bar-button-clear-ios,
|
13678 | .toolbar-ios-danger .bar-button-default-ios {
|
13679 | color: #fff; }
|
13680 |
|
13681 | .toolbar-ios-danger .bar-button-primary-ios,
|
13682 | .toolbar-ios-danger .bar-button-default.bar-button-ios-primary,
|
13683 | .toolbar-ios-danger .bar-button-clear-ios-primary {
|
13684 | color: #007aff;
|
13685 | background-color: transparent; }
|
13686 | .toolbar-ios-danger .bar-button-primary-ios:hover:not(.disable-hover),
|
13687 | .toolbar-ios-danger .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
|
13688 | .toolbar-ios-danger .bar-button-clear-ios-primary:hover:not(.disable-hover) {
|
13689 | color: #007aff; }
|
13690 | .toolbar-ios-danger .bar-button-primary-ios.activated,
|
13691 | .toolbar-ios-danger .bar-button-default.bar-button-ios-primary.activated,
|
13692 | .toolbar-ios-danger .bar-button-clear-ios-primary.activated {
|
13693 | opacity: .4; }
|
13694 |
|
13695 | .toolbar-ios-danger .bar-button-outline-ios-primary {
|
13696 | border-color: #007aff;
|
13697 | color: #007aff;
|
13698 | background-color: transparent; }
|
13699 | .toolbar-ios-danger .bar-button-outline-ios-primary.activated {
|
13700 | color: #fff;
|
13701 | background-color: #007aff; }
|
13702 |
|
13703 | .toolbar-ios-danger .bar-button-solid-ios-primary {
|
13704 | color: #fff;
|
13705 | background-color: #007aff; }
|
13706 | .toolbar-ios-danger .bar-button-solid-ios-primary.activated {
|
13707 | color: #fff;
|
13708 | background-color: #1485ff; }
|
13709 |
|
13710 | .toolbar-ios-danger .bar-button-secondary-ios,
|
13711 | .toolbar-ios-danger .bar-button-default.bar-button-ios-secondary,
|
13712 | .toolbar-ios-danger .bar-button-clear-ios-secondary {
|
13713 | color: #32db64;
|
13714 | background-color: transparent; }
|
13715 | .toolbar-ios-danger .bar-button-secondary-ios:hover:not(.disable-hover),
|
13716 | .toolbar-ios-danger .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
|
13717 | .toolbar-ios-danger .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
|
13718 | color: #32db64; }
|
13719 | .toolbar-ios-danger .bar-button-secondary-ios.activated,
|
13720 | .toolbar-ios-danger .bar-button-default.bar-button-ios-secondary.activated,
|
13721 | .toolbar-ios-danger .bar-button-clear-ios-secondary.activated {
|
13722 | opacity: .4; }
|
13723 |
|
13724 | .toolbar-ios-danger .bar-button-outline-ios-secondary {
|
13725 | border-color: #32db64;
|
13726 | color: #32db64;
|
13727 | background-color: transparent; }
|
13728 | .toolbar-ios-danger .bar-button-outline-ios-secondary.activated {
|
13729 | color: #fff;
|
13730 | background-color: #32db64; }
|
13731 |
|
13732 | .toolbar-ios-danger .bar-button-solid-ios-secondary {
|
13733 | color: #fff;
|
13734 | background-color: #32db64; }
|
13735 | .toolbar-ios-danger .bar-button-solid-ios-secondary.activated {
|
13736 | color: #fff;
|
13737 | background-color: #2ec95c; }
|
13738 |
|
13739 | .toolbar-ios-danger .bar-button-danger-ios,
|
13740 | .toolbar-ios-danger .bar-button-default.bar-button-ios-danger,
|
13741 | .toolbar-ios-danger .bar-button-clear-ios-danger {
|
13742 | color: #d91e18;
|
13743 | background-color: transparent; }
|
13744 | .toolbar-ios-danger .bar-button-danger-ios:hover:not(.disable-hover),
|
13745 | .toolbar-ios-danger .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
|
13746 | .toolbar-ios-danger .bar-button-clear-ios-danger:hover:not(.disable-hover) {
|
13747 | color: #d91e18; }
|
13748 | .toolbar-ios-danger .bar-button-danger-ios.activated,
|
13749 | .toolbar-ios-danger .bar-button-default.bar-button-ios-danger.activated,
|
13750 | .toolbar-ios-danger .bar-button-clear-ios-danger.activated {
|
13751 | opacity: .4; }
|
13752 |
|
13753 | .toolbar-ios-danger .bar-button-outline-ios-danger {
|
13754 | border-color: #d91e18;
|
13755 | color: #d91e18;
|
13756 | background-color: transparent; }
|
13757 | .toolbar-ios-danger .bar-button-outline-ios-danger.activated {
|
13758 | color: #fff;
|
13759 | background-color: #d91e18; }
|
13760 |
|
13761 | .toolbar-ios-danger .bar-button-solid-ios-danger {
|
13762 | color: #fff;
|
13763 | background-color: #d91e18; }
|
13764 | .toolbar-ios-danger .bar-button-solid-ios-danger.activated {
|
13765 | color: #fff;
|
13766 | background-color: #dc302a; }
|
13767 |
|
13768 | .toolbar-ios-danger .bar-button-light-ios,
|
13769 | .toolbar-ios-danger .bar-button-default.bar-button-ios-light,
|
13770 | .toolbar-ios-danger .bar-button-clear-ios-light {
|
13771 | color: #f4f4f4;
|
13772 | background-color: transparent; }
|
13773 | .toolbar-ios-danger .bar-button-light-ios:hover:not(.disable-hover),
|
13774 | .toolbar-ios-danger .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
|
13775 | .toolbar-ios-danger .bar-button-clear-ios-light:hover:not(.disable-hover) {
|
13776 | color: #f4f4f4; }
|
13777 | .toolbar-ios-danger .bar-button-light-ios.activated,
|
13778 | .toolbar-ios-danger .bar-button-default.bar-button-ios-light.activated,
|
13779 | .toolbar-ios-danger .bar-button-clear-ios-light.activated {
|
13780 | opacity: .4; }
|
13781 |
|
13782 | .toolbar-ios-danger .bar-button-outline-ios-light {
|
13783 | border-color: #f4f4f4;
|
13784 | color: #f4f4f4;
|
13785 | background-color: transparent; }
|
13786 | .toolbar-ios-danger .bar-button-outline-ios-light.activated {
|
13787 | color: #000;
|
13788 | background-color: #f4f4f4; }
|
13789 |
|
13790 | .toolbar-ios-danger .bar-button-solid-ios-light {
|
13791 | color: #000;
|
13792 | background-color: #f4f4f4; }
|
13793 | .toolbar-ios-danger .bar-button-solid-ios-light.activated {
|
13794 | color: #000;
|
13795 | background-color: #e0e0e0; }
|
13796 |
|
13797 | .toolbar-ios-danger .bar-button-dark-ios,
|
13798 | .toolbar-ios-danger .bar-button-default.bar-button-ios-dark,
|
13799 | .toolbar-ios-danger .bar-button-clear-ios-dark {
|
13800 | color: #222;
|
13801 | background-color: transparent; }
|
13802 | .toolbar-ios-danger .bar-button-dark-ios:hover:not(.disable-hover),
|
13803 | .toolbar-ios-danger .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
|
13804 | .toolbar-ios-danger .bar-button-clear-ios-dark:hover:not(.disable-hover) {
|
13805 | color: #222; }
|
13806 | .toolbar-ios-danger .bar-button-dark-ios.activated,
|
13807 | .toolbar-ios-danger .bar-button-default.bar-button-ios-dark.activated,
|
13808 | .toolbar-ios-danger .bar-button-clear-ios-dark.activated {
|
13809 | opacity: .4; }
|
13810 |
|
13811 | .toolbar-ios-danger .bar-button-outline-ios-dark {
|
13812 | border-color: #222;
|
13813 | color: #222;
|
13814 | background-color: transparent; }
|
13815 | .toolbar-ios-danger .bar-button-outline-ios-dark.activated {
|
13816 | color: #fff;
|
13817 | background-color: #222; }
|
13818 |
|
13819 | .toolbar-ios-danger .bar-button-solid-ios-dark {
|
13820 | color: #fff;
|
13821 | background-color: #222; }
|
13822 | .toolbar-ios-danger .bar-button-solid-ios-dark.activated {
|
13823 | color: #fff;
|
13824 | background-color: #343434; }
|
13825 |
|
13826 | .bar-button-danger-ios,
|
13827 | .bar-button-default.bar-button-ios-danger,
|
13828 | .bar-button-clear-ios-danger {
|
13829 | color: #d91e18;
|
13830 | background-color: transparent; }
|
13831 | .bar-button-danger-ios:hover:not(.disable-hover),
|
13832 | .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
|
13833 | .bar-button-clear-ios-danger:hover:not(.disable-hover) {
|
13834 | color: #d91e18; }
|
13835 | .bar-button-danger-ios.activated,
|
13836 | .bar-button-default.bar-button-ios-danger.activated,
|
13837 | .bar-button-clear-ios-danger.activated {
|
13838 | opacity: .4; }
|
13839 |
|
13840 | .bar-button-outline-ios-danger {
|
13841 | border-color: #d91e18;
|
13842 | color: #d91e18;
|
13843 | background-color: transparent; }
|
13844 | .bar-button-outline-ios-danger.activated {
|
13845 | color: #fff;
|
13846 | background-color: #d91e18; }
|
13847 |
|
13848 | .bar-button-solid-ios-danger {
|
13849 | color: #fff;
|
13850 | background-color: #d91e18; }
|
13851 | .bar-button-solid-ios-danger.activated {
|
13852 | color: #fff;
|
13853 | background-color: #dc302a; }
|
13854 |
|
13855 | .toolbar-ios-light .toolbar-background-ios {
|
13856 | background: #f4f4f4; }
|
13857 |
|
13858 | .toolbar-ios-light .toolbar-title-ios,
|
13859 | .toolbar-ios-light .bar-button-clear-ios,
|
13860 | .toolbar-ios-light .bar-button-default-ios {
|
13861 | color: #000; }
|
13862 |
|
13863 | .toolbar-ios-light .bar-button-primary-ios,
|
13864 | .toolbar-ios-light .bar-button-default.bar-button-ios-primary,
|
13865 | .toolbar-ios-light .bar-button-clear-ios-primary {
|
13866 | color: #007aff;
|
13867 | background-color: transparent; }
|
13868 | .toolbar-ios-light .bar-button-primary-ios:hover:not(.disable-hover),
|
13869 | .toolbar-ios-light .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
|
13870 | .toolbar-ios-light .bar-button-clear-ios-primary:hover:not(.disable-hover) {
|
13871 | color: #007aff; }
|
13872 | .toolbar-ios-light .bar-button-primary-ios.activated,
|
13873 | .toolbar-ios-light .bar-button-default.bar-button-ios-primary.activated,
|
13874 | .toolbar-ios-light .bar-button-clear-ios-primary.activated {
|
13875 | opacity: .4; }
|
13876 |
|
13877 | .toolbar-ios-light .bar-button-outline-ios-primary {
|
13878 | border-color: #007aff;
|
13879 | color: #007aff;
|
13880 | background-color: transparent; }
|
13881 | .toolbar-ios-light .bar-button-outline-ios-primary.activated {
|
13882 | color: #fff;
|
13883 | background-color: #007aff; }
|
13884 |
|
13885 | .toolbar-ios-light .bar-button-solid-ios-primary {
|
13886 | color: #fff;
|
13887 | background-color: #007aff; }
|
13888 | .toolbar-ios-light .bar-button-solid-ios-primary.activated {
|
13889 | color: #fff;
|
13890 | background-color: #1485ff; }
|
13891 |
|
13892 | .toolbar-ios-light .bar-button-secondary-ios,
|
13893 | .toolbar-ios-light .bar-button-default.bar-button-ios-secondary,
|
13894 | .toolbar-ios-light .bar-button-clear-ios-secondary {
|
13895 | color: #32db64;
|
13896 | background-color: transparent; }
|
13897 | .toolbar-ios-light .bar-button-secondary-ios:hover:not(.disable-hover),
|
13898 | .toolbar-ios-light .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
|
13899 | .toolbar-ios-light .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
|
13900 | color: #32db64; }
|
13901 | .toolbar-ios-light .bar-button-secondary-ios.activated,
|
13902 | .toolbar-ios-light .bar-button-default.bar-button-ios-secondary.activated,
|
13903 | .toolbar-ios-light .bar-button-clear-ios-secondary.activated {
|
13904 | opacity: .4; }
|
13905 |
|
13906 | .toolbar-ios-light .bar-button-outline-ios-secondary {
|
13907 | border-color: #32db64;
|
13908 | color: #32db64;
|
13909 | background-color: transparent; }
|
13910 | .toolbar-ios-light .bar-button-outline-ios-secondary.activated {
|
13911 | color: #fff;
|
13912 | background-color: #32db64; }
|
13913 |
|
13914 | .toolbar-ios-light .bar-button-solid-ios-secondary {
|
13915 | color: #fff;
|
13916 | background-color: #32db64; }
|
13917 | .toolbar-ios-light .bar-button-solid-ios-secondary.activated {
|
13918 | color: #fff;
|
13919 | background-color: #2ec95c; }
|
13920 |
|
13921 | .toolbar-ios-light .bar-button-danger-ios,
|
13922 | .toolbar-ios-light .bar-button-default.bar-button-ios-danger,
|
13923 | .toolbar-ios-light .bar-button-clear-ios-danger {
|
13924 | color: #d91e18;
|
13925 | background-color: transparent; }
|
13926 | .toolbar-ios-light .bar-button-danger-ios:hover:not(.disable-hover),
|
13927 | .toolbar-ios-light .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
|
13928 | .toolbar-ios-light .bar-button-clear-ios-danger:hover:not(.disable-hover) {
|
13929 | color: #d91e18; }
|
13930 | .toolbar-ios-light .bar-button-danger-ios.activated,
|
13931 | .toolbar-ios-light .bar-button-default.bar-button-ios-danger.activated,
|
13932 | .toolbar-ios-light .bar-button-clear-ios-danger.activated {
|
13933 | opacity: .4; }
|
13934 |
|
13935 | .toolbar-ios-light .bar-button-outline-ios-danger {
|
13936 | border-color: #d91e18;
|
13937 | color: #d91e18;
|
13938 | background-color: transparent; }
|
13939 | .toolbar-ios-light .bar-button-outline-ios-danger.activated {
|
13940 | color: #fff;
|
13941 | background-color: #d91e18; }
|
13942 |
|
13943 | .toolbar-ios-light .bar-button-solid-ios-danger {
|
13944 | color: #fff;
|
13945 | background-color: #d91e18; }
|
13946 | .toolbar-ios-light .bar-button-solid-ios-danger.activated {
|
13947 | color: #fff;
|
13948 | background-color: #dc302a; }
|
13949 |
|
13950 | .toolbar-ios-light .bar-button-light-ios,
|
13951 | .toolbar-ios-light .bar-button-default.bar-button-ios-light,
|
13952 | .toolbar-ios-light .bar-button-clear-ios-light {
|
13953 | color: #f4f4f4;
|
13954 | background-color: transparent; }
|
13955 | .toolbar-ios-light .bar-button-light-ios:hover:not(.disable-hover),
|
13956 | .toolbar-ios-light .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
|
13957 | .toolbar-ios-light .bar-button-clear-ios-light:hover:not(.disable-hover) {
|
13958 | color: #f4f4f4; }
|
13959 | .toolbar-ios-light .bar-button-light-ios.activated,
|
13960 | .toolbar-ios-light .bar-button-default.bar-button-ios-light.activated,
|
13961 | .toolbar-ios-light .bar-button-clear-ios-light.activated {
|
13962 | opacity: .4; }
|
13963 |
|
13964 | .toolbar-ios-light .bar-button-outline-ios-light {
|
13965 | border-color: #f4f4f4;
|
13966 | color: #f4f4f4;
|
13967 | background-color: transparent; }
|
13968 | .toolbar-ios-light .bar-button-outline-ios-light.activated {
|
13969 | color: #000;
|
13970 | background-color: #f4f4f4; }
|
13971 |
|
13972 | .toolbar-ios-light .bar-button-solid-ios-light {
|
13973 | color: #000;
|
13974 | background-color: #f4f4f4; }
|
13975 | .toolbar-ios-light .bar-button-solid-ios-light.activated {
|
13976 | color: #000;
|
13977 | background-color: #e0e0e0; }
|
13978 |
|
13979 | .toolbar-ios-light .bar-button-dark-ios,
|
13980 | .toolbar-ios-light .bar-button-default.bar-button-ios-dark,
|
13981 | .toolbar-ios-light .bar-button-clear-ios-dark {
|
13982 | color: #222;
|
13983 | background-color: transparent; }
|
13984 | .toolbar-ios-light .bar-button-dark-ios:hover:not(.disable-hover),
|
13985 | .toolbar-ios-light .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
|
13986 | .toolbar-ios-light .bar-button-clear-ios-dark:hover:not(.disable-hover) {
|
13987 | color: #222; }
|
13988 | .toolbar-ios-light .bar-button-dark-ios.activated,
|
13989 | .toolbar-ios-light .bar-button-default.bar-button-ios-dark.activated,
|
13990 | .toolbar-ios-light .bar-button-clear-ios-dark.activated {
|
13991 | opacity: .4; }
|
13992 |
|
13993 | .toolbar-ios-light .bar-button-outline-ios-dark {
|
13994 | border-color: #222;
|
13995 | color: #222;
|
13996 | background-color: transparent; }
|
13997 | .toolbar-ios-light .bar-button-outline-ios-dark.activated {
|
13998 | color: #fff;
|
13999 | background-color: #222; }
|
14000 |
|
14001 | .toolbar-ios-light .bar-button-solid-ios-dark {
|
14002 | color: #fff;
|
14003 | background-color: #222; }
|
14004 | .toolbar-ios-light .bar-button-solid-ios-dark.activated {
|
14005 | color: #fff;
|
14006 | background-color: #343434; }
|
14007 |
|
14008 | .bar-button-light-ios,
|
14009 | .bar-button-default.bar-button-ios-light,
|
14010 | .bar-button-clear-ios-light {
|
14011 | color: #f4f4f4;
|
14012 | background-color: transparent; }
|
14013 | .bar-button-light-ios:hover:not(.disable-hover),
|
14014 | .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
|
14015 | .bar-button-clear-ios-light:hover:not(.disable-hover) {
|
14016 | color: #f4f4f4; }
|
14017 | .bar-button-light-ios.activated,
|
14018 | .bar-button-default.bar-button-ios-light.activated,
|
14019 | .bar-button-clear-ios-light.activated {
|
14020 | opacity: .4; }
|
14021 |
|
14022 | .bar-button-outline-ios-light {
|
14023 | border-color: #f4f4f4;
|
14024 | color: #f4f4f4;
|
14025 | background-color: transparent; }
|
14026 | .bar-button-outline-ios-light.activated {
|
14027 | color: #000;
|
14028 | background-color: #f4f4f4; }
|
14029 |
|
14030 | .bar-button-solid-ios-light {
|
14031 | color: #000;
|
14032 | background-color: #f4f4f4; }
|
14033 | .bar-button-solid-ios-light.activated {
|
14034 | color: #000;
|
14035 | background-color: #e0e0e0; }
|
14036 |
|
14037 | .toolbar-ios-dark .toolbar-background-ios {
|
14038 | background: #222; }
|
14039 |
|
14040 | .toolbar-ios-dark .toolbar-title-ios,
|
14041 | .toolbar-ios-dark .bar-button-clear-ios,
|
14042 | .toolbar-ios-dark .bar-button-default-ios {
|
14043 | color: #fff; }
|
14044 |
|
14045 | .toolbar-ios-dark .bar-button-primary-ios,
|
14046 | .toolbar-ios-dark .bar-button-default.bar-button-ios-primary,
|
14047 | .toolbar-ios-dark .bar-button-clear-ios-primary {
|
14048 | color: #007aff;
|
14049 | background-color: transparent; }
|
14050 | .toolbar-ios-dark .bar-button-primary-ios:hover:not(.disable-hover),
|
14051 | .toolbar-ios-dark .bar-button-default.bar-button-ios-primary:hover:not(.disable-hover),
|
14052 | .toolbar-ios-dark .bar-button-clear-ios-primary:hover:not(.disable-hover) {
|
14053 | color: #007aff; }
|
14054 | .toolbar-ios-dark .bar-button-primary-ios.activated,
|
14055 | .toolbar-ios-dark .bar-button-default.bar-button-ios-primary.activated,
|
14056 | .toolbar-ios-dark .bar-button-clear-ios-primary.activated {
|
14057 | opacity: .4; }
|
14058 |
|
14059 | .toolbar-ios-dark .bar-button-outline-ios-primary {
|
14060 | border-color: #007aff;
|
14061 | color: #007aff;
|
14062 | background-color: transparent; }
|
14063 | .toolbar-ios-dark .bar-button-outline-ios-primary.activated {
|
14064 | color: #fff;
|
14065 | background-color: #007aff; }
|
14066 |
|
14067 | .toolbar-ios-dark .bar-button-solid-ios-primary {
|
14068 | color: #fff;
|
14069 | background-color: #007aff; }
|
14070 | .toolbar-ios-dark .bar-button-solid-ios-primary.activated {
|
14071 | color: #fff;
|
14072 | background-color: #1485ff; }
|
14073 |
|
14074 | .toolbar-ios-dark .bar-button-secondary-ios,
|
14075 | .toolbar-ios-dark .bar-button-default.bar-button-ios-secondary,
|
14076 | .toolbar-ios-dark .bar-button-clear-ios-secondary {
|
14077 | color: #32db64;
|
14078 | background-color: transparent; }
|
14079 | .toolbar-ios-dark .bar-button-secondary-ios:hover:not(.disable-hover),
|
14080 | .toolbar-ios-dark .bar-button-default.bar-button-ios-secondary:hover:not(.disable-hover),
|
14081 | .toolbar-ios-dark .bar-button-clear-ios-secondary:hover:not(.disable-hover) {
|
14082 | color: #32db64; }
|
14083 | .toolbar-ios-dark .bar-button-secondary-ios.activated,
|
14084 | .toolbar-ios-dark .bar-button-default.bar-button-ios-secondary.activated,
|
14085 | .toolbar-ios-dark .bar-button-clear-ios-secondary.activated {
|
14086 | opacity: .4; }
|
14087 |
|
14088 | .toolbar-ios-dark .bar-button-outline-ios-secondary {
|
14089 | border-color: #32db64;
|
14090 | color: #32db64;
|
14091 | background-color: transparent; }
|
14092 | .toolbar-ios-dark .bar-button-outline-ios-secondary.activated {
|
14093 | color: #fff;
|
14094 | background-color: #32db64; }
|
14095 |
|
14096 | .toolbar-ios-dark .bar-button-solid-ios-secondary {
|
14097 | color: #fff;
|
14098 | background-color: #32db64; }
|
14099 | .toolbar-ios-dark .bar-button-solid-ios-secondary.activated {
|
14100 | color: #fff;
|
14101 | background-color: #2ec95c; }
|
14102 |
|
14103 | .toolbar-ios-dark .bar-button-danger-ios,
|
14104 | .toolbar-ios-dark .bar-button-default.bar-button-ios-danger,
|
14105 | .toolbar-ios-dark .bar-button-clear-ios-danger {
|
14106 | color: #d91e18;
|
14107 | background-color: transparent; }
|
14108 | .toolbar-ios-dark .bar-button-danger-ios:hover:not(.disable-hover),
|
14109 | .toolbar-ios-dark .bar-button-default.bar-button-ios-danger:hover:not(.disable-hover),
|
14110 | .toolbar-ios-dark .bar-button-clear-ios-danger:hover:not(.disable-hover) {
|
14111 | color: #d91e18; }
|
14112 | .toolbar-ios-dark .bar-button-danger-ios.activated,
|
14113 | .toolbar-ios-dark .bar-button-default.bar-button-ios-danger.activated,
|
14114 | .toolbar-ios-dark .bar-button-clear-ios-danger.activated {
|
14115 | opacity: .4; }
|
14116 |
|
14117 | .toolbar-ios-dark .bar-button-outline-ios-danger {
|
14118 | border-color: #d91e18;
|
14119 | color: #d91e18;
|
14120 | background-color: transparent; }
|
14121 | .toolbar-ios-dark .bar-button-outline-ios-danger.activated {
|
14122 | color: #fff;
|
14123 | background-color: #d91e18; }
|
14124 |
|
14125 | .toolbar-ios-dark .bar-button-solid-ios-danger {
|
14126 | color: #fff;
|
14127 | background-color: #d91e18; }
|
14128 | .toolbar-ios-dark .bar-button-solid-ios-danger.activated {
|
14129 | color: #fff;
|
14130 | background-color: #dc302a; }
|
14131 |
|
14132 | .toolbar-ios-dark .bar-button-light-ios,
|
14133 | .toolbar-ios-dark .bar-button-default.bar-button-ios-light,
|
14134 | .toolbar-ios-dark .bar-button-clear-ios-light {
|
14135 | color: #f4f4f4;
|
14136 | background-color: transparent; }
|
14137 | .toolbar-ios-dark .bar-button-light-ios:hover:not(.disable-hover),
|
14138 | .toolbar-ios-dark .bar-button-default.bar-button-ios-light:hover:not(.disable-hover),
|
14139 | .toolbar-ios-dark .bar-button-clear-ios-light:hover:not(.disable-hover) {
|
14140 | color: #f4f4f4; }
|
14141 | .toolbar-ios-dark .bar-button-light-ios.activated,
|
14142 | .toolbar-ios-dark .bar-button-default.bar-button-ios-light.activated,
|
14143 | .toolbar-ios-dark .bar-button-clear-ios-light.activated {
|
14144 | opacity: .4; }
|
14145 |
|
14146 | .toolbar-ios-dark .bar-button-outline-ios-light {
|
14147 | border-color: #f4f4f4;
|
14148 | color: #f4f4f4;
|
14149 | background-color: transparent; }
|
14150 | .toolbar-ios-dark .bar-button-outline-ios-light.activated {
|
14151 | color: #000;
|
14152 | background-color: #f4f4f4; }
|
14153 |
|
14154 | .toolbar-ios-dark .bar-button-solid-ios-light {
|
14155 | color: #000;
|
14156 | background-color: #f4f4f4; }
|
14157 | .toolbar-ios-dark .bar-button-solid-ios-light.activated {
|
14158 | color: #000;
|
14159 | background-color: #e0e0e0; }
|
14160 |
|
14161 | .toolbar-ios-dark .bar-button-dark-ios,
|
14162 | .toolbar-ios-dark .bar-button-default.bar-button-ios-dark,
|
14163 | .toolbar-ios-dark .bar-button-clear-ios-dark {
|
14164 | color: #222;
|
14165 | background-color: transparent; }
|
14166 | .toolbar-ios-dark .bar-button-dark-ios:hover:not(.disable-hover),
|
14167 | .toolbar-ios-dark .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
|
14168 | .toolbar-ios-dark .bar-button-clear-ios-dark:hover:not(.disable-hover) {
|
14169 | color: #222; }
|
14170 | .toolbar-ios-dark .bar-button-dark-ios.activated,
|
14171 | .toolbar-ios-dark .bar-button-default.bar-button-ios-dark.activated,
|
14172 | .toolbar-ios-dark .bar-button-clear-ios-dark.activated {
|
14173 | opacity: .4; }
|
14174 |
|
14175 | .toolbar-ios-dark .bar-button-outline-ios-dark {
|
14176 | border-color: #222;
|
14177 | color: #222;
|
14178 | background-color: transparent; }
|
14179 | .toolbar-ios-dark .bar-button-outline-ios-dark.activated {
|
14180 | color: #fff;
|
14181 | background-color: #222; }
|
14182 |
|
14183 | .toolbar-ios-dark .bar-button-solid-ios-dark {
|
14184 | color: #fff;
|
14185 | background-color: #222; }
|
14186 | .toolbar-ios-dark .bar-button-solid-ios-dark.activated {
|
14187 | color: #fff;
|
14188 | background-color: #343434; }
|
14189 |
|
14190 | .bar-button-dark-ios,
|
14191 | .bar-button-default.bar-button-ios-dark,
|
14192 | .bar-button-clear-ios-dark {
|
14193 | color: #222;
|
14194 | background-color: transparent; }
|
14195 | .bar-button-dark-ios:hover:not(.disable-hover),
|
14196 | .bar-button-default.bar-button-ios-dark:hover:not(.disable-hover),
|
14197 | .bar-button-clear-ios-dark:hover:not(.disable-hover) {
|
14198 | color: #222; }
|
14199 | .bar-button-dark-ios.activated,
|
14200 | .bar-button-default.bar-button-ios-dark.activated,
|
14201 | .bar-button-clear-ios-dark.activated {
|
14202 | opacity: .4; }
|
14203 |
|
14204 | .bar-button-outline-ios-dark {
|
14205 | border-color: #222;
|
14206 | color: #222;
|
14207 | background-color: transparent; }
|
14208 | .bar-button-outline-ios-dark.activated {
|
14209 | color: #fff;
|
14210 | background-color: #222; }
|
14211 |
|
14212 | .bar-button-solid-ios-dark {
|
14213 | color: #fff;
|
14214 | background-color: #222; }
|
14215 | .bar-button-solid-ios-dark.activated {
|
14216 | color: #fff;
|
14217 | background-color: #343434; }
|
14218 |
|
14219 | .bar-button-strong-ios {
|
14220 | font-weight: 600; }
|
14221 |
|
14222 | .toolbar-md {
|
14223 | padding: 4px;
|
14224 | min-height: 56px; }
|
14225 |
|
14226 | .toolbar-background-md {
|
14227 | border-color: #222;
|
14228 | background: #151515; }
|
14229 |
|
14230 | .header-md::after,
|
14231 | .tabs-md[tabsPlacement="top"] > .tabbar::after,
|
14232 | .footer-md::before,
|
14233 | .tabs-md[tabsPlacement="bottom"] > .tabbar::before {
|
14234 | left: 0;
|
14235 | bottom: -5px;
|
14236 | background-position: left 0 top -2px;
|
14237 | position: absolute;
|
14238 | width: 100%;
|
14239 | height: 5px;
|
14240 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAHBAMAAADzDtBxAAAAD1BMVEUAAAAAAAAAAAAAAAAAAABPDueNAAAABXRSTlMUCS0gBIh/TXEAAAAaSURBVAjXYxCEAgY4UIICBmMogMsgFLtAAQCNSwXZKOdPxgAAAABJRU5ErkJggg==);
|
14241 | background-repeat: repeat-x;
|
14242 | content: ""; }
|
14243 |
|
14244 | .footer-md::before,
|
14245 | .tabs-md[tabsPlacement="bottom"] > .tabbar::before {
|
14246 | top: -2px;
|
14247 | bottom: auto;
|
14248 | background-position: left 0 top 0;
|
14249 | height: 2px; }
|
14250 |
|
14251 | .header-md[no-border]::after,
|
14252 | .footer-md[no-border]::before,
|
14253 | .tabs-md[tabsPlacement="top"][no-border] > .tabbar::after,
|
14254 | .tabs-md[tabsPlacement="bottom"][no-border] > .tabbar::before {
|
14255 | display: none; }
|
14256 |
|
14257 | .toolbar-content-md {
|
14258 | -webkit-flex: 1;
|
14259 | -ms-flex: 1;
|
14260 | flex: 1;
|
14261 | -webkit-order: 3;
|
14262 | -ms-flex-order: 3;
|
14263 | order: 3;
|
14264 | min-width: 0;
|
14265 | max-width: 100%; }
|
14266 |
|
14267 | .toolbar-title-md {
|
14268 | padding: 0 12px;
|
14269 | font-size: 2rem;
|
14270 | font-weight: 500;
|
14271 | color: #fff; }
|
14272 |
|
14273 | .bar-buttons-md {
|
14274 | -webkit-order: 4;
|
14275 | -ms-flex-order: 4;
|
14276 | order: 4;
|
14277 | -webkit-transform: translateZ(0);
|
14278 | transform: translateZ(0); }
|
14279 |
|
14280 | .bar-buttons-md[left] {
|
14281 | -webkit-order: 2;
|
14282 | -ms-flex-order: 2;
|
14283 | order: 2; }
|
14284 |
|
14285 | .bar-button-md:first-child {
|
14286 | margin-left: 0; }
|
14287 |
|
14288 | .bar-buttons-md[end] {
|
14289 | text-align: right;
|
14290 | text-align: end;
|
14291 | -webkit-order: 5;
|
14292 | -ms-flex-order: 5;
|
14293 | order: 5; }
|
14294 |
|
14295 | .bar-buttons-md[right] {
|
14296 | text-align: right;
|
14297 | -webkit-order: 6;
|
14298 | -ms-flex-order: 6;
|
14299 | order: 6; }
|
14300 |
|
14301 | .bar-button-md {
|
14302 | margin: 0 0.2rem;
|
14303 | padding: 0 5px;
|
14304 | border-radius: 2px;
|
14305 | height: 32px;
|
14306 | border: 0;
|
14307 | font-size: 1.4rem;
|
14308 | font-weight: 500;
|
14309 | text-transform: uppercase; }
|
14310 |
|
14311 | .bar-button-solid-md,
|
14312 | .bar-button-outline-md {
|
14313 | overflow: hidden; }
|
14314 |
|
14315 | .bar-button-outline-md {
|
14316 | border-width: 1px;
|
14317 | border-style: solid;
|
14318 | border-color: #fff;
|
14319 | color: #fff;
|
14320 | background-color: transparent; }
|
14321 | .bar-button-outline-md:hover:not(.disable-hover) {
|
14322 | opacity: .4; }
|
14323 | .bar-button-outline-md.activated {
|
14324 | background-color: transparent; }
|
14325 | .bar-button-outline-md .button-effect {
|
14326 | background-color: #fff; }
|
14327 |
|
14328 | .bar-button-solid-md {
|
14329 | color: #424242;
|
14330 | background-color: #fff; }
|
14331 | .bar-button-solid-md:hover:not(.disable-hover) {
|
14332 | color: #424242; }
|
14333 | .bar-button-solid-md.activated {
|
14334 | color: #424242;
|
14335 | background-color: #ebebeb; }
|
14336 |
|
14337 | .bar-button-md.bar-button-icon-start ion-icon {
|
14338 | padding-right: 0.3em;
|
14339 | font-size: 1.4em;
|
14340 | line-height: .67;
|
14341 | pointer-events: none; }
|
14342 |
|
14343 | .bar-button-md.bar-button-icon-end ion-icon {
|
14344 | padding-left: 0.4em;
|
14345 | font-size: 1.4em;
|
14346 | line-height: .67;
|
14347 | pointer-events: none; }
|
14348 |
|
14349 | .bar-button-md[icon-only] {
|
14350 | padding: 0; }
|
14351 |
|
14352 | .bar-button-md[icon-only] ion-icon {
|
14353 | padding: 0 0.1em;
|
14354 | min-width: 28px;
|
14355 | font-size: 1.8em;
|
14356 | line-height: .67;
|
14357 | pointer-events: none; }
|
14358 |
|
14359 | .back-button-md {
|
14360 | margin: 0 6px;
|
14361 | min-width: 44px;
|
14362 | box-shadow: none; }
|
14363 |
|
14364 | .back-button-icon-md {
|
14365 | margin: 0;
|
14366 | padding: 0 6px;
|
14367 | text-align: left;
|
14368 | text-align: start;
|
14369 | font-size: 2.4rem;
|
14370 | font-weight: normal; }
|
14371 |
|
14372 | .bar-button-menutoggle-md {
|
14373 | margin: 0 6px;
|
14374 | padding: 0 2px;
|
14375 | -webkit-order: 1;
|
14376 | -ms-flex-order: 1;
|
14377 | order: 1;
|
14378 | min-width: 44px; }
|
14379 |
|
14380 | .bar-button-menutoggle-md ion-icon {
|
14381 | padding: 0 6px;
|
14382 | font-size: 2.4rem; }
|
14383 |
|
14384 | .bar-button-menutoggle-md[end],
|
14385 | .bar-button-menutoggle-md[right] {
|
14386 | margin: 0 2px;
|
14387 | -webkit-order: 7;
|
14388 | -ms-flex-order: 7;
|
14389 | order: 7;
|
14390 | min-width: 28px; }
|
14391 |
|
14392 | .bar-button-default-md,
|
14393 | .bar-button-clear-md-default,
|
14394 | .bar-button-md-default {
|
14395 | color: #fff;
|
14396 | background-color: transparent; }
|
14397 | .bar-button-default-md:hover:not(.disable-hover),
|
14398 | .bar-button-clear-md-default:hover:not(.disable-hover),
|
14399 | .bar-button-md-default:hover:not(.disable-hover) {
|
14400 | color: #fff; }
|
14401 |
|
14402 | .bar-button-clear-md,
|
14403 | .bar-button-clear-md-clear,
|
14404 | .bar-button-md-clear {
|
14405 | color: #fff;
|
14406 | background-color: transparent; }
|
14407 | .bar-button-clear-md:hover:not(.disable-hover),
|
14408 | .bar-button-clear-md-clear:hover:not(.disable-hover),
|
14409 | .bar-button-md-clear:hover:not(.disable-hover) {
|
14410 | color: #fff; }
|
14411 |
|
14412 | .toolbar-md-primary .toolbar-background-md {
|
14413 | background: #007aff; }
|
14414 |
|
14415 | .toolbar-md-primary .bar-button-clear-md,
|
14416 | .toolbar-md-primary .bar-button-default-md,
|
14417 | .toolbar-md-primary .bar-button-outline-md,
|
14418 | .toolbar-md-primary .toolbar-title-md {
|
14419 | color: #fff; }
|
14420 |
|
14421 | .toolbar-md-primary .bar-button-clear-md .button-effect,
|
14422 | .toolbar-md-primary .bar-button-default-md .button-effect,
|
14423 | .toolbar-md-primary .bar-button-outline-md .button-effect {
|
14424 | background-color: #fff; }
|
14425 |
|
14426 | .toolbar-md-primary .bar-button-outline-md {
|
14427 | border-color: #fff; }
|
14428 |
|
14429 | .toolbar-md-primary .bar-button-primary-md,
|
14430 | .toolbar-md-primary .bar-button-clear-md-primary,
|
14431 | .toolbar-md-primary .bar-button-md-primary {
|
14432 | color: #007aff;
|
14433 | background-color: transparent; }
|
14434 | .toolbar-md-primary .bar-button-primary-md:hover:not(.disable-hover),
|
14435 | .toolbar-md-primary .bar-button-clear-md-primary:hover:not(.disable-hover),
|
14436 | .toolbar-md-primary .bar-button-md-primary:hover:not(.disable-hover) {
|
14437 | color: #007aff; }
|
14438 |
|
14439 | .toolbar-md-primary .bar-button-outline-md-primary {
|
14440 | border-color: #1485ff;
|
14441 | color: #1485ff;
|
14442 | background-color: transparent; }
|
14443 | .toolbar-md-primary .bar-button-outline-md-primary.activated {
|
14444 | background-color: transparent; }
|
14445 | .toolbar-md-primary .bar-button-outline-md-primary .button-effect {
|
14446 | background-color: #1485ff; }
|
14447 |
|
14448 | .toolbar-md-primary .bar-button-solid-md-primary {
|
14449 | color: #fff;
|
14450 | background-color: #007aff; }
|
14451 | .toolbar-md-primary .bar-button-solid-md-primary.activated {
|
14452 | color: #fff;
|
14453 | background-color: #1485ff; }
|
14454 |
|
14455 | .toolbar-md-primary .bar-button-secondary-md,
|
14456 | .toolbar-md-primary .bar-button-clear-md-secondary,
|
14457 | .toolbar-md-primary .bar-button-md-secondary {
|
14458 | color: #32db64;
|
14459 | background-color: transparent; }
|
14460 | .toolbar-md-primary .bar-button-secondary-md:hover:not(.disable-hover),
|
14461 | .toolbar-md-primary .bar-button-clear-md-secondary:hover:not(.disable-hover),
|
14462 | .toolbar-md-primary .bar-button-md-secondary:hover:not(.disable-hover) {
|
14463 | color: #32db64; }
|
14464 |
|
14465 | .toolbar-md-primary .bar-button-outline-md-secondary {
|
14466 | border-color: #2ec95c;
|
14467 | color: #2ec95c;
|
14468 | background-color: transparent; }
|
14469 | .toolbar-md-primary .bar-button-outline-md-secondary.activated {
|
14470 | background-color: transparent; }
|
14471 | .toolbar-md-primary .bar-button-outline-md-secondary .button-effect {
|
14472 | background-color: #2ec95c; }
|
14473 |
|
14474 | .toolbar-md-primary .bar-button-solid-md-secondary {
|
14475 | color: #fff;
|
14476 | background-color: #32db64; }
|
14477 | .toolbar-md-primary .bar-button-solid-md-secondary.activated {
|
14478 | color: #fff;
|
14479 | background-color: #2ec95c; }
|
14480 |
|
14481 | .toolbar-md-primary .bar-button-danger-md,
|
14482 | .toolbar-md-primary .bar-button-clear-md-danger,
|
14483 | .toolbar-md-primary .bar-button-md-danger {
|
14484 | color: #d91e18;
|
14485 | background-color: transparent; }
|
14486 | .toolbar-md-primary .bar-button-danger-md:hover:not(.disable-hover),
|
14487 | .toolbar-md-primary .bar-button-clear-md-danger:hover:not(.disable-hover),
|
14488 | .toolbar-md-primary .bar-button-md-danger:hover:not(.disable-hover) {
|
14489 | color: #d91e18; }
|
14490 |
|
14491 | .toolbar-md-primary .bar-button-outline-md-danger {
|
14492 | border-color: #dc302a;
|
14493 | color: #dc302a;
|
14494 | background-color: transparent; }
|
14495 | .toolbar-md-primary .bar-button-outline-md-danger.activated {
|
14496 | background-color: transparent; }
|
14497 | .toolbar-md-primary .bar-button-outline-md-danger .button-effect {
|
14498 | background-color: #dc302a; }
|
14499 |
|
14500 | .toolbar-md-primary .bar-button-solid-md-danger {
|
14501 | color: #fff;
|
14502 | background-color: #d91e18; }
|
14503 | .toolbar-md-primary .bar-button-solid-md-danger.activated {
|
14504 | color: #fff;
|
14505 | background-color: #dc302a; }
|
14506 |
|
14507 | .toolbar-md-primary .bar-button-light-md,
|
14508 | .toolbar-md-primary .bar-button-clear-md-light,
|
14509 | .toolbar-md-primary .bar-button-md-light {
|
14510 | color: #f4f4f4;
|
14511 | background-color: transparent; }
|
14512 | .toolbar-md-primary .bar-button-light-md:hover:not(.disable-hover),
|
14513 | .toolbar-md-primary .bar-button-clear-md-light:hover:not(.disable-hover),
|
14514 | .toolbar-md-primary .bar-button-md-light:hover:not(.disable-hover) {
|
14515 | color: #f4f4f4; }
|
14516 |
|
14517 | .toolbar-md-primary .bar-button-outline-md-light {
|
14518 | border-color: #e0e0e0;
|
14519 | color: #e0e0e0;
|
14520 | background-color: transparent; }
|
14521 | .toolbar-md-primary .bar-button-outline-md-light.activated {
|
14522 | background-color: transparent; }
|
14523 | .toolbar-md-primary .bar-button-outline-md-light .button-effect {
|
14524 | background-color: #e0e0e0; }
|
14525 |
|
14526 | .toolbar-md-primary .bar-button-solid-md-light {
|
14527 | color: #424242;
|
14528 | background-color: #f4f4f4; }
|
14529 | .toolbar-md-primary .bar-button-solid-md-light.activated {
|
14530 | color: #424242;
|
14531 | background-color: #e0e0e0; }
|
14532 |
|
14533 | .toolbar-md-primary .bar-button-dark-md,
|
14534 | .toolbar-md-primary .bar-button-clear-md-dark,
|
14535 | .toolbar-md-primary .bar-button-md-dark {
|
14536 | color: #222;
|
14537 | background-color: transparent; }
|
14538 | .toolbar-md-primary .bar-button-dark-md:hover:not(.disable-hover),
|
14539 | .toolbar-md-primary .bar-button-clear-md-dark:hover:not(.disable-hover),
|
14540 | .toolbar-md-primary .bar-button-md-dark:hover:not(.disable-hover) {
|
14541 | color: #222; }
|
14542 |
|
14543 | .toolbar-md-primary .bar-button-outline-md-dark {
|
14544 | border-color: #343434;
|
14545 | color: #343434;
|
14546 | background-color: transparent; }
|
14547 | .toolbar-md-primary .bar-button-outline-md-dark.activated {
|
14548 | background-color: transparent; }
|
14549 | .toolbar-md-primary .bar-button-outline-md-dark .button-effect {
|
14550 | background-color: #343434; }
|
14551 |
|
14552 | .toolbar-md-primary .bar-button-solid-md-dark {
|
14553 | color: #fff;
|
14554 | background-color: #222; }
|
14555 | .toolbar-md-primary .bar-button-solid-md-dark.activated {
|
14556 | color: #fff;
|
14557 | background-color: #343434; }
|
14558 |
|
14559 | .bar-button-primary-md,
|
14560 | .bar-button-clear-md-primary,
|
14561 | .bar-button-md-primary {
|
14562 | color: #007aff;
|
14563 | background-color: transparent; }
|
14564 | .bar-button-primary-md:hover:not(.disable-hover),
|
14565 | .bar-button-clear-md-primary:hover:not(.disable-hover),
|
14566 | .bar-button-md-primary:hover:not(.disable-hover) {
|
14567 | color: #007aff; }
|
14568 |
|
14569 | .bar-button-outline-md-primary {
|
14570 | border-color: #1485ff;
|
14571 | color: #1485ff;
|
14572 | background-color: transparent; }
|
14573 | .bar-button-outline-md-primary.activated {
|
14574 | background-color: transparent; }
|
14575 | .bar-button-outline-md-primary .button-effect {
|
14576 | background-color: #1485ff; }
|
14577 |
|
14578 | .bar-button-solid-md-primary {
|
14579 | color: #fff;
|
14580 | background-color: #007aff; }
|
14581 | .bar-button-solid-md-primary.activated {
|
14582 | color: #fff;
|
14583 | background-color: #1485ff; }
|
14584 |
|
14585 | .toolbar-md-secondary .toolbar-background-md {
|
14586 | background: #32db64; }
|
14587 |
|
14588 | .toolbar-md-secondary .bar-button-clear-md,
|
14589 | .toolbar-md-secondary .bar-button-default-md,
|
14590 | .toolbar-md-secondary .bar-button-outline-md,
|
14591 | .toolbar-md-secondary .toolbar-title-md {
|
14592 | color: #fff; }
|
14593 |
|
14594 | .toolbar-md-secondary .bar-button-clear-md .button-effect,
|
14595 | .toolbar-md-secondary .bar-button-default-md .button-effect,
|
14596 | .toolbar-md-secondary .bar-button-outline-md .button-effect {
|
14597 | background-color: #fff; }
|
14598 |
|
14599 | .toolbar-md-secondary .bar-button-outline-md {
|
14600 | border-color: #fff; }
|
14601 |
|
14602 | .toolbar-md-secondary .bar-button-primary-md,
|
14603 | .toolbar-md-secondary .bar-button-clear-md-primary,
|
14604 | .toolbar-md-secondary .bar-button-md-primary {
|
14605 | color: #007aff;
|
14606 | background-color: transparent; }
|
14607 | .toolbar-md-secondary .bar-button-primary-md:hover:not(.disable-hover),
|
14608 | .toolbar-md-secondary .bar-button-clear-md-primary:hover:not(.disable-hover),
|
14609 | .toolbar-md-secondary .bar-button-md-primary:hover:not(.disable-hover) {
|
14610 | color: #007aff; }
|
14611 |
|
14612 | .toolbar-md-secondary .bar-button-outline-md-primary {
|
14613 | border-color: #1485ff;
|
14614 | color: #1485ff;
|
14615 | background-color: transparent; }
|
14616 | .toolbar-md-secondary .bar-button-outline-md-primary.activated {
|
14617 | background-color: transparent; }
|
14618 | .toolbar-md-secondary .bar-button-outline-md-primary .button-effect {
|
14619 | background-color: #1485ff; }
|
14620 |
|
14621 | .toolbar-md-secondary .bar-button-solid-md-primary {
|
14622 | color: #fff;
|
14623 | background-color: #007aff; }
|
14624 | .toolbar-md-secondary .bar-button-solid-md-primary.activated {
|
14625 | color: #fff;
|
14626 | background-color: #1485ff; }
|
14627 |
|
14628 | .toolbar-md-secondary .bar-button-secondary-md,
|
14629 | .toolbar-md-secondary .bar-button-clear-md-secondary,
|
14630 | .toolbar-md-secondary .bar-button-md-secondary {
|
14631 | color: #32db64;
|
14632 | background-color: transparent; }
|
14633 | .toolbar-md-secondary .bar-button-secondary-md:hover:not(.disable-hover),
|
14634 | .toolbar-md-secondary .bar-button-clear-md-secondary:hover:not(.disable-hover),
|
14635 | .toolbar-md-secondary .bar-button-md-secondary:hover:not(.disable-hover) {
|
14636 | color: #32db64; }
|
14637 |
|
14638 | .toolbar-md-secondary .bar-button-outline-md-secondary {
|
14639 | border-color: #2ec95c;
|
14640 | color: #2ec95c;
|
14641 | background-color: transparent; }
|
14642 | .toolbar-md-secondary .bar-button-outline-md-secondary.activated {
|
14643 | background-color: transparent; }
|
14644 | .toolbar-md-secondary .bar-button-outline-md-secondary .button-effect {
|
14645 | background-color: #2ec95c; }
|
14646 |
|
14647 | .toolbar-md-secondary .bar-button-solid-md-secondary {
|
14648 | color: #fff;
|
14649 | background-color: #32db64; }
|
14650 | .toolbar-md-secondary .bar-button-solid-md-secondary.activated {
|
14651 | color: #fff;
|
14652 | background-color: #2ec95c; }
|
14653 |
|
14654 | .toolbar-md-secondary .bar-button-danger-md,
|
14655 | .toolbar-md-secondary .bar-button-clear-md-danger,
|
14656 | .toolbar-md-secondary .bar-button-md-danger {
|
14657 | color: #d91e18;
|
14658 | background-color: transparent; }
|
14659 | .toolbar-md-secondary .bar-button-danger-md:hover:not(.disable-hover),
|
14660 | .toolbar-md-secondary .bar-button-clear-md-danger:hover:not(.disable-hover),
|
14661 | .toolbar-md-secondary .bar-button-md-danger:hover:not(.disable-hover) {
|
14662 | color: #d91e18; }
|
14663 |
|
14664 | .toolbar-md-secondary .bar-button-outline-md-danger {
|
14665 | border-color: #dc302a;
|
14666 | color: #dc302a;
|
14667 | background-color: transparent; }
|
14668 | .toolbar-md-secondary .bar-button-outline-md-danger.activated {
|
14669 | background-color: transparent; }
|
14670 | .toolbar-md-secondary .bar-button-outline-md-danger .button-effect {
|
14671 | background-color: #dc302a; }
|
14672 |
|
14673 | .toolbar-md-secondary .bar-button-solid-md-danger {
|
14674 | color: #fff;
|
14675 | background-color: #d91e18; }
|
14676 | .toolbar-md-secondary .bar-button-solid-md-danger.activated {
|
14677 | color: #fff;
|
14678 | background-color: #dc302a; }
|
14679 |
|
14680 | .toolbar-md-secondary .bar-button-light-md,
|
14681 | .toolbar-md-secondary .bar-button-clear-md-light,
|
14682 | .toolbar-md-secondary .bar-button-md-light {
|
14683 | color: #f4f4f4;
|
14684 | background-color: transparent; }
|
14685 | .toolbar-md-secondary .bar-button-light-md:hover:not(.disable-hover),
|
14686 | .toolbar-md-secondary .bar-button-clear-md-light:hover:not(.disable-hover),
|
14687 | .toolbar-md-secondary .bar-button-md-light:hover:not(.disable-hover) {
|
14688 | color: #f4f4f4; }
|
14689 |
|
14690 | .toolbar-md-secondary .bar-button-outline-md-light {
|
14691 | border-color: #e0e0e0;
|
14692 | color: #e0e0e0;
|
14693 | background-color: transparent; }
|
14694 | .toolbar-md-secondary .bar-button-outline-md-light.activated {
|
14695 | background-color: transparent; }
|
14696 | .toolbar-md-secondary .bar-button-outline-md-light .button-effect {
|
14697 | background-color: #e0e0e0; }
|
14698 |
|
14699 | .toolbar-md-secondary .bar-button-solid-md-light {
|
14700 | color: #424242;
|
14701 | background-color: #f4f4f4; }
|
14702 | .toolbar-md-secondary .bar-button-solid-md-light.activated {
|
14703 | color: #424242;
|
14704 | background-color: #e0e0e0; }
|
14705 |
|
14706 | .toolbar-md-secondary .bar-button-dark-md,
|
14707 | .toolbar-md-secondary .bar-button-clear-md-dark,
|
14708 | .toolbar-md-secondary .bar-button-md-dark {
|
14709 | color: #222;
|
14710 | background-color: transparent; }
|
14711 | .toolbar-md-secondary .bar-button-dark-md:hover:not(.disable-hover),
|
14712 | .toolbar-md-secondary .bar-button-clear-md-dark:hover:not(.disable-hover),
|
14713 | .toolbar-md-secondary .bar-button-md-dark:hover:not(.disable-hover) {
|
14714 | color: #222; }
|
14715 |
|
14716 | .toolbar-md-secondary .bar-button-outline-md-dark {
|
14717 | border-color: #343434;
|
14718 | color: #343434;
|
14719 | background-color: transparent; }
|
14720 | .toolbar-md-secondary .bar-button-outline-md-dark.activated {
|
14721 | background-color: transparent; }
|
14722 | .toolbar-md-secondary .bar-button-outline-md-dark .button-effect {
|
14723 | background-color: #343434; }
|
14724 |
|
14725 | .toolbar-md-secondary .bar-button-solid-md-dark {
|
14726 | color: #fff;
|
14727 | background-color: #222; }
|
14728 | .toolbar-md-secondary .bar-button-solid-md-dark.activated {
|
14729 | color: #fff;
|
14730 | background-color: #343434; }
|
14731 |
|
14732 | .bar-button-secondary-md,
|
14733 | .bar-button-clear-md-secondary,
|
14734 | .bar-button-md-secondary {
|
14735 | color: #32db64;
|
14736 | background-color: transparent; }
|
14737 | .bar-button-secondary-md:hover:not(.disable-hover),
|
14738 | .bar-button-clear-md-secondary:hover:not(.disable-hover),
|
14739 | .bar-button-md-secondary:hover:not(.disable-hover) {
|
14740 | color: #32db64; }
|
14741 |
|
14742 | .bar-button-outline-md-secondary {
|
14743 | border-color: #2ec95c;
|
14744 | color: #2ec95c;
|
14745 | background-color: transparent; }
|
14746 | .bar-button-outline-md-secondary.activated {
|
14747 | background-color: transparent; }
|
14748 | .bar-button-outline-md-secondary .button-effect {
|
14749 | background-color: #2ec95c; }
|
14750 |
|
14751 | .bar-button-solid-md-secondary {
|
14752 | color: #fff;
|
14753 | background-color: #32db64; }
|
14754 | .bar-button-solid-md-secondary.activated {
|
14755 | color: #fff;
|
14756 | background-color: #2ec95c; }
|
14757 |
|
14758 | .toolbar-md-danger .toolbar-background-md {
|
14759 | background: #d91e18; }
|
14760 |
|
14761 | .toolbar-md-danger .bar-button-clear-md,
|
14762 | .toolbar-md-danger .bar-button-default-md,
|
14763 | .toolbar-md-danger .bar-button-outline-md,
|
14764 | .toolbar-md-danger .toolbar-title-md {
|
14765 | color: #fff; }
|
14766 |
|
14767 | .toolbar-md-danger .bar-button-clear-md .button-effect,
|
14768 | .toolbar-md-danger .bar-button-default-md .button-effect,
|
14769 | .toolbar-md-danger .bar-button-outline-md .button-effect {
|
14770 | background-color: #fff; }
|
14771 |
|
14772 | .toolbar-md-danger .bar-button-outline-md {
|
14773 | border-color: #fff; }
|
14774 |
|
14775 | .toolbar-md-danger .bar-button-primary-md,
|
14776 | .toolbar-md-danger .bar-button-clear-md-primary,
|
14777 | .toolbar-md-danger .bar-button-md-primary {
|
14778 | color: #007aff;
|
14779 | background-color: transparent; }
|
14780 | .toolbar-md-danger .bar-button-primary-md:hover:not(.disable-hover),
|
14781 | .toolbar-md-danger .bar-button-clear-md-primary:hover:not(.disable-hover),
|
14782 | .toolbar-md-danger .bar-button-md-primary:hover:not(.disable-hover) {
|
14783 | color: #007aff; }
|
14784 |
|
14785 | .toolbar-md-danger .bar-button-outline-md-primary {
|
14786 | border-color: #1485ff;
|
14787 | color: #1485ff;
|
14788 | background-color: transparent; }
|
14789 | .toolbar-md-danger .bar-button-outline-md-primary.activated {
|
14790 | background-color: transparent; }
|
14791 | .toolbar-md-danger .bar-button-outline-md-primary .button-effect {
|
14792 | background-color: #1485ff; }
|
14793 |
|
14794 | .toolbar-md-danger .bar-button-solid-md-primary {
|
14795 | color: #fff;
|
14796 | background-color: #007aff; }
|
14797 | .toolbar-md-danger .bar-button-solid-md-primary.activated {
|
14798 | color: #fff;
|
14799 | background-color: #1485ff; }
|
14800 |
|
14801 | .toolbar-md-danger .bar-button-secondary-md,
|
14802 | .toolbar-md-danger .bar-button-clear-md-secondary,
|
14803 | .toolbar-md-danger .bar-button-md-secondary {
|
14804 | color: #32db64;
|
14805 | background-color: transparent; }
|
14806 | .toolbar-md-danger .bar-button-secondary-md:hover:not(.disable-hover),
|
14807 | .toolbar-md-danger .bar-button-clear-md-secondary:hover:not(.disable-hover),
|
14808 | .toolbar-md-danger .bar-button-md-secondary:hover:not(.disable-hover) {
|
14809 | color: #32db64; }
|
14810 |
|
14811 | .toolbar-md-danger .bar-button-outline-md-secondary {
|
14812 | border-color: #2ec95c;
|
14813 | color: #2ec95c;
|
14814 | background-color: transparent; }
|
14815 | .toolbar-md-danger .bar-button-outline-md-secondary.activated {
|
14816 | background-color: transparent; }
|
14817 | .toolbar-md-danger .bar-button-outline-md-secondary .button-effect {
|
14818 | background-color: #2ec95c; }
|
14819 |
|
14820 | .toolbar-md-danger .bar-button-solid-md-secondary {
|
14821 | color: #fff;
|
14822 | background-color: #32db64; }
|
14823 | .toolbar-md-danger .bar-button-solid-md-secondary.activated {
|
14824 | color: #fff;
|
14825 | background-color: #2ec95c; }
|
14826 |
|
14827 | .toolbar-md-danger .bar-button-danger-md,
|
14828 | .toolbar-md-danger .bar-button-clear-md-danger,
|
14829 | .toolbar-md-danger .bar-button-md-danger {
|
14830 | color: #d91e18;
|
14831 | background-color: transparent; }
|
14832 | .toolbar-md-danger .bar-button-danger-md:hover:not(.disable-hover),
|
14833 | .toolbar-md-danger .bar-button-clear-md-danger:hover:not(.disable-hover),
|
14834 | .toolbar-md-danger .bar-button-md-danger:hover:not(.disable-hover) {
|
14835 | color: #d91e18; }
|
14836 |
|
14837 | .toolbar-md-danger .bar-button-outline-md-danger {
|
14838 | border-color: #dc302a;
|
14839 | color: #dc302a;
|
14840 | background-color: transparent; }
|
14841 | .toolbar-md-danger .bar-button-outline-md-danger.activated {
|
14842 | background-color: transparent; }
|
14843 | .toolbar-md-danger .bar-button-outline-md-danger .button-effect {
|
14844 | background-color: #dc302a; }
|
14845 |
|
14846 | .toolbar-md-danger .bar-button-solid-md-danger {
|
14847 | color: #fff;
|
14848 | background-color: #d91e18; }
|
14849 | .toolbar-md-danger .bar-button-solid-md-danger.activated {
|
14850 | color: #fff;
|
14851 | background-color: #dc302a; }
|
14852 |
|
14853 | .toolbar-md-danger .bar-button-light-md,
|
14854 | .toolbar-md-danger .bar-button-clear-md-light,
|
14855 | .toolbar-md-danger .bar-button-md-light {
|
14856 | color: #f4f4f4;
|
14857 | background-color: transparent; }
|
14858 | .toolbar-md-danger .bar-button-light-md:hover:not(.disable-hover),
|
14859 | .toolbar-md-danger .bar-button-clear-md-light:hover:not(.disable-hover),
|
14860 | .toolbar-md-danger .bar-button-md-light:hover:not(.disable-hover) {
|
14861 | color: #f4f4f4; }
|
14862 |
|
14863 | .toolbar-md-danger .bar-button-outline-md-light {
|
14864 | border-color: #e0e0e0;
|
14865 | color: #e0e0e0;
|
14866 | background-color: transparent; }
|
14867 | .toolbar-md-danger .bar-button-outline-md-light.activated {
|
14868 | background-color: transparent; }
|
14869 | .toolbar-md-danger .bar-button-outline-md-light .button-effect {
|
14870 | background-color: #e0e0e0; }
|
14871 |
|
14872 | .toolbar-md-danger .bar-button-solid-md-light {
|
14873 | color: #424242;
|
14874 | background-color: #f4f4f4; }
|
14875 | .toolbar-md-danger .bar-button-solid-md-light.activated {
|
14876 | color: #424242;
|
14877 | background-color: #e0e0e0; }
|
14878 |
|
14879 | .toolbar-md-danger .bar-button-dark-md,
|
14880 | .toolbar-md-danger .bar-button-clear-md-dark,
|
14881 | .toolbar-md-danger .bar-button-md-dark {
|
14882 | color: #222;
|
14883 | background-color: transparent; }
|
14884 | .toolbar-md-danger .bar-button-dark-md:hover:not(.disable-hover),
|
14885 | .toolbar-md-danger .bar-button-clear-md-dark:hover:not(.disable-hover),
|
14886 | .toolbar-md-danger .bar-button-md-dark:hover:not(.disable-hover) {
|
14887 | color: #222; }
|
14888 |
|
14889 | .toolbar-md-danger .bar-button-outline-md-dark {
|
14890 | border-color: #343434;
|
14891 | color: #343434;
|
14892 | background-color: transparent; }
|
14893 | .toolbar-md-danger .bar-button-outline-md-dark.activated {
|
14894 | background-color: transparent; }
|
14895 | .toolbar-md-danger .bar-button-outline-md-dark .button-effect {
|
14896 | background-color: #343434; }
|
14897 |
|
14898 | .toolbar-md-danger .bar-button-solid-md-dark {
|
14899 | color: #fff;
|
14900 | background-color: #222; }
|
14901 | .toolbar-md-danger .bar-button-solid-md-dark.activated {
|
14902 | color: #fff;
|
14903 | background-color: #343434; }
|
14904 |
|
14905 | .bar-button-danger-md,
|
14906 | .bar-button-clear-md-danger,
|
14907 | .bar-button-md-danger {
|
14908 | color: #d91e18;
|
14909 | background-color: transparent; }
|
14910 | .bar-button-danger-md:hover:not(.disable-hover),
|
14911 | .bar-button-clear-md-danger:hover:not(.disable-hover),
|
14912 | .bar-button-md-danger:hover:not(.disable-hover) {
|
14913 | color: #d91e18; }
|
14914 |
|
14915 | .bar-button-outline-md-danger {
|
14916 | border-color: #dc302a;
|
14917 | color: #dc302a;
|
14918 | background-color: transparent; }
|
14919 | .bar-button-outline-md-danger.activated {
|
14920 | background-color: transparent; }
|
14921 | .bar-button-outline-md-danger .button-effect {
|
14922 | background-color: #dc302a; }
|
14923 |
|
14924 | .bar-button-solid-md-danger {
|
14925 | color: #fff;
|
14926 | background-color: #d91e18; }
|
14927 | .bar-button-solid-md-danger.activated {
|
14928 | color: #fff;
|
14929 | background-color: #dc302a; }
|
14930 |
|
14931 | .toolbar-md-light .toolbar-background-md {
|
14932 | background: #f4f4f4; }
|
14933 |
|
14934 | .toolbar-md-light .bar-button-clear-md,
|
14935 | .toolbar-md-light .bar-button-default-md,
|
14936 | .toolbar-md-light .bar-button-outline-md,
|
14937 | .toolbar-md-light .toolbar-title-md {
|
14938 | color: #424242; }
|
14939 |
|
14940 | .toolbar-md-light .bar-button-clear-md .button-effect,
|
14941 | .toolbar-md-light .bar-button-default-md .button-effect,
|
14942 | .toolbar-md-light .bar-button-outline-md .button-effect {
|
14943 | background-color: #424242; }
|
14944 |
|
14945 | .toolbar-md-light .bar-button-outline-md {
|
14946 | border-color: #424242; }
|
14947 |
|
14948 | .toolbar-md-light .bar-button-primary-md,
|
14949 | .toolbar-md-light .bar-button-clear-md-primary,
|
14950 | .toolbar-md-light .bar-button-md-primary {
|
14951 | color: #007aff;
|
14952 | background-color: transparent; }
|
14953 | .toolbar-md-light .bar-button-primary-md:hover:not(.disable-hover),
|
14954 | .toolbar-md-light .bar-button-clear-md-primary:hover:not(.disable-hover),
|
14955 | .toolbar-md-light .bar-button-md-primary:hover:not(.disable-hover) {
|
14956 | color: #007aff; }
|
14957 |
|
14958 | .toolbar-md-light .bar-button-outline-md-primary {
|
14959 | border-color: #1485ff;
|
14960 | color: #1485ff;
|
14961 | background-color: transparent; }
|
14962 | .toolbar-md-light .bar-button-outline-md-primary.activated {
|
14963 | background-color: transparent; }
|
14964 | .toolbar-md-light .bar-button-outline-md-primary .button-effect {
|
14965 | background-color: #1485ff; }
|
14966 |
|
14967 | .toolbar-md-light .bar-button-solid-md-primary {
|
14968 | color: #fff;
|
14969 | background-color: #007aff; }
|
14970 | .toolbar-md-light .bar-button-solid-md-primary.activated {
|
14971 | color: #fff;
|
14972 | background-color: #1485ff; }
|
14973 |
|
14974 | .toolbar-md-light .bar-button-secondary-md,
|
14975 | .toolbar-md-light .bar-button-clear-md-secondary,
|
14976 | .toolbar-md-light .bar-button-md-secondary {
|
14977 | color: #32db64;
|
14978 | background-color: transparent; }
|
14979 | .toolbar-md-light .bar-button-secondary-md:hover:not(.disable-hover),
|
14980 | .toolbar-md-light .bar-button-clear-md-secondary:hover:not(.disable-hover),
|
14981 | .toolbar-md-light .bar-button-md-secondary:hover:not(.disable-hover) {
|
14982 | color: #32db64; }
|
14983 |
|
14984 | .toolbar-md-light .bar-button-outline-md-secondary {
|
14985 | border-color: #2ec95c;
|
14986 | color: #2ec95c;
|
14987 | background-color: transparent; }
|
14988 | .toolbar-md-light .bar-button-outline-md-secondary.activated {
|
14989 | background-color: transparent; }
|
14990 | .toolbar-md-light .bar-button-outline-md-secondary .button-effect {
|
14991 | background-color: #2ec95c; }
|
14992 |
|
14993 | .toolbar-md-light .bar-button-solid-md-secondary {
|
14994 | color: #fff;
|
14995 | background-color: #32db64; }
|
14996 | .toolbar-md-light .bar-button-solid-md-secondary.activated {
|
14997 | color: #fff;
|
14998 | background-color: #2ec95c; }
|
14999 |
|
15000 | .toolbar-md-light .bar-button-danger-md,
|
15001 | .toolbar-md-light .bar-button-clear-md-danger,
|
15002 | .toolbar-md-light .bar-button-md-danger {
|
15003 | color: #d91e18;
|
15004 | background-color: transparent; }
|
15005 | .toolbar-md-light .bar-button-danger-md:hover:not(.disable-hover),
|
15006 | .toolbar-md-light .bar-button-clear-md-danger:hover:not(.disable-hover),
|
15007 | .toolbar-md-light .bar-button-md-danger:hover:not(.disable-hover) {
|
15008 | color: #d91e18; }
|
15009 |
|
15010 | .toolbar-md-light .bar-button-outline-md-danger {
|
15011 | border-color: #dc302a;
|
15012 | color: #dc302a;
|
15013 | background-color: transparent; }
|
15014 | .toolbar-md-light .bar-button-outline-md-danger.activated {
|
15015 | background-color: transparent; }
|
15016 | .toolbar-md-light .bar-button-outline-md-danger .button-effect {
|
15017 | background-color: #dc302a; }
|
15018 |
|
15019 | .toolbar-md-light .bar-button-solid-md-danger {
|
15020 | color: #fff;
|
15021 | background-color: #d91e18; }
|
15022 | .toolbar-md-light .bar-button-solid-md-danger.activated {
|
15023 | color: #fff;
|
15024 | background-color: #dc302a; }
|
15025 |
|
15026 | .toolbar-md-light .bar-button-light-md,
|
15027 | .toolbar-md-light .bar-button-clear-md-light,
|
15028 | .toolbar-md-light .bar-button-md-light {
|
15029 | color: #f4f4f4;
|
15030 | background-color: transparent; }
|
15031 | .toolbar-md-light .bar-button-light-md:hover:not(.disable-hover),
|
15032 | .toolbar-md-light .bar-button-clear-md-light:hover:not(.disable-hover),
|
15033 | .toolbar-md-light .bar-button-md-light:hover:not(.disable-hover) {
|
15034 | color: #f4f4f4; }
|
15035 |
|
15036 | .toolbar-md-light .bar-button-outline-md-light {
|
15037 | border-color: #e0e0e0;
|
15038 | color: #e0e0e0;
|
15039 | background-color: transparent; }
|
15040 | .toolbar-md-light .bar-button-outline-md-light.activated {
|
15041 | background-color: transparent; }
|
15042 | .toolbar-md-light .bar-button-outline-md-light .button-effect {
|
15043 | background-color: #e0e0e0; }
|
15044 |
|
15045 | .toolbar-md-light .bar-button-solid-md-light {
|
15046 | color: #424242;
|
15047 | background-color: #f4f4f4; }
|
15048 | .toolbar-md-light .bar-button-solid-md-light.activated {
|
15049 | color: #424242;
|
15050 | background-color: #e0e0e0; }
|
15051 |
|
15052 | .toolbar-md-light .bar-button-dark-md,
|
15053 | .toolbar-md-light .bar-button-clear-md-dark,
|
15054 | .toolbar-md-light .bar-button-md-dark {
|
15055 | color: #222;
|
15056 | background-color: transparent; }
|
15057 | .toolbar-md-light .bar-button-dark-md:hover:not(.disable-hover),
|
15058 | .toolbar-md-light .bar-button-clear-md-dark:hover:not(.disable-hover),
|
15059 | .toolbar-md-light .bar-button-md-dark:hover:not(.disable-hover) {
|
15060 | color: #222; }
|
15061 |
|
15062 | .toolbar-md-light .bar-button-outline-md-dark {
|
15063 | border-color: #343434;
|
15064 | color: #343434;
|
15065 | background-color: transparent; }
|
15066 | .toolbar-md-light .bar-button-outline-md-dark.activated {
|
15067 | background-color: transparent; }
|
15068 | .toolbar-md-light .bar-button-outline-md-dark .button-effect {
|
15069 | background-color: #343434; }
|
15070 |
|
15071 | .toolbar-md-light .bar-button-solid-md-dark {
|
15072 | color: #fff;
|
15073 | background-color: #222; }
|
15074 | .toolbar-md-light .bar-button-solid-md-dark.activated {
|
15075 | color: #fff;
|
15076 | background-color: #343434; }
|
15077 |
|
15078 | .bar-button-light-md,
|
15079 | .bar-button-clear-md-light,
|
15080 | .bar-button-md-light {
|
15081 | color: #f4f4f4;
|
15082 | background-color: transparent; }
|
15083 | .bar-button-light-md:hover:not(.disable-hover),
|
15084 | .bar-button-clear-md-light:hover:not(.disable-hover),
|
15085 | .bar-button-md-light:hover:not(.disable-hover) {
|
15086 | color: #f4f4f4; }
|
15087 |
|
15088 | .bar-button-outline-md-light {
|
15089 | border-color: #e0e0e0;
|
15090 | color: #e0e0e0;
|
15091 | background-color: transparent; }
|
15092 | .bar-button-outline-md-light.activated {
|
15093 | background-color: transparent; }
|
15094 | .bar-button-outline-md-light .button-effect {
|
15095 | background-color: #e0e0e0; }
|
15096 |
|
15097 | .bar-button-solid-md-light {
|
15098 | color: #424242;
|
15099 | background-color: #f4f4f4; }
|
15100 | .bar-button-solid-md-light.activated {
|
15101 | color: #424242;
|
15102 | background-color: #e0e0e0; }
|
15103 |
|
15104 | .toolbar-md-dark .toolbar-background-md {
|
15105 | background: #222; }
|
15106 |
|
15107 | .toolbar-md-dark .bar-button-clear-md,
|
15108 | .toolbar-md-dark .bar-button-default-md,
|
15109 | .toolbar-md-dark .bar-button-outline-md,
|
15110 | .toolbar-md-dark .toolbar-title-md {
|
15111 | color: #fff; }
|
15112 |
|
15113 | .toolbar-md-dark .bar-button-clear-md .button-effect,
|
15114 | .toolbar-md-dark .bar-button-default-md .button-effect,
|
15115 | .toolbar-md-dark .bar-button-outline-md .button-effect {
|
15116 | background-color: #fff; }
|
15117 |
|
15118 | .toolbar-md-dark .bar-button-outline-md {
|
15119 | border-color: #fff; }
|
15120 |
|
15121 | .toolbar-md-dark .bar-button-primary-md,
|
15122 | .toolbar-md-dark .bar-button-clear-md-primary,
|
15123 | .toolbar-md-dark .bar-button-md-primary {
|
15124 | color: #007aff;
|
15125 | background-color: transparent; }
|
15126 | .toolbar-md-dark .bar-button-primary-md:hover:not(.disable-hover),
|
15127 | .toolbar-md-dark .bar-button-clear-md-primary:hover:not(.disable-hover),
|
15128 | .toolbar-md-dark .bar-button-md-primary:hover:not(.disable-hover) {
|
15129 | color: #007aff; }
|
15130 |
|
15131 | .toolbar-md-dark .bar-button-outline-md-primary {
|
15132 | border-color: #1485ff;
|
15133 | color: #1485ff;
|
15134 | background-color: transparent; }
|
15135 | .toolbar-md-dark .bar-button-outline-md-primary.activated {
|
15136 | background-color: transparent; }
|
15137 | .toolbar-md-dark .bar-button-outline-md-primary .button-effect {
|
15138 | background-color: #1485ff; }
|
15139 |
|
15140 | .toolbar-md-dark .bar-button-solid-md-primary {
|
15141 | color: #fff;
|
15142 | background-color: #007aff; }
|
15143 | .toolbar-md-dark .bar-button-solid-md-primary.activated {
|
15144 | color: #fff;
|
15145 | background-color: #1485ff; }
|
15146 |
|
15147 | .toolbar-md-dark .bar-button-secondary-md,
|
15148 | .toolbar-md-dark .bar-button-clear-md-secondary,
|
15149 | .toolbar-md-dark .bar-button-md-secondary {
|
15150 | color: #32db64;
|
15151 | background-color: transparent; }
|
15152 | .toolbar-md-dark .bar-button-secondary-md:hover:not(.disable-hover),
|
15153 | .toolbar-md-dark .bar-button-clear-md-secondary:hover:not(.disable-hover),
|
15154 | .toolbar-md-dark .bar-button-md-secondary:hover:not(.disable-hover) {
|
15155 | color: #32db64; }
|
15156 |
|
15157 | .toolbar-md-dark .bar-button-outline-md-secondary {
|
15158 | border-color: #2ec95c;
|
15159 | color: #2ec95c;
|
15160 | background-color: transparent; }
|
15161 | .toolbar-md-dark .bar-button-outline-md-secondary.activated {
|
15162 | background-color: transparent; }
|
15163 | .toolbar-md-dark .bar-button-outline-md-secondary .button-effect {
|
15164 | background-color: #2ec95c; }
|
15165 |
|
15166 | .toolbar-md-dark .bar-button-solid-md-secondary {
|
15167 | color: #fff;
|
15168 | background-color: #32db64; }
|
15169 | .toolbar-md-dark .bar-button-solid-md-secondary.activated {
|
15170 | color: #fff;
|
15171 | background-color: #2ec95c; }
|
15172 |
|
15173 | .toolbar-md-dark .bar-button-danger-md,
|
15174 | .toolbar-md-dark .bar-button-clear-md-danger,
|
15175 | .toolbar-md-dark .bar-button-md-danger {
|
15176 | color: #d91e18;
|
15177 | background-color: transparent; }
|
15178 | .toolbar-md-dark .bar-button-danger-md:hover:not(.disable-hover),
|
15179 | .toolbar-md-dark .bar-button-clear-md-danger:hover:not(.disable-hover),
|
15180 | .toolbar-md-dark .bar-button-md-danger:hover:not(.disable-hover) {
|
15181 | color: #d91e18; }
|
15182 |
|
15183 | .toolbar-md-dark .bar-button-outline-md-danger {
|
15184 | border-color: #dc302a;
|
15185 | color: #dc302a;
|
15186 | background-color: transparent; }
|
15187 | .toolbar-md-dark .bar-button-outline-md-danger.activated {
|
15188 | background-color: transparent; }
|
15189 | .toolbar-md-dark .bar-button-outline-md-danger .button-effect {
|
15190 | background-color: #dc302a; }
|
15191 |
|
15192 | .toolbar-md-dark .bar-button-solid-md-danger {
|
15193 | color: #fff;
|
15194 | background-color: #d91e18; }
|
15195 | .toolbar-md-dark .bar-button-solid-md-danger.activated {
|
15196 | color: #fff;
|
15197 | background-color: #dc302a; }
|
15198 |
|
15199 | .toolbar-md-dark .bar-button-light-md,
|
15200 | .toolbar-md-dark .bar-button-clear-md-light,
|
15201 | .toolbar-md-dark .bar-button-md-light {
|
15202 | color: #f4f4f4;
|
15203 | background-color: transparent; }
|
15204 | .toolbar-md-dark .bar-button-light-md:hover:not(.disable-hover),
|
15205 | .toolbar-md-dark .bar-button-clear-md-light:hover:not(.disable-hover),
|
15206 | .toolbar-md-dark .bar-button-md-light:hover:not(.disable-hover) {
|
15207 | color: #f4f4f4; }
|
15208 |
|
15209 | .toolbar-md-dark .bar-button-outline-md-light {
|
15210 | border-color: #e0e0e0;
|
15211 | color: #e0e0e0;
|
15212 | background-color: transparent; }
|
15213 | .toolbar-md-dark .bar-button-outline-md-light.activated {
|
15214 | background-color: transparent; }
|
15215 | .toolbar-md-dark .bar-button-outline-md-light .button-effect {
|
15216 | background-color: #e0e0e0; }
|
15217 |
|
15218 | .toolbar-md-dark .bar-button-solid-md-light {
|
15219 | color: #424242;
|
15220 | background-color: #f4f4f4; }
|
15221 | .toolbar-md-dark .bar-button-solid-md-light.activated {
|
15222 | color: #424242;
|
15223 | background-color: #e0e0e0; }
|
15224 |
|
15225 | .toolbar-md-dark .bar-button-dark-md,
|
15226 | .toolbar-md-dark .bar-button-clear-md-dark,
|
15227 | .toolbar-md-dark .bar-button-md-dark {
|
15228 | color: #222;
|
15229 | background-color: transparent; }
|
15230 | .toolbar-md-dark .bar-button-dark-md:hover:not(.disable-hover),
|
15231 | .toolbar-md-dark .bar-button-clear-md-dark:hover:not(.disable-hover),
|
15232 | .toolbar-md-dark .bar-button-md-dark:hover:not(.disable-hover) {
|
15233 | color: #222; }
|
15234 |
|
15235 | .toolbar-md-dark .bar-button-outline-md-dark {
|
15236 | border-color: #343434;
|
15237 | color: #343434;
|
15238 | background-color: transparent; }
|
15239 | .toolbar-md-dark .bar-button-outline-md-dark.activated {
|
15240 | background-color: transparent; }
|
15241 | .toolbar-md-dark .bar-button-outline-md-dark .button-effect {
|
15242 | background-color: #343434; }
|
15243 |
|
15244 | .toolbar-md-dark .bar-button-solid-md-dark {
|
15245 | color: #fff;
|
15246 | background-color: #222; }
|
15247 | .toolbar-md-dark .bar-button-solid-md-dark.activated {
|
15248 | color: #fff;
|
15249 | background-color: #343434; }
|
15250 |
|
15251 | .bar-button-dark-md,
|
15252 | .bar-button-clear-md-dark,
|
15253 | .bar-button-md-dark {
|
15254 | color: #222;
|
15255 | background-color: transparent; }
|
15256 | .bar-button-dark-md:hover:not(.disable-hover),
|
15257 | .bar-button-clear-md-dark:hover:not(.disable-hover),
|
15258 | .bar-button-md-dark:hover:not(.disable-hover) {
|
15259 | color: #222; }
|
15260 |
|
15261 | .bar-button-outline-md-dark {
|
15262 | border-color: #343434;
|
15263 | color: #343434;
|
15264 | background-color: transparent; }
|
15265 | .bar-button-outline-md-dark.activated {
|
15266 | background-color: transparent; }
|
15267 | .bar-button-outline-md-dark .button-effect {
|
15268 | background-color: #343434; }
|
15269 |
|
15270 | .bar-button-solid-md-dark {
|
15271 | color: #fff;
|
15272 | background-color: #222; }
|
15273 | .bar-button-solid-md-dark.activated {
|
15274 | color: #fff;
|
15275 | background-color: #343434; }
|
15276 |
|
15277 | .bar-button-strong-md {
|
15278 | font-weight: bold; }
|
15279 |
|
15280 | .toolbar-wp {
|
15281 | padding: 4px;
|
15282 | min-height: 46px; }
|
15283 |
|
15284 | .toolbar-background-wp {
|
15285 | border-color: #222;
|
15286 | background: #151515; }
|
15287 |
|
15288 | .toolbar-content-wp {
|
15289 | -webkit-flex: 1;
|
15290 | -ms-flex: 1;
|
15291 | flex: 1;
|
15292 | -webkit-order: 3;
|
15293 | -ms-flex-order: 3;
|
15294 | order: 3;
|
15295 | min-width: 0;
|
15296 | max-width: 100%; }
|
15297 |
|
15298 | .toolbar-title-wp {
|
15299 | font-size: 1.5rem;
|
15300 | font-weight: bold;
|
15301 | text-transform: uppercase;
|
15302 | color: #fff;
|
15303 | padding: 0 6px; }
|
15304 |
|
15305 | .bar-buttons-wp {
|
15306 | -webkit-order: 4;
|
15307 | -ms-flex-order: 4;
|
15308 | order: 4;
|
15309 | -webkit-transform: translateZ(0);
|
15310 | transform: translateZ(0); }
|
15311 |
|
15312 | .bar-buttons-wp[left] {
|
15313 | -webkit-order: 2;
|
15314 | -ms-flex-order: 2;
|
15315 | order: 2; }
|
15316 |
|
15317 | .bar-buttons-wp[left] .bar-button:first-child {
|
15318 | margin-left: 0; }
|
15319 |
|
15320 | .bar-buttons-wp[end] {
|
15321 | text-align: right;
|
15322 | text-align: end;
|
15323 | -webkit-order: 5;
|
15324 | -ms-flex-order: 5;
|
15325 | order: 5; }
|
15326 |
|
15327 | .bar-buttons-wp[right] {
|
15328 | text-align: right;
|
15329 | -webkit-order: 6;
|
15330 | -ms-flex-order: 6;
|
15331 | order: 6; }
|
15332 |
|
15333 | .bar-button-wp {
|
15334 | margin: 0 0.2rem;
|
15335 | padding: 0 5px;
|
15336 | border-radius: 2px;
|
15337 | height: 32px;
|
15338 | border: 0;
|
15339 | font-size: 1.4rem;
|
15340 | font-weight: 500;
|
15341 | text-transform: uppercase; }
|
15342 |
|
15343 | .bar-button-solid-wp,
|
15344 | .bar-button-outline-wp {
|
15345 | overflow: hidden; }
|
15346 |
|
15347 | .bar-button-outline-wp {
|
15348 | border-width: 1px;
|
15349 | border-style: solid;
|
15350 | border-color: #fff;
|
15351 | color: #fff;
|
15352 | background-color: transparent; }
|
15353 | .bar-button-outline-wp:hover:not(.disable-hover) {
|
15354 | opacity: .4; }
|
15355 | .bar-button-outline-wp.activated {
|
15356 | color: #000;
|
15357 | background-color: #fff; }
|
15358 |
|
15359 | .bar-button-solid-wp {
|
15360 | color: #000;
|
15361 | background-color: #fff; }
|
15362 | .bar-button-solid-wp:hover:not(.disable-hover) {
|
15363 | color: #000; }
|
15364 | .bar-button-solid-wp.activated {
|
15365 | color: #000;
|
15366 | background-color: #ebebeb; }
|
15367 |
|
15368 | .bar-button-wp.bar-button-icon-start ion-icon {
|
15369 | padding-right: 0.3em;
|
15370 | font-size: 1.4em;
|
15371 | line-height: .67;
|
15372 | pointer-events: none; }
|
15373 |
|
15374 | .bar-button-wp.bar-button-icon-end ion-icon {
|
15375 | padding-left: 0.4em;
|
15376 | font-size: 1.4em;
|
15377 | line-height: .67;
|
15378 | pointer-events: none; }
|
15379 |
|
15380 | .bar-button-wp[icon-only] {
|
15381 | padding: 0; }
|
15382 | .bar-button-wp[icon-only] ion-icon {
|
15383 | padding: 0 0.1em;
|
15384 | min-width: 28px;
|
15385 | font-size: 1.8em;
|
15386 | line-height: .67;
|
15387 | pointer-events: none; }
|
15388 |
|
15389 | .back-button-wp {
|
15390 | margin: 0 6px;
|
15391 | min-width: 44px;
|
15392 | box-shadow: none; }
|
15393 |
|
15394 | .back-button-icon-wp {
|
15395 | text-align: left;
|
15396 | text-align: start;
|
15397 | margin: 0;
|
15398 | padding: 0 6px;
|
15399 | font-size: 2.4rem;
|
15400 | font-weight: normal; }
|
15401 |
|
15402 | .bar-button-menutoggle-wp {
|
15403 | margin: 0 6px;
|
15404 | padding: 0 2px;
|
15405 | -webkit-order: 1;
|
15406 | -ms-flex-order: 1;
|
15407 | order: 1;
|
15408 | min-width: 44px; }
|
15409 | .bar-button-menutoggle-wp ion-icon {
|
15410 | padding: 0 6px;
|
15411 | font-size: 2.4rem; }
|
15412 |
|
15413 | .bar-button-menutoggle-wp[end],
|
15414 | .bar-button-menutoggle-wp[right] {
|
15415 | margin: 0 2px;
|
15416 | -webkit-order: 7;
|
15417 | -ms-flex-order: 7;
|
15418 | order: 7;
|
15419 | min-width: 28px; }
|
15420 |
|
15421 | .bar-button-default-wp,
|
15422 | .bar-button-clear-wp-default,
|
15423 | .bar-button-wp-default {
|
15424 | color: #fff;
|
15425 | background-color: transparent; }
|
15426 | .bar-button-default-wp:hover:not(.disable-hover),
|
15427 | .bar-button-clear-wp-default:hover:not(.disable-hover),
|
15428 | .bar-button-wp-default:hover:not(.disable-hover) {
|
15429 | color: #fff; }
|
15430 |
|
15431 | .bar-button-clear-wp,
|
15432 | .bar-button-clear-wp-clear,
|
15433 | .bar-button-wp-clear {
|
15434 | color: #fff;
|
15435 | background-color: transparent; }
|
15436 | .bar-button-clear-wp:hover:not(.disable-hover),
|
15437 | .bar-button-clear-wp-clear:hover:not(.disable-hover),
|
15438 | .bar-button-wp-clear:hover:not(.disable-hover) {
|
15439 | color: #fff; }
|
15440 |
|
15441 | .toolbar-wp-primary .toolbar-background-wp {
|
15442 | background: #007aff; }
|
15443 |
|
15444 | .toolbar-wp-primary .bar-button-clear-wp,
|
15445 | .toolbar-wp-primary .bar-button-default-wp,
|
15446 | .toolbar-wp-primary .bar-button-outline-wp,
|
15447 | .toolbar-wp-primary .toolbar-title-wp {
|
15448 | color: #fff; }
|
15449 |
|
15450 | .toolbar-wp-primary .bar-button-outline-wp {
|
15451 | border-color: #fff; }
|
15452 |
|
15453 | .toolbar-wp-primary .bar-button-primary-wp,
|
15454 | .toolbar-wp-primary .bar-button-clear-wp-primary,
|
15455 | .toolbar-wp-primary .bar-button-wp-primary {
|
15456 | color: #007aff;
|
15457 | background-color: transparent; }
|
15458 | .toolbar-wp-primary .bar-button-primary-wp:hover:not(.disable-hover),
|
15459 | .toolbar-wp-primary .bar-button-clear-wp-primary:hover:not(.disable-hover),
|
15460 | .toolbar-wp-primary .bar-button-wp-primary:hover:not(.disable-hover) {
|
15461 | color: #007aff; }
|
15462 |
|
15463 | .toolbar-wp-primary .bar-button-outline-wp-primary {
|
15464 | border-color: #1485ff;
|
15465 | color: #1485ff;
|
15466 | background-color: transparent; }
|
15467 | .toolbar-wp-primary .bar-button-outline-wp-primary.activated {
|
15468 | color: #fff;
|
15469 | background-color: #1485ff; }
|
15470 |
|
15471 | .toolbar-wp-primary .bar-button-solid-wp-primary {
|
15472 | color: #fff;
|
15473 | background-color: #007aff; }
|
15474 | .toolbar-wp-primary .bar-button-solid-wp-primary.activated {
|
15475 | color: #fff;
|
15476 | background-color: #1485ff; }
|
15477 |
|
15478 | .toolbar-wp-primary .bar-button-secondary-wp,
|
15479 | .toolbar-wp-primary .bar-button-clear-wp-secondary,
|
15480 | .toolbar-wp-primary .bar-button-wp-secondary {
|
15481 | color: #32db64;
|
15482 | background-color: transparent; }
|
15483 | .toolbar-wp-primary .bar-button-secondary-wp:hover:not(.disable-hover),
|
15484 | .toolbar-wp-primary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
|
15485 | .toolbar-wp-primary .bar-button-wp-secondary:hover:not(.disable-hover) {
|
15486 | color: #32db64; }
|
15487 |
|
15488 | .toolbar-wp-primary .bar-button-outline-wp-secondary {
|
15489 | border-color: #2ec95c;
|
15490 | color: #2ec95c;
|
15491 | background-color: transparent; }
|
15492 | .toolbar-wp-primary .bar-button-outline-wp-secondary.activated {
|
15493 | color: #fff;
|
15494 | background-color: #2ec95c; }
|
15495 |
|
15496 | .toolbar-wp-primary .bar-button-solid-wp-secondary {
|
15497 | color: #fff;
|
15498 | background-color: #32db64; }
|
15499 | .toolbar-wp-primary .bar-button-solid-wp-secondary.activated {
|
15500 | color: #fff;
|
15501 | background-color: #2ec95c; }
|
15502 |
|
15503 | .toolbar-wp-primary .bar-button-danger-wp,
|
15504 | .toolbar-wp-primary .bar-button-clear-wp-danger,
|
15505 | .toolbar-wp-primary .bar-button-wp-danger {
|
15506 | color: #d91e18;
|
15507 | background-color: transparent; }
|
15508 | .toolbar-wp-primary .bar-button-danger-wp:hover:not(.disable-hover),
|
15509 | .toolbar-wp-primary .bar-button-clear-wp-danger:hover:not(.disable-hover),
|
15510 | .toolbar-wp-primary .bar-button-wp-danger:hover:not(.disable-hover) {
|
15511 | color: #d91e18; }
|
15512 |
|
15513 | .toolbar-wp-primary .bar-button-outline-wp-danger {
|
15514 | border-color: #dc302a;
|
15515 | color: #dc302a;
|
15516 | background-color: transparent; }
|
15517 | .toolbar-wp-primary .bar-button-outline-wp-danger.activated {
|
15518 | color: #fff;
|
15519 | background-color: #dc302a; }
|
15520 |
|
15521 | .toolbar-wp-primary .bar-button-solid-wp-danger {
|
15522 | color: #fff;
|
15523 | background-color: #d91e18; }
|
15524 | .toolbar-wp-primary .bar-button-solid-wp-danger.activated {
|
15525 | color: #fff;
|
15526 | background-color: #dc302a; }
|
15527 |
|
15528 | .toolbar-wp-primary .bar-button-light-wp,
|
15529 | .toolbar-wp-primary .bar-button-clear-wp-light,
|
15530 | .toolbar-wp-primary .bar-button-wp-light {
|
15531 | color: #f4f4f4;
|
15532 | background-color: transparent; }
|
15533 | .toolbar-wp-primary .bar-button-light-wp:hover:not(.disable-hover),
|
15534 | .toolbar-wp-primary .bar-button-clear-wp-light:hover:not(.disable-hover),
|
15535 | .toolbar-wp-primary .bar-button-wp-light:hover:not(.disable-hover) {
|
15536 | color: #f4f4f4; }
|
15537 |
|
15538 | .toolbar-wp-primary .bar-button-outline-wp-light {
|
15539 | border-color: #e0e0e0;
|
15540 | color: #e0e0e0;
|
15541 | background-color: transparent; }
|
15542 | .toolbar-wp-primary .bar-button-outline-wp-light.activated {
|
15543 | color: #000;
|
15544 | background-color: #e0e0e0; }
|
15545 |
|
15546 | .toolbar-wp-primary .bar-button-solid-wp-light {
|
15547 | color: #000;
|
15548 | background-color: #f4f4f4; }
|
15549 | .toolbar-wp-primary .bar-button-solid-wp-light.activated {
|
15550 | color: #000;
|
15551 | background-color: #e0e0e0; }
|
15552 |
|
15553 | .toolbar-wp-primary .bar-button-dark-wp,
|
15554 | .toolbar-wp-primary .bar-button-clear-wp-dark,
|
15555 | .toolbar-wp-primary .bar-button-wp-dark {
|
15556 | color: #222;
|
15557 | background-color: transparent; }
|
15558 | .toolbar-wp-primary .bar-button-dark-wp:hover:not(.disable-hover),
|
15559 | .toolbar-wp-primary .bar-button-clear-wp-dark:hover:not(.disable-hover),
|
15560 | .toolbar-wp-primary .bar-button-wp-dark:hover:not(.disable-hover) {
|
15561 | color: #222; }
|
15562 |
|
15563 | .toolbar-wp-primary .bar-button-outline-wp-dark {
|
15564 | border-color: #343434;
|
15565 | color: #343434;
|
15566 | background-color: transparent; }
|
15567 | .toolbar-wp-primary .bar-button-outline-wp-dark.activated {
|
15568 | color: #fff;
|
15569 | background-color: #343434; }
|
15570 |
|
15571 | .toolbar-wp-primary .bar-button-solid-wp-dark {
|
15572 | color: #fff;
|
15573 | background-color: #222; }
|
15574 | .toolbar-wp-primary .bar-button-solid-wp-dark.activated {
|
15575 | color: #fff;
|
15576 | background-color: #343434; }
|
15577 |
|
15578 | .bar-button-primary-wp,
|
15579 | .bar-button-clear-wp-primary,
|
15580 | .bar-button-wp-primary {
|
15581 | color: #007aff;
|
15582 | background-color: transparent; }
|
15583 | .bar-button-primary-wp:hover:not(.disable-hover),
|
15584 | .bar-button-clear-wp-primary:hover:not(.disable-hover),
|
15585 | .bar-button-wp-primary:hover:not(.disable-hover) {
|
15586 | color: #007aff; }
|
15587 |
|
15588 | .bar-button-outline-wp-primary {
|
15589 | border-color: #1485ff;
|
15590 | color: #1485ff;
|
15591 | background-color: transparent; }
|
15592 | .bar-button-outline-wp-primary.activated {
|
15593 | color: #fff;
|
15594 | background-color: #1485ff; }
|
15595 |
|
15596 | .bar-button-solid-wp-primary {
|
15597 | color: #fff;
|
15598 | background-color: #007aff; }
|
15599 | .bar-button-solid-wp-primary.activated {
|
15600 | color: #fff;
|
15601 | background-color: #1485ff; }
|
15602 |
|
15603 | .toolbar-wp-secondary .toolbar-background-wp {
|
15604 | background: #32db64; }
|
15605 |
|
15606 | .toolbar-wp-secondary .bar-button-clear-wp,
|
15607 | .toolbar-wp-secondary .bar-button-default-wp,
|
15608 | .toolbar-wp-secondary .bar-button-outline-wp,
|
15609 | .toolbar-wp-secondary .toolbar-title-wp {
|
15610 | color: #fff; }
|
15611 |
|
15612 | .toolbar-wp-secondary .bar-button-outline-wp {
|
15613 | border-color: #fff; }
|
15614 |
|
15615 | .toolbar-wp-secondary .bar-button-primary-wp,
|
15616 | .toolbar-wp-secondary .bar-button-clear-wp-primary,
|
15617 | .toolbar-wp-secondary .bar-button-wp-primary {
|
15618 | color: #007aff;
|
15619 | background-color: transparent; }
|
15620 | .toolbar-wp-secondary .bar-button-primary-wp:hover:not(.disable-hover),
|
15621 | .toolbar-wp-secondary .bar-button-clear-wp-primary:hover:not(.disable-hover),
|
15622 | .toolbar-wp-secondary .bar-button-wp-primary:hover:not(.disable-hover) {
|
15623 | color: #007aff; }
|
15624 |
|
15625 | .toolbar-wp-secondary .bar-button-outline-wp-primary {
|
15626 | border-color: #1485ff;
|
15627 | color: #1485ff;
|
15628 | background-color: transparent; }
|
15629 | .toolbar-wp-secondary .bar-button-outline-wp-primary.activated {
|
15630 | color: #fff;
|
15631 | background-color: #1485ff; }
|
15632 |
|
15633 | .toolbar-wp-secondary .bar-button-solid-wp-primary {
|
15634 | color: #fff;
|
15635 | background-color: #007aff; }
|
15636 | .toolbar-wp-secondary .bar-button-solid-wp-primary.activated {
|
15637 | color: #fff;
|
15638 | background-color: #1485ff; }
|
15639 |
|
15640 | .toolbar-wp-secondary .bar-button-secondary-wp,
|
15641 | .toolbar-wp-secondary .bar-button-clear-wp-secondary,
|
15642 | .toolbar-wp-secondary .bar-button-wp-secondary {
|
15643 | color: #32db64;
|
15644 | background-color: transparent; }
|
15645 | .toolbar-wp-secondary .bar-button-secondary-wp:hover:not(.disable-hover),
|
15646 | .toolbar-wp-secondary .bar-button-clear-wp-secondary:hover:not(.disable-hover),
|
15647 | .toolbar-wp-secondary .bar-button-wp-secondary:hover:not(.disable-hover) {
|
15648 | color: #32db64; }
|
15649 |
|
15650 | .toolbar-wp-secondary .bar-button-outline-wp-secondary {
|
15651 | border-color: #2ec95c;
|
15652 | color: #2ec95c;
|
15653 | background-color: transparent; }
|
15654 | .toolbar-wp-secondary .bar-button-outline-wp-secondary.activated {
|
15655 | color: #fff;
|
15656 | background-color: #2ec95c; }
|
15657 |
|
15658 | .toolbar-wp-secondary .bar-button-solid-wp-secondary {
|
15659 | color: #fff;
|
15660 | background-color: #32db64; }
|
15661 | .toolbar-wp-secondary .bar-button-solid-wp-secondary.activated {
|
15662 | color: #fff;
|
15663 | background-color: #2ec95c; }
|
15664 |
|
15665 | .toolbar-wp-secondary .bar-button-danger-wp,
|
15666 | .toolbar-wp-secondary .bar-button-clear-wp-danger,
|
15667 | .toolbar-wp-secondary .bar-button-wp-danger {
|
15668 | color: #d91e18;
|
15669 | background-color: transparent; }
|
15670 | .toolbar-wp-secondary .bar-button-danger-wp:hover:not(.disable-hover),
|
15671 | .toolbar-wp-secondary .bar-button-clear-wp-danger:hover:not(.disable-hover),
|
15672 | .toolbar-wp-secondary .bar-button-wp-danger:hover:not(.disable-hover) {
|
15673 | color: #d91e18; }
|
15674 |
|
15675 | .toolbar-wp-secondary .bar-button-outline-wp-danger {
|
15676 | border-color: #dc302a;
|
15677 | color: #dc302a;
|
15678 | background-color: transparent; }
|
15679 | .toolbar-wp-secondary .bar-button-outline-wp-danger.activated {
|
15680 | color: #fff;
|
15681 | background-color: #dc302a; }
|
15682 |
|
15683 | .toolbar-wp-secondary .bar-button-solid-wp-danger {
|
15684 | color: #fff;
|
15685 | background-color: #d91e18; }
|
15686 | .toolbar-wp-secondary .bar-button-solid-wp-danger.activated {
|
15687 | color: #fff;
|
15688 | background-color: #dc302a; }
|
15689 |
|
15690 | .toolbar-wp-secondary .bar-button-light-wp,
|
15691 | .toolbar-wp-secondary .bar-button-clear-wp-light,
|
15692 | .toolbar-wp-secondary .bar-button-wp-light {
|
15693 | color: #f4f4f4;
|
15694 | background-color: transparent; }
|
15695 | .toolbar-wp-secondary .bar-button-light-wp:hover:not(.disable-hover),
|
15696 | .toolbar-wp-secondary .bar-button-clear-wp-light:hover:not(.disable-hover),
|
15697 | .toolbar-wp-secondary .bar-button-wp-light:hover:not(.disable-hover) {
|
15698 | color: #f4f4f4; }
|
15699 |
|
15700 | .toolbar-wp-secondary .bar-button-outline-wp-light {
|
15701 | border-color: #e0e0e0;
|
15702 | color: #e0e0e0;
|
15703 | background-color: transparent; }
|
15704 | .toolbar-wp-secondary .bar-button-outline-wp-light.activated {
|
15705 | color: #000;
|
15706 | background-color: #e0e0e0; }
|
15707 |
|
15708 | .toolbar-wp-secondary .bar-button-solid-wp-light {
|
15709 | color: #000;
|
15710 | background-color: #f4f4f4; }
|
15711 | .toolbar-wp-secondary .bar-button-solid-wp-light.activated {
|
15712 | color: #000;
|
15713 | background-color: #e0e0e0; }
|
15714 |
|
15715 | .toolbar-wp-secondary .bar-button-dark-wp,
|
15716 | .toolbar-wp-secondary .bar-button-clear-wp-dark,
|
15717 | .toolbar-wp-secondary .bar-button-wp-dark {
|
15718 | color: #222;
|
15719 | background-color: transparent; }
|
15720 | .toolbar-wp-secondary .bar-button-dark-wp:hover:not(.disable-hover),
|
15721 | .toolbar-wp-secondary .bar-button-clear-wp-dark:hover:not(.disable-hover),
|
15722 | .toolbar-wp-secondary .bar-button-wp-dark:hover:not(.disable-hover) {
|
15723 | color: #222; }
|
15724 |
|
15725 | .toolbar-wp-secondary .bar-button-outline-wp-dark {
|
15726 | border-color: #343434;
|
15727 | color: #343434;
|
15728 | background-color: transparent; }
|
15729 | .toolbar-wp-secondary .bar-button-outline-wp-dark.activated {
|
15730 | color: #fff;
|
15731 | background-color: #343434; }
|
15732 |
|
15733 | .toolbar-wp-secondary .bar-button-solid-wp-dark {
|
15734 | color: #fff;
|
15735 | background-color: #222; }
|
15736 | .toolbar-wp-secondary .bar-button-solid-wp-dark.activated {
|
15737 | color: #fff;
|
15738 | background-color: #343434; }
|
15739 |
|
15740 | .bar-button-secondary-wp,
|
15741 | .bar-button-clear-wp-secondary,
|
15742 | .bar-button-wp-secondary {
|
15743 | color: #32db64;
|
15744 | background-color: transparent; }
|
15745 | .bar-button-secondary-wp:hover:not(.disable-hover),
|
15746 | .bar-button-clear-wp-secondary:hover:not(.disable-hover),
|
15747 | .bar-button-wp-secondary:hover:not(.disable-hover) {
|
15748 | color: #32db64; }
|
15749 |
|
15750 | .bar-button-outline-wp-secondary {
|
15751 | border-color: #2ec95c;
|
15752 | color: #2ec95c;
|
15753 | background-color: transparent; }
|
15754 | .bar-button-outline-wp-secondary.activated {
|
15755 | color: #fff;
|
15756 | background-color: #2ec95c; }
|
15757 |
|
15758 | .bar-button-solid-wp-secondary {
|
15759 | color: #fff;
|
15760 | background-color: #32db64; }
|
15761 | .bar-button-solid-wp-secondary.activated {
|
15762 | color: #fff;
|
15763 | background-color: #2ec95c; }
|
15764 |
|
15765 | .toolbar-wp-danger .toolbar-background-wp {
|
15766 | background: #d91e18; }
|
15767 |
|
15768 | .toolbar-wp-danger .bar-button-clear-wp,
|
15769 | .toolbar-wp-danger .bar-button-default-wp,
|
15770 | .toolbar-wp-danger .bar-button-outline-wp,
|
15771 | .toolbar-wp-danger .toolbar-title-wp {
|
15772 | color: #fff; }
|
15773 |
|
15774 | .toolbar-wp-danger .bar-button-outline-wp {
|
15775 | border-color: #fff; }
|
15776 |
|
15777 | .toolbar-wp-danger .bar-button-primary-wp,
|
15778 | .toolbar-wp-danger .bar-button-clear-wp-primary,
|
15779 | .toolbar-wp-danger .bar-button-wp-primary {
|
15780 | color: #007aff;
|
15781 | background-color: transparent; }
|
15782 | .toolbar-wp-danger .bar-button-primary-wp:hover:not(.disable-hover),
|
15783 | .toolbar-wp-danger .bar-button-clear-wp-primary:hover:not(.disable-hover),
|
15784 | .toolbar-wp-danger .bar-button-wp-primary:hover:not(.disable-hover) {
|
15785 | color: #007aff; }
|
15786 |
|
15787 | .toolbar-wp-danger .bar-button-outline-wp-primary {
|
15788 | border-color: #1485ff;
|
15789 | color: #1485ff;
|
15790 | background-color: transparent; }
|
15791 | .toolbar-wp-danger .bar-button-outline-wp-primary.activated {
|
15792 | color: #fff;
|
15793 | background-color: #1485ff; }
|
15794 |
|
15795 | .toolbar-wp-danger .bar-button-solid-wp-primary {
|
15796 | color: #fff;
|
15797 | background-color: #007aff; }
|
15798 | .toolbar-wp-danger .bar-button-solid-wp-primary.activated {
|
15799 | color: #fff;
|
15800 | background-color: #1485ff; }
|
15801 |
|
15802 | .toolbar-wp-danger .bar-button-secondary-wp,
|
15803 | .toolbar-wp-danger .bar-button-clear-wp-secondary,
|
15804 | .toolbar-wp-danger .bar-button-wp-secondary {
|
15805 | color: #32db64;
|
15806 | background-color: transparent; }
|
15807 | .toolbar-wp-danger .bar-button-secondary-wp:hover:not(.disable-hover),
|
15808 | .toolbar-wp-danger .bar-button-clear-wp-secondary:hover:not(.disable-hover),
|
15809 | .toolbar-wp-danger .bar-button-wp-secondary:hover:not(.disable-hover) {
|
15810 | color: #32db64; }
|
15811 |
|
15812 | .toolbar-wp-danger .bar-button-outline-wp-secondary {
|
15813 | border-color: #2ec95c;
|
15814 | color: #2ec95c;
|
15815 | background-color: transparent; }
|
15816 | .toolbar-wp-danger .bar-button-outline-wp-secondary.activated {
|
15817 | color: #fff;
|
15818 | background-color: #2ec95c; }
|
15819 |
|
15820 | .toolbar-wp-danger .bar-button-solid-wp-secondary {
|
15821 | color: #fff;
|
15822 | background-color: #32db64; }
|
15823 | .toolbar-wp-danger .bar-button-solid-wp-secondary.activated {
|
15824 | color: #fff;
|
15825 | background-color: #2ec95c; }
|
15826 |
|
15827 | .toolbar-wp-danger .bar-button-danger-wp,
|
15828 | .toolbar-wp-danger .bar-button-clear-wp-danger,
|
15829 | .toolbar-wp-danger .bar-button-wp-danger {
|
15830 | color: #d91e18;
|
15831 | background-color: transparent; }
|
15832 | .toolbar-wp-danger .bar-button-danger-wp:hover:not(.disable-hover),
|
15833 | .toolbar-wp-danger .bar-button-clear-wp-danger:hover:not(.disable-hover),
|
15834 | .toolbar-wp-danger .bar-button-wp-danger:hover:not(.disable-hover) {
|
15835 | color: #d91e18; }
|
15836 |
|
15837 | .toolbar-wp-danger .bar-button-outline-wp-danger {
|
15838 | border-color: #dc302a;
|
15839 | color: #dc302a;
|
15840 | background-color: transparent; }
|
15841 | .toolbar-wp-danger .bar-button-outline-wp-danger.activated {
|
15842 | color: #fff;
|
15843 | background-color: #dc302a; }
|
15844 |
|
15845 | .toolbar-wp-danger .bar-button-solid-wp-danger {
|
15846 | color: #fff;
|
15847 | background-color: #d91e18; }
|
15848 | .toolbar-wp-danger .bar-button-solid-wp-danger.activated {
|
15849 | color: #fff;
|
15850 | background-color: #dc302a; }
|
15851 |
|
15852 | .toolbar-wp-danger .bar-button-light-wp,
|
15853 | .toolbar-wp-danger .bar-button-clear-wp-light,
|
15854 | .toolbar-wp-danger .bar-button-wp-light {
|
15855 | color: #f4f4f4;
|
15856 | background-color: transparent; }
|
15857 | .toolbar-wp-danger .bar-button-light-wp:hover:not(.disable-hover),
|
15858 | .toolbar-wp-danger .bar-button-clear-wp-light:hover:not(.disable-hover),
|
15859 | .toolbar-wp-danger .bar-button-wp-light:hover:not(.disable-hover) {
|
15860 | color: #f4f4f4; }
|
15861 |
|
15862 | .toolbar-wp-danger .bar-button-outline-wp-light {
|
15863 | border-color: #e0e0e0;
|
15864 | color: #e0e0e0;
|
15865 | background-color: transparent; }
|
15866 | .toolbar-wp-danger .bar-button-outline-wp-light.activated {
|
15867 | color: #000;
|
15868 | background-color: #e0e0e0; }
|
15869 |
|
15870 | .toolbar-wp-danger .bar-button-solid-wp-light {
|
15871 | color: #000;
|
15872 | background-color: #f4f4f4; }
|
15873 | .toolbar-wp-danger .bar-button-solid-wp-light.activated {
|
15874 | color: #000;
|
15875 | background-color: #e0e0e0; }
|
15876 |
|
15877 | .toolbar-wp-danger .bar-button-dark-wp,
|
15878 | .toolbar-wp-danger .bar-button-clear-wp-dark,
|
15879 | .toolbar-wp-danger .bar-button-wp-dark {
|
15880 | color: #222;
|
15881 | background-color: transparent; }
|
15882 | .toolbar-wp-danger .bar-button-dark-wp:hover:not(.disable-hover),
|
15883 | .toolbar-wp-danger .bar-button-clear-wp-dark:hover:not(.disable-hover),
|
15884 | .toolbar-wp-danger .bar-button-wp-dark:hover:not(.disable-hover) {
|
15885 | color: #222; }
|
15886 |
|
15887 | .toolbar-wp-danger .bar-button-outline-wp-dark {
|
15888 | border-color: #343434;
|
15889 | color: #343434;
|
15890 | background-color: transparent; }
|
15891 | .toolbar-wp-danger .bar-button-outline-wp-dark.activated {
|
15892 | color: #fff;
|
15893 | background-color: #343434; }
|
15894 |
|
15895 | .toolbar-wp-danger .bar-button-solid-wp-dark {
|
15896 | color: #fff;
|
15897 | background-color: #222; }
|
15898 | .toolbar-wp-danger .bar-button-solid-wp-dark.activated {
|
15899 | color: #fff;
|
15900 | background-color: #343434; }
|
15901 |
|
15902 | .bar-button-danger-wp,
|
15903 | .bar-button-clear-wp-danger,
|
15904 | .bar-button-wp-danger {
|
15905 | color: #d91e18;
|
15906 | background-color: transparent; }
|
15907 | .bar-button-danger-wp:hover:not(.disable-hover),
|
15908 | .bar-button-clear-wp-danger:hover:not(.disable-hover),
|
15909 | .bar-button-wp-danger:hover:not(.disable-hover) {
|
15910 | color: #d91e18; }
|
15911 |
|
15912 | .bar-button-outline-wp-danger {
|
15913 | border-color: #dc302a;
|
15914 | color: #dc302a;
|
15915 | background-color: transparent; }
|
15916 | .bar-button-outline-wp-danger.activated {
|
15917 | color: #fff;
|
15918 | background-color: #dc302a; }
|
15919 |
|
15920 | .bar-button-solid-wp-danger {
|
15921 | color: #fff;
|
15922 | background-color: #d91e18; }
|
15923 | .bar-button-solid-wp-danger.activated {
|
15924 | color: #fff;
|
15925 | background-color: #dc302a; }
|
15926 |
|
15927 | .toolbar-wp-light .toolbar-background-wp {
|
15928 | background: #f4f4f4; }
|
15929 |
|
15930 | .toolbar-wp-light .bar-button-clear-wp,
|
15931 | .toolbar-wp-light .bar-button-default-wp,
|
15932 | .toolbar-wp-light .bar-button-outline-wp,
|
15933 | .toolbar-wp-light .toolbar-title-wp {
|
15934 | color: #000; }
|
15935 |
|
15936 | .toolbar-wp-light .bar-button-outline-wp {
|
15937 | border-color: #000; }
|
15938 |
|
15939 | .toolbar-wp-light .bar-button-primary-wp,
|
15940 | .toolbar-wp-light .bar-button-clear-wp-primary,
|
15941 | .toolbar-wp-light .bar-button-wp-primary {
|
15942 | color: #007aff;
|
15943 | background-color: transparent; }
|
15944 | .toolbar-wp-light .bar-button-primary-wp:hover:not(.disable-hover),
|
15945 | .toolbar-wp-light .bar-button-clear-wp-primary:hover:not(.disable-hover),
|
15946 | .toolbar-wp-light .bar-button-wp-primary:hover:not(.disable-hover) {
|
15947 | color: #007aff; }
|
15948 |
|
15949 | .toolbar-wp-light .bar-button-outline-wp-primary {
|
15950 | border-color: #1485ff;
|
15951 | color: #1485ff;
|
15952 | background-color: transparent; }
|
15953 | .toolbar-wp-light .bar-button-outline-wp-primary.activated {
|
15954 | color: #fff;
|
15955 | background-color: #1485ff; }
|
15956 |
|
15957 | .toolbar-wp-light .bar-button-solid-wp-primary {
|
15958 | color: #fff;
|
15959 | background-color: #007aff; }
|
15960 | .toolbar-wp-light .bar-button-solid-wp-primary.activated {
|
15961 | color: #fff;
|
15962 | background-color: #1485ff; }
|
15963 |
|
15964 | .toolbar-wp-light .bar-button-secondary-wp,
|
15965 | .toolbar-wp-light .bar-button-clear-wp-secondary,
|
15966 | .toolbar-wp-light .bar-button-wp-secondary {
|
15967 | color: #32db64;
|
15968 | background-color: transparent; }
|
15969 | .toolbar-wp-light .bar-button-secondary-wp:hover:not(.disable-hover),
|
15970 | .toolbar-wp-light .bar-button-clear-wp-secondary:hover:not(.disable-hover),
|
15971 | .toolbar-wp-light .bar-button-wp-secondary:hover:not(.disable-hover) {
|
15972 | color: #32db64; }
|
15973 |
|
15974 | .toolbar-wp-light .bar-button-outline-wp-secondary {
|
15975 | border-color: #2ec95c;
|
15976 | color: #2ec95c;
|
15977 | background-color: transparent; }
|
15978 | .toolbar-wp-light .bar-button-outline-wp-secondary.activated {
|
15979 | color: #fff;
|
15980 | background-color: #2ec95c; }
|
15981 |
|
15982 | .toolbar-wp-light .bar-button-solid-wp-secondary {
|
15983 | color: #fff;
|
15984 | background-color: #32db64; }
|
15985 | .toolbar-wp-light .bar-button-solid-wp-secondary.activated {
|
15986 | color: #fff;
|
15987 | background-color: #2ec95c; }
|
15988 |
|
15989 | .toolbar-wp-light .bar-button-danger-wp,
|
15990 | .toolbar-wp-light .bar-button-clear-wp-danger,
|
15991 | .toolbar-wp-light .bar-button-wp-danger {
|
15992 | color: #d91e18;
|
15993 | background-color: transparent; }
|
15994 | .toolbar-wp-light .bar-button-danger-wp:hover:not(.disable-hover),
|
15995 | .toolbar-wp-light .bar-button-clear-wp-danger:hover:not(.disable-hover),
|
15996 | .toolbar-wp-light .bar-button-wp-danger:hover:not(.disable-hover) {
|
15997 | color: #d91e18; }
|
15998 |
|
15999 | .toolbar-wp-light .bar-button-outline-wp-danger {
|
16000 | border-color: #dc302a;
|
16001 | color: #dc302a;
|
16002 | background-color: transparent; }
|
16003 | .toolbar-wp-light .bar-button-outline-wp-danger.activated {
|
16004 | color: #fff;
|
16005 | background-color: #dc302a; }
|
16006 |
|
16007 | .toolbar-wp-light .bar-button-solid-wp-danger {
|
16008 | color: #fff;
|
16009 | background-color: #d91e18; }
|
16010 | .toolbar-wp-light .bar-button-solid-wp-danger.activated {
|
16011 | color: #fff;
|
16012 | background-color: #dc302a; }
|
16013 |
|
16014 | .toolbar-wp-light .bar-button-light-wp,
|
16015 | .toolbar-wp-light .bar-button-clear-wp-light,
|
16016 | .toolbar-wp-light .bar-button-wp-light {
|
16017 | color: #f4f4f4;
|
16018 | background-color: transparent; }
|
16019 | .toolbar-wp-light .bar-button-light-wp:hover:not(.disable-hover),
|
16020 | .toolbar-wp-light .bar-button-clear-wp-light:hover:not(.disable-hover),
|
16021 | .toolbar-wp-light .bar-button-wp-light:hover:not(.disable-hover) {
|
16022 | color: #f4f4f4; }
|
16023 |
|
16024 | .toolbar-wp-light .bar-button-outline-wp-light {
|
16025 | border-color: #e0e0e0;
|
16026 | color: #e0e0e0;
|
16027 | background-color: transparent; }
|
16028 | .toolbar-wp-light .bar-button-outline-wp-light.activated {
|
16029 | color: #000;
|
16030 | background-color: #e0e0e0; }
|
16031 |
|
16032 | .toolbar-wp-light .bar-button-solid-wp-light {
|
16033 | color: #000;
|
16034 | background-color: #f4f4f4; }
|
16035 | .toolbar-wp-light .bar-button-solid-wp-light.activated {
|
16036 | color: #000;
|
16037 | background-color: #e0e0e0; }
|
16038 |
|
16039 | .toolbar-wp-light .bar-button-dark-wp,
|
16040 | .toolbar-wp-light .bar-button-clear-wp-dark,
|
16041 | .toolbar-wp-light .bar-button-wp-dark {
|
16042 | color: #222;
|
16043 | background-color: transparent; }
|
16044 | .toolbar-wp-light .bar-button-dark-wp:hover:not(.disable-hover),
|
16045 | .toolbar-wp-light .bar-button-clear-wp-dark:hover:not(.disable-hover),
|
16046 | .toolbar-wp-light .bar-button-wp-dark:hover:not(.disable-hover) {
|
16047 | color: #222; }
|
16048 |
|
16049 | .toolbar-wp-light .bar-button-outline-wp-dark {
|
16050 | border-color: #343434;
|
16051 | color: #343434;
|
16052 | background-color: transparent; }
|
16053 | .toolbar-wp-light .bar-button-outline-wp-dark.activated {
|
16054 | color: #fff;
|
16055 | background-color: #343434; }
|
16056 |
|
16057 | .toolbar-wp-light .bar-button-solid-wp-dark {
|
16058 | color: #fff;
|
16059 | background-color: #222; }
|
16060 | .toolbar-wp-light .bar-button-solid-wp-dark.activated {
|
16061 | color: #fff;
|
16062 | background-color: #343434; }
|
16063 |
|
16064 | .bar-button-light-wp,
|
16065 | .bar-button-clear-wp-light,
|
16066 | .bar-button-wp-light {
|
16067 | color: #f4f4f4;
|
16068 | background-color: transparent; }
|
16069 | .bar-button-light-wp:hover:not(.disable-hover),
|
16070 | .bar-button-clear-wp-light:hover:not(.disable-hover),
|
16071 | .bar-button-wp-light:hover:not(.disable-hover) {
|
16072 | color: #f4f4f4; }
|
16073 |
|
16074 | .bar-button-outline-wp-light {
|
16075 | border-color: #e0e0e0;
|
16076 | color: #e0e0e0;
|
16077 | background-color: transparent; }
|
16078 | .bar-button-outline-wp-light.activated {
|
16079 | color: #000;
|
16080 | background-color: #e0e0e0; }
|
16081 |
|
16082 | .bar-button-solid-wp-light {
|
16083 | color: #000;
|
16084 | background-color: #f4f4f4; }
|
16085 | .bar-button-solid-wp-light.activated {
|
16086 | color: #000;
|
16087 | background-color: #e0e0e0; }
|
16088 |
|
16089 | .toolbar-wp-dark .toolbar-background-wp {
|
16090 | background: #222; }
|
16091 |
|
16092 | .toolbar-wp-dark .bar-button-clear-wp,
|
16093 | .toolbar-wp-dark .bar-button-default-wp,
|
16094 | .toolbar-wp-dark .bar-button-outline-wp,
|
16095 | .toolbar-wp-dark .toolbar-title-wp {
|
16096 | color: #fff; }
|
16097 |
|
16098 | .toolbar-wp-dark .bar-button-outline-wp {
|
16099 | border-color: #fff; }
|
16100 |
|
16101 | .toolbar-wp-dark .bar-button-primary-wp,
|
16102 | .toolbar-wp-dark .bar-button-clear-wp-primary,
|
16103 | .toolbar-wp-dark .bar-button-wp-primary {
|
16104 | color: #007aff;
|
16105 | background-color: transparent; }
|
16106 | .toolbar-wp-dark .bar-button-primary-wp:hover:not(.disable-hover),
|
16107 | .toolbar-wp-dark .bar-button-clear-wp-primary:hover:not(.disable-hover),
|
16108 | .toolbar-wp-dark .bar-button-wp-primary:hover:not(.disable-hover) {
|
16109 | color: #007aff; }
|
16110 |
|
16111 | .toolbar-wp-dark .bar-button-outline-wp-primary {
|
16112 | border-color: #1485ff;
|
16113 | color: #1485ff;
|
16114 | background-color: transparent; }
|
16115 | .toolbar-wp-dark .bar-button-outline-wp-primary.activated {
|
16116 | color: #fff;
|
16117 | background-color: #1485ff; }
|
16118 |
|
16119 | .toolbar-wp-dark .bar-button-solid-wp-primary {
|
16120 | color: #fff;
|
16121 | background-color: #007aff; }
|
16122 | .toolbar-wp-dark .bar-button-solid-wp-primary.activated {
|
16123 | color: #fff;
|
16124 | background-color: #1485ff; }
|
16125 |
|
16126 | .toolbar-wp-dark .bar-button-secondary-wp,
|
16127 | .toolbar-wp-dark .bar-button-clear-wp-secondary,
|
16128 | .toolbar-wp-dark .bar-button-wp-secondary {
|
16129 | color: #32db64;
|
16130 | background-color: transparent; }
|
16131 | .toolbar-wp-dark .bar-button-secondary-wp:hover:not(.disable-hover),
|
16132 | .toolbar-wp-dark .bar-button-clear-wp-secondary:hover:not(.disable-hover),
|
16133 | .toolbar-wp-dark .bar-button-wp-secondary:hover:not(.disable-hover) {
|
16134 | color: #32db64; }
|
16135 |
|
16136 | .toolbar-wp-dark .bar-button-outline-wp-secondary {
|
16137 | border-color: #2ec95c;
|
16138 | color: #2ec95c;
|
16139 | background-color: transparent; }
|
16140 | .toolbar-wp-dark .bar-button-outline-wp-secondary.activated {
|
16141 | color: #fff;
|
16142 | background-color: #2ec95c; }
|
16143 |
|
16144 | .toolbar-wp-dark .bar-button-solid-wp-secondary {
|
16145 | color: #fff;
|
16146 | background-color: #32db64; }
|
16147 | .toolbar-wp-dark .bar-button-solid-wp-secondary.activated {
|
16148 | color: #fff;
|
16149 | background-color: #2ec95c; }
|
16150 |
|
16151 | .toolbar-wp-dark .bar-button-danger-wp,
|
16152 | .toolbar-wp-dark .bar-button-clear-wp-danger,
|
16153 | .toolbar-wp-dark .bar-button-wp-danger {
|
16154 | color: #d91e18;
|
16155 | background-color: transparent; }
|
16156 | .toolbar-wp-dark .bar-button-danger-wp:hover:not(.disable-hover),
|
16157 | .toolbar-wp-dark .bar-button-clear-wp-danger:hover:not(.disable-hover),
|
16158 | .toolbar-wp-dark .bar-button-wp-danger:hover:not(.disable-hover) {
|
16159 | color: #d91e18; }
|
16160 |
|
16161 | .toolbar-wp-dark .bar-button-outline-wp-danger {
|
16162 | border-color: #dc302a;
|
16163 | color: #dc302a;
|
16164 | background-color: transparent; }
|
16165 | .toolbar-wp-dark .bar-button-outline-wp-danger.activated {
|
16166 | color: #fff;
|
16167 | background-color: #dc302a; }
|
16168 |
|
16169 | .toolbar-wp-dark .bar-button-solid-wp-danger {
|
16170 | color: #fff;
|
16171 | background-color: #d91e18; }
|
16172 | .toolbar-wp-dark .bar-button-solid-wp-danger.activated {
|
16173 | color: #fff;
|
16174 | background-color: #dc302a; }
|
16175 |
|
16176 | .toolbar-wp-dark .bar-button-light-wp,
|
16177 | .toolbar-wp-dark .bar-button-clear-wp-light,
|
16178 | .toolbar-wp-dark .bar-button-wp-light {
|
16179 | color: #f4f4f4;
|
16180 | background-color: transparent; }
|
16181 | .toolbar-wp-dark .bar-button-light-wp:hover:not(.disable-hover),
|
16182 | .toolbar-wp-dark .bar-button-clear-wp-light:hover:not(.disable-hover),
|
16183 | .toolbar-wp-dark .bar-button-wp-light:hover:not(.disable-hover) {
|
16184 | color: #f4f4f4; }
|
16185 |
|
16186 | .toolbar-wp-dark .bar-button-outline-wp-light {
|
16187 | border-color: #e0e0e0;
|
16188 | color: #e0e0e0;
|
16189 | background-color: transparent; }
|
16190 | .toolbar-wp-dark .bar-button-outline-wp-light.activated {
|
16191 | color: #000;
|
16192 | background-color: #e0e0e0; }
|
16193 |
|
16194 | .toolbar-wp-dark .bar-button-solid-wp-light {
|
16195 | color: #000;
|
16196 | background-color: #f4f4f4; }
|
16197 | .toolbar-wp-dark .bar-button-solid-wp-light.activated {
|
16198 | color: #000;
|
16199 | background-color: #e0e0e0; }
|
16200 |
|
16201 | .toolbar-wp-dark .bar-button-dark-wp,
|
16202 | .toolbar-wp-dark .bar-button-clear-wp-dark,
|
16203 | .toolbar-wp-dark .bar-button-wp-dark {
|
16204 | color: #222;
|
16205 | background-color: transparent; }
|
16206 | .toolbar-wp-dark .bar-button-dark-wp:hover:not(.disable-hover),
|
16207 | .toolbar-wp-dark .bar-button-clear-wp-dark:hover:not(.disable-hover),
|
16208 | .toolbar-wp-dark .bar-button-wp-dark:hover:not(.disable-hover) {
|
16209 | color: #222; }
|
16210 |
|
16211 | .toolbar-wp-dark .bar-button-outline-wp-dark {
|
16212 | border-color: #343434;
|
16213 | color: #343434;
|
16214 | background-color: transparent; }
|
16215 | .toolbar-wp-dark .bar-button-outline-wp-dark.activated {
|
16216 | color: #fff;
|
16217 | background-color: #343434; }
|
16218 |
|
16219 | .toolbar-wp-dark .bar-button-solid-wp-dark {
|
16220 | color: #fff;
|
16221 | background-color: #222; }
|
16222 | .toolbar-wp-dark .bar-button-solid-wp-dark.activated {
|
16223 | color: #fff;
|
16224 | background-color: #343434; }
|
16225 |
|
16226 | .bar-button-dark-wp,
|
16227 | .bar-button-clear-wp-dark,
|
16228 | .bar-button-wp-dark {
|
16229 | color: #222;
|
16230 | background-color: transparent; }
|
16231 | .bar-button-dark-wp:hover:not(.disable-hover),
|
16232 | .bar-button-clear-wp-dark:hover:not(.disable-hover),
|
16233 | .bar-button-wp-dark:hover:not(.disable-hover) {
|
16234 | color: #222; }
|
16235 |
|
16236 | .bar-button-outline-wp-dark {
|
16237 | border-color: #343434;
|
16238 | color: #343434;
|
16239 | background-color: transparent; }
|
16240 | .bar-button-outline-wp-dark.activated {
|
16241 | color: #fff;
|
16242 | background-color: #343434; }
|
16243 |
|
16244 | .bar-button-solid-wp-dark {
|
16245 | color: #fff;
|
16246 | background-color: #222; }
|
16247 | .bar-button-solid-wp-dark.activated {
|
16248 | color: #fff;
|
16249 | background-color: #343434; }
|
16250 |
|
16251 | .bar-button-strong-wp {
|
16252 | font-weight: bold; }
|
16253 |
|
16254 | .text-ios-primary {
|
16255 | color: #007aff; }
|
16256 |
|
16257 | .text-ios-secondary {
|
16258 | color: #32db64; }
|
16259 |
|
16260 | .text-ios-danger {
|
16261 | color: #d91e18; }
|
16262 |
|
16263 | .text-ios-light {
|
16264 | color: #f4f4f4; }
|
16265 |
|
16266 | .text-ios-dark {
|
16267 | color: #222; }
|
16268 |
|
16269 | .text-md-primary {
|
16270 | color: #007aff; }
|
16271 |
|
16272 | .text-md-secondary {
|
16273 | color: #32db64; }
|
16274 |
|
16275 | .text-md-danger {
|
16276 | color: #d91e18; }
|
16277 |
|
16278 | .text-md-light {
|
16279 | color: #f4f4f4; }
|
16280 |
|
16281 | .text-md-dark {
|
16282 | color: #222; }
|
16283 |
|
16284 | .text-wp-primary {
|
16285 | color: #007aff; }
|
16286 |
|
16287 | .text-wp-secondary {
|
16288 | color: #32db64; }
|
16289 |
|
16290 | .text-wp-danger {
|
16291 | color: #d91e18; }
|
16292 |
|
16293 | .text-wp-light {
|
16294 | color: #f4f4f4; }
|
16295 |
|
16296 | .text-wp-dark {
|
16297 | color: #222; }
|
16298 |
|
16299 | .virtual-loading {
|
16300 | opacity: 0; }
|
16301 |
|
16302 | .virtual-scroll {
|
16303 | position: relative;
|
16304 | contain: content; }
|
16305 |
|
16306 | .virtual-scroll .virtual-position,
|
16307 | .virtual-scroll .virtual-position.item {
|
16308 | left: 0;
|
16309 | top: 0;
|
16310 | position: absolute;
|
16311 | transition-duration: 0ms;
|
16312 | contain: content; }
|
16313 |
|
16314 | .virtual-scroll .virtual-last {
|
16315 | display: none; }
|
16316 |
|
16317 | .ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
|
16318 | .ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
|
16319 | .ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
|
16320 | .ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
|
16321 | .ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
|
16322 | .ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
|
16323 | .ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
|
16324 | padding-top: calc(20px + 4px);
|
16325 | padding-top: calc(constant(safe-area-inset-top) + 4px);
|
16326 | padding-top: calc(env(safe-area-inset-top) + 4px);
|
16327 | min-height: calc(44px + 20px);
|
16328 | min-height: calc(44px + constant(safe-area-inset-top));
|
16329 | min-height: calc(44px + env(safe-area-inset-top)); }
|
16330 |
|
16331 | .ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
|
16332 | .ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16333 | .ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
|
16334 | .ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16335 | .ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16336 | .ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
|
16337 | .ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
|
16338 | padding-top: 20px;
|
16339 | padding-top: constant(safe-area-inset-top);
|
16340 | padding-top: env(safe-area-inset-top); }
|
16341 |
|
16342 | .ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16343 | .ios ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16344 | .ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16345 | .ios ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16346 | .ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16347 | .ios ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16348 | .ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16349 | .ios ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16350 | .ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16351 | .ios ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16352 | .ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16353 | .ios ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16354 | .ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16355 | .ios ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
|
16356 | padding-top: calc(16px + 20px);
|
16357 | padding-top: constant(safe-area-inset-top);
|
16358 | padding-top: env(safe-area-inset-top); }
|
16359 |
|
16360 | .ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-segment,
|
16361 | .ios ion-nav > .ion-page > .toolbar.statusbar-padding:first-child ion-title,
|
16362 | .ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
|
16363 | .ios ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title,
|
16364 | .ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child ion-segment,
|
16365 | .ios ion-tab > .ion-page > .toolbar.statusbar-padding:first-child ion-title,
|
16366 | .ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
|
16367 | .ios ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title,
|
16368 | .ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
|
16369 | .ios ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child ion-title,
|
16370 | .ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-segment,
|
16371 | .ios ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child ion-title,
|
16372 | .ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
|
16373 | .ios ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child ion-title {
|
16374 | padding-top: 20px;
|
16375 | padding-top: constant(safe-area-inset-top);
|
16376 | padding-top: env(safe-area-inset-top);
|
16377 | height: calc(44px + 20px);
|
16378 | height: calc(44px + constant(safe-area-inset-top));
|
16379 | height: calc(44px + env(safe-area-inset-top));
|
16380 | min-height: calc(44px + 20px);
|
16381 | min-height: calc(44px + constant(safe-area-inset-top));
|
16382 | min-height: calc(44px + env(safe-area-inset-top)); }
|
16383 |
|
16384 | @media only screen and (max-width: 767px) {
|
16385 | .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
|
16386 | padding-top: calc(20px + 4px);
|
16387 | padding-top: calc(constant(safe-area-inset-top) + 4px);
|
16388 | padding-top: calc(env(safe-area-inset-top) + 4px);
|
16389 | min-height: calc(44px + 20px);
|
16390 | min-height: calc(44px + constant(safe-area-inset-top));
|
16391 | min-height: calc(44px + env(safe-area-inset-top)); }
|
16392 | .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
|
16393 | padding-top: 20px;
|
16394 | padding-top: constant(safe-area-inset-top);
|
16395 | padding-top: env(safe-area-inset-top); }
|
16396 | .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16397 | .ios .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
|
16398 | padding-top: calc(16px + 20px);
|
16399 | padding-top: constant(safe-area-inset-top);
|
16400 | padding-top: env(safe-area-inset-top); }
|
16401 | .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-segment,
|
16402 | .ios .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child ion-title {
|
16403 | padding-top: 20px;
|
16404 | padding-top: constant(safe-area-inset-top);
|
16405 | padding-top: env(safe-area-inset-top);
|
16406 | height: calc(44px + 20px);
|
16407 | height: calc(44px + constant(safe-area-inset-top));
|
16408 | height: calc(44px + env(safe-area-inset-top));
|
16409 | min-height: calc(44px + 20px);
|
16410 | min-height: calc(44px + constant(safe-area-inset-top));
|
16411 | min-height: calc(44px + env(safe-area-inset-top)); } }
|
16412 |
|
16413 | .ios .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
|
16414 | padding-bottom: constant(safe-area-inset-bottom);
|
16415 | padding-bottom: env(safe-area-inset-bottom); }
|
16416 |
|
16417 | .ios ion-footer .toolbar:last-child {
|
16418 | padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
|
16419 | padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
|
16420 | min-height: calc(44px + constant(safe-area-inset-bottom));
|
16421 | min-height: calc(44px + env(safe-area-inset-bottom)); }
|
16422 |
|
16423 | .ios .tabs:not(.tabs-ios[tabsPlacement='top']) ion-footer .toolbar:last-child {
|
16424 | padding-bottom: 4px;
|
16425 | min-height: 44px; }
|
16426 |
|
16427 | .md ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
|
16428 | .md ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
|
16429 | .md ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
|
16430 | .md ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
|
16431 | .md ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
|
16432 | .md ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
|
16433 | .md ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
|
16434 | padding-top: calc(20px + 4px);
|
16435 | padding-top: calc(constant(safe-area-inset-top) + 4px);
|
16436 | padding-top: calc(env(safe-area-inset-top) + 4px);
|
16437 | min-height: calc(56px + 20px);
|
16438 | min-height: calc(56px + constant(safe-area-inset-top));
|
16439 | min-height: calc(56px + env(safe-area-inset-top)); }
|
16440 |
|
16441 | .md ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
|
16442 | .md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16443 | .md ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
|
16444 | .md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16445 | .md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16446 | .md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
|
16447 | .md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
|
16448 | padding-top: 20px;
|
16449 | padding-top: constant(safe-area-inset-top);
|
16450 | padding-top: env(safe-area-inset-top); }
|
16451 |
|
16452 | .md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16453 | .md ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16454 | .md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16455 | .md ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16456 | .md ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16457 | .md ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16458 | .md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16459 | .md ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16460 | .md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16461 | .md ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16462 | .md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16463 | .md ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16464 | .md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16465 | .md ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
|
16466 | padding-top: calc(16px + 20px);
|
16467 | padding-top: constant(safe-area-inset-top);
|
16468 | padding-top: env(safe-area-inset-top); }
|
16469 |
|
16470 | @media only screen and (max-width: 767px) {
|
16471 | .md .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
|
16472 | padding-top: calc(20px + 4px);
|
16473 | padding-top: calc(constant(safe-area-inset-top) + 4px);
|
16474 | padding-top: calc(env(safe-area-inset-top) + 4px);
|
16475 | min-height: calc(56px + 20px);
|
16476 | min-height: calc(56px + constant(safe-area-inset-top));
|
16477 | min-height: calc(56px + env(safe-area-inset-top)); }
|
16478 | .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
|
16479 | padding-top: 20px;
|
16480 | padding-top: constant(safe-area-inset-top);
|
16481 | padding-top: env(safe-area-inset-top); }
|
16482 | .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16483 | .md .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
|
16484 | padding-top: calc(16px + 20px);
|
16485 | padding-top: constant(safe-area-inset-top);
|
16486 | padding-top: env(safe-area-inset-top); } }
|
16487 |
|
16488 | .md .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
|
16489 | padding-bottom: constant(safe-area-inset-bottom);
|
16490 | padding-bottom: env(safe-area-inset-bottom); }
|
16491 |
|
16492 | .md ion-footer .toolbar:last-child {
|
16493 | padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
|
16494 | padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
|
16495 | min-height: calc(56px + constant(safe-area-inset-bottom));
|
16496 | min-height: calc(56px + env(safe-area-inset-bottom)); }
|
16497 |
|
16498 | .md .tabs:not(.tabs-ios[tabsPlacement='top']) ion-footer .toolbar:last-child {
|
16499 | padding-bottom: 4px;
|
16500 | min-height: 56px; }
|
16501 |
|
16502 | .wp ion-nav > .ion-page > .toolbar.statusbar-padding:first-child,
|
16503 | .wp ion-nav > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
|
16504 | .wp ion-tab > .ion-page > .toolbar.statusbar-padding:first-child,
|
16505 | .wp ion-tab > .ion-page > ion-header > .toolbar.statusbar-padding:first-child,
|
16506 | .wp ion-tabs > .ion-page.tab-subpage > ion-header > .toolbar.statusbar-padding:first-child,
|
16507 | .wp ion-menu > .menu-inner > .toolbar.statusbar-padding:first-child,
|
16508 | .wp ion-menu > .menu-inner > ion-header > .toolbar.statusbar-padding:first-child {
|
16509 | padding-top: calc(20px + 4px);
|
16510 | padding-top: calc(constant(safe-area-inset-top) + 4px);
|
16511 | padding-top: calc(env(safe-area-inset-top) + 4px);
|
16512 | min-height: calc(46px + 20px);
|
16513 | min-height: calc(46px + constant(safe-area-inset-top));
|
16514 | min-height: calc(46px + env(safe-area-inset-top)); }
|
16515 |
|
16516 | .wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
|
16517 | .wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16518 | .wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child .scroll-content,
|
16519 | .wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16520 | .wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child .scroll-content,
|
16521 | .wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child .scroll-content,
|
16522 | .wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
|
16523 | padding-top: 20px;
|
16524 | padding-top: constant(safe-area-inset-top);
|
16525 | padding-top: env(safe-area-inset-top); }
|
16526 |
|
16527 | .wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16528 | .wp ion-nav > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16529 | .wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16530 | .wp ion-nav > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16531 | .wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16532 | .wp ion-tab > .ion-page > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16533 | .wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16534 | .wp ion-tab > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16535 | .wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16536 | .wp ion-tabs > .ion-page.tab-subpage > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16537 | .wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16538 | .wp ion-menu > .menu-inner > ion-content.statusbar-padding:first-child[padding-top] .scroll-content,
|
16539 | .wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16540 | .wp ion-menu > .menu-inner > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
|
16541 | padding-top: calc(16px + 20px);
|
16542 | padding-top: constant(safe-area-inset-top);
|
16543 | padding-top: env(safe-area-inset-top); }
|
16544 |
|
16545 | @media only screen and (max-width: 767px) {
|
16546 | .wp .modal-wrapper > .ion-page > ion-header > .toolbar.statusbar-padding:first-child {
|
16547 | padding-top: calc(20px + 4px);
|
16548 | padding-top: calc(constant(safe-area-inset-top) + 4px);
|
16549 | padding-top: calc(env(safe-area-inset-top) + 4px);
|
16550 | min-height: calc(46px + 20px);
|
16551 | min-height: calc(46px + constant(safe-area-inset-top));
|
16552 | min-height: calc(46px + env(safe-area-inset-top)); }
|
16553 | .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child .scroll-content {
|
16554 | padding-top: 20px;
|
16555 | padding-top: constant(safe-area-inset-top);
|
16556 | padding-top: env(safe-area-inset-top); }
|
16557 | .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding] .scroll-content,
|
16558 | .wp .modal-wrapper > .ion-page > ion-header > ion-content.statusbar-padding:first-child[padding-top] .scroll-content {
|
16559 | padding-top: calc(16px + 20px);
|
16560 | padding-top: constant(safe-area-inset-top);
|
16561 | padding-top: env(safe-area-inset-top); } }
|
16562 |
|
16563 | .wp .tabs:not(.tabs-ios[tabsPlacement=top]) .tabbar {
|
16564 | padding-bottom: constant(safe-area-inset-bottom);
|
16565 | padding-bottom: env(safe-area-inset-bottom); }
|
16566 |
|
16567 | .wp ion-footer .toolbar:last-child {
|
16568 | padding-bottom: calc(constant(safe-area-inset-bottom) + 4px);
|
16569 | padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
|
16570 | min-height: calc(46px + constant(safe-area-inset-bottom));
|
16571 | min-height: calc(46px + env(safe-area-inset-bottom)); }
|
16572 |
|
16573 | .wp .tabs:not(.tabs-ios[tabsPlacement='top']) ion-footer .toolbar:last-child {
|
16574 | padding-bottom: 4px;
|
16575 | min-height: 46px; }
|
16576 |
|
16577 | .ion-ios-add:before {
|
16578 | content: "\f102"; }
|
16579 |
|
16580 | .ion-ios-add-circle:before {
|
16581 | content: "\f101"; }
|
16582 |
|
16583 | .ion-ios-add-circle-outline:before {
|
16584 | content: "\f100"; }
|
16585 |
|
16586 | .ion-ios-add-outline:before {
|
16587 | content: "\f102"; }
|
16588 |
|
16589 | .ion-ios-alarm:before {
|
16590 | content: "\f3c8"; }
|
16591 |
|
16592 | .ion-ios-alarm-outline:before {
|
16593 | content: "\f3c7"; }
|
16594 |
|
16595 | .ion-ios-albums:before {
|
16596 | content: "\f3ca"; }
|
16597 |
|
16598 | .ion-ios-albums-outline:before {
|
16599 | content: "\f3c9"; }
|
16600 |
|
16601 | .ion-ios-alert:before {
|
16602 | content: "\f104"; }
|
16603 |
|
16604 | .ion-ios-alert-outline:before {
|
16605 | content: "\f103"; }
|
16606 |
|
16607 | .ion-ios-american-football:before {
|
16608 | content: "\f106"; }
|
16609 |
|
16610 | .ion-ios-american-football-outline:before {
|
16611 | content: "\f105"; }
|
16612 |
|
16613 | .ion-ios-analytics:before {
|
16614 | content: "\f3ce"; }
|
16615 |
|
16616 | .ion-ios-analytics-outline:before {
|
16617 | content: "\f3cd"; }
|
16618 |
|
16619 | .ion-ios-aperture:before {
|
16620 | content: "\f108"; }
|
16621 |
|
16622 | .ion-ios-aperture-outline:before {
|
16623 | content: "\f107"; }
|
16624 |
|
16625 | .ion-ios-apps:before {
|
16626 | content: "\f10a"; }
|
16627 |
|
16628 | .ion-ios-apps-outline:before {
|
16629 | content: "\f109"; }
|
16630 |
|
16631 | .ion-ios-appstore:before {
|
16632 | content: "\f10c"; }
|
16633 |
|
16634 | .ion-ios-appstore-outline:before {
|
16635 | content: "\f10b"; }
|
16636 |
|
16637 | .ion-ios-archive:before {
|
16638 | content: "\f10e"; }
|
16639 |
|
16640 | .ion-ios-archive-outline:before {
|
16641 | content: "\f10d"; }
|
16642 |
|
16643 | .ion-ios-arrow-back:before {
|
16644 | content: "\f3cf"; }
|
16645 |
|
16646 | .ion-ios-arrow-back-outline:before {
|
16647 | content: "\f3cf"; }
|
16648 |
|
16649 | .ion-ios-arrow-down:before {
|
16650 | content: "\f3d0"; }
|
16651 |
|
16652 | .ion-ios-arrow-down-outline:before {
|
16653 | content: "\f3d0"; }
|
16654 |
|
16655 | .ion-ios-arrow-dropdown:before {
|
16656 | content: "\f110"; }
|
16657 |
|
16658 | .ion-ios-arrow-dropdown-circle:before {
|
16659 | content: "\f10f"; }
|
16660 |
|
16661 | .ion-ios-arrow-dropdown-circle-outline:before {
|
16662 | content: "\f10f"; }
|
16663 |
|
16664 | .ion-ios-arrow-dropdown-outline:before {
|
16665 | content: "\f110"; }
|
16666 |
|
16667 | .ion-ios-arrow-dropleft:before {
|
16668 | content: "\f112"; }
|
16669 |
|
16670 | .ion-ios-arrow-dropleft-circle:before {
|
16671 | content: "\f111"; }
|
16672 |
|
16673 | .ion-ios-arrow-dropleft-circle-outline:before {
|
16674 | content: "\f111"; }
|
16675 |
|
16676 | .ion-ios-arrow-dropleft-outline:before {
|
16677 | content: "\f112"; }
|
16678 |
|
16679 | .ion-ios-arrow-dropright:before {
|
16680 | content: "\f114"; }
|
16681 |
|
16682 | .ion-ios-arrow-dropright-circle:before {
|
16683 | content: "\f113"; }
|
16684 |
|
16685 | .ion-ios-arrow-dropright-circle-outline:before {
|
16686 | content: "\f113"; }
|
16687 |
|
16688 | .ion-ios-arrow-dropright-outline:before {
|
16689 | content: "\f114"; }
|
16690 |
|
16691 | .ion-ios-arrow-dropup:before {
|
16692 | content: "\f116"; }
|
16693 |
|
16694 | .ion-ios-arrow-dropup-circle:before {
|
16695 | content: "\f115"; }
|
16696 |
|
16697 | .ion-ios-arrow-dropup-circle-outline:before {
|
16698 | content: "\f115"; }
|
16699 |
|
16700 | .ion-ios-arrow-dropup-outline:before {
|
16701 | content: "\f116"; }
|
16702 |
|
16703 | .ion-ios-arrow-forward:before {
|
16704 | content: "\f3d1"; }
|
16705 |
|
16706 | .ion-ios-arrow-forward-outline:before {
|
16707 | content: "\f3d1"; }
|
16708 |
|
16709 | .ion-ios-arrow-round-back:before {
|
16710 | content: "\f117"; }
|
16711 |
|
16712 | .ion-ios-arrow-round-back-outline:before {
|
16713 | content: "\f117"; }
|
16714 |
|
16715 | .ion-ios-arrow-round-down:before {
|
16716 | content: "\f118"; }
|
16717 |
|
16718 | .ion-ios-arrow-round-down-outline:before {
|
16719 | content: "\f118"; }
|
16720 |
|
16721 | .ion-ios-arrow-round-forward:before {
|
16722 | content: "\f119"; }
|
16723 |
|
16724 | .ion-ios-arrow-round-forward-outline:before {
|
16725 | content: "\f119"; }
|
16726 |
|
16727 | .ion-ios-arrow-round-up:before {
|
16728 | content: "\f11a"; }
|
16729 |
|
16730 | .ion-ios-arrow-round-up-outline:before {
|
16731 | content: "\f11a"; }
|
16732 |
|
16733 | .ion-ios-arrow-up:before {
|
16734 | content: "\f3d8"; }
|
16735 |
|
16736 | .ion-ios-arrow-up-outline:before {
|
16737 | content: "\f3d8"; }
|
16738 |
|
16739 | .ion-ios-at:before {
|
16740 | content: "\f3da"; }
|
16741 |
|
16742 | .ion-ios-at-outline:before {
|
16743 | content: "\f3d9"; }
|
16744 |
|
16745 | .ion-ios-attach:before {
|
16746 | content: "\f11b"; }
|
16747 |
|
16748 | .ion-ios-attach-outline:before {
|
16749 | content: "\f11b"; }
|
16750 |
|
16751 | .ion-ios-backspace:before {
|
16752 | content: "\f11d"; }
|
16753 |
|
16754 | .ion-ios-backspace-outline:before {
|
16755 | content: "\f11c"; }
|
16756 |
|
16757 | .ion-ios-barcode:before {
|
16758 | content: "\f3dc"; }
|
16759 |
|
16760 | .ion-ios-barcode-outline:before {
|
16761 | content: "\f3db"; }
|
16762 |
|
16763 | .ion-ios-baseball:before {
|
16764 | content: "\f3de"; }
|
16765 |
|
16766 | .ion-ios-baseball-outline:before {
|
16767 | content: "\f3dd"; }
|
16768 |
|
16769 | .ion-ios-basket:before {
|
16770 | content: "\f11f"; }
|
16771 |
|
16772 | .ion-ios-basket-outline:before {
|
16773 | content: "\f11e"; }
|
16774 |
|
16775 | .ion-ios-basketball:before {
|
16776 | content: "\f3e0"; }
|
16777 |
|
16778 | .ion-ios-basketball-outline:before {
|
16779 | content: "\f3df"; }
|
16780 |
|
16781 | .ion-ios-battery-charging:before {
|
16782 | content: "\f120"; }
|
16783 |
|
16784 | .ion-ios-battery-charging-outline:before {
|
16785 | content: "\f120"; }
|
16786 |
|
16787 | .ion-ios-battery-dead:before {
|
16788 | content: "\f121"; }
|
16789 |
|
16790 | .ion-ios-battery-dead-outline:before {
|
16791 | content: "\f121"; }
|
16792 |
|
16793 | .ion-ios-battery-full:before {
|
16794 | content: "\f122"; }
|
16795 |
|
16796 | .ion-ios-battery-full-outline:before {
|
16797 | content: "\f122"; }
|
16798 |
|
16799 | .ion-ios-beaker:before {
|
16800 | content: "\f124"; }
|
16801 |
|
16802 | .ion-ios-beaker-outline:before {
|
16803 | content: "\f123"; }
|
16804 |
|
16805 | .ion-ios-beer:before {
|
16806 | content: "\f126"; }
|
16807 |
|
16808 | .ion-ios-beer-outline:before {
|
16809 | content: "\f125"; }
|
16810 |
|
16811 | .ion-ios-bicycle:before {
|
16812 | content: "\f127"; }
|
16813 |
|
16814 | .ion-ios-bicycle-outline:before {
|
16815 | content: "\f127"; }
|
16816 |
|
16817 | .ion-ios-bluetooth:before {
|
16818 | content: "\f128"; }
|
16819 |
|
16820 | .ion-ios-bluetooth-outline:before {
|
16821 | content: "\f128"; }
|
16822 |
|
16823 | .ion-ios-boat:before {
|
16824 | content: "\f12a"; }
|
16825 |
|
16826 | .ion-ios-boat-outline:before {
|
16827 | content: "\f129"; }
|
16828 |
|
16829 | .ion-ios-body:before {
|
16830 | content: "\f3e4"; }
|
16831 |
|
16832 | .ion-ios-body-outline:before {
|
16833 | content: "\f3e3"; }
|
16834 |
|
16835 | .ion-ios-bonfire:before {
|
16836 | content: "\f12c"; }
|
16837 |
|
16838 | .ion-ios-bonfire-outline:before {
|
16839 | content: "\f12b"; }
|
16840 |
|
16841 | .ion-ios-book:before {
|
16842 | content: "\f3e8"; }
|
16843 |
|
16844 | .ion-ios-book-outline:before {
|
16845 | content: "\f3e7"; }
|
16846 |
|
16847 | .ion-ios-bookmark:before {
|
16848 | content: "\f12e"; }
|
16849 |
|
16850 | .ion-ios-bookmark-outline:before {
|
16851 | content: "\f12d"; }
|
16852 |
|
16853 | .ion-ios-bookmarks:before {
|
16854 | content: "\f3ea"; }
|
16855 |
|
16856 | .ion-ios-bookmarks-outline:before {
|
16857 | content: "\f3e9"; }
|
16858 |
|
16859 | .ion-ios-bowtie:before {
|
16860 | content: "\f130"; }
|
16861 |
|
16862 | .ion-ios-bowtie-outline:before {
|
16863 | content: "\f12f"; }
|
16864 |
|
16865 | .ion-ios-briefcase:before {
|
16866 | content: "\f3ee"; }
|
16867 |
|
16868 | .ion-ios-briefcase-outline:before {
|
16869 | content: "\f3ed"; }
|
16870 |
|
16871 | .ion-ios-browsers:before {
|
16872 | content: "\f3f0"; }
|
16873 |
|
16874 | .ion-ios-browsers-outline:before {
|
16875 | content: "\f3ef"; }
|
16876 |
|
16877 | .ion-ios-brush:before {
|
16878 | content: "\f132"; }
|
16879 |
|
16880 | .ion-ios-brush-outline:before {
|
16881 | content: "\f131"; }
|
16882 |
|
16883 | .ion-ios-bug:before {
|
16884 | content: "\f134"; }
|
16885 |
|
16886 | .ion-ios-bug-outline:before {
|
16887 | content: "\f133"; }
|
16888 |
|
16889 | .ion-ios-build:before {
|
16890 | content: "\f136"; }
|
16891 |
|
16892 | .ion-ios-build-outline:before {
|
16893 | content: "\f135"; }
|
16894 |
|
16895 | .ion-ios-bulb:before {
|
16896 | content: "\f138"; }
|
16897 |
|
16898 | .ion-ios-bulb-outline:before {
|
16899 | content: "\f137"; }
|
16900 |
|
16901 | .ion-ios-bus:before {
|
16902 | content: "\f13a"; }
|
16903 |
|
16904 | .ion-ios-bus-outline:before {
|
16905 | content: "\f139"; }
|
16906 |
|
16907 | .ion-ios-cafe:before {
|
16908 | content: "\f13c"; }
|
16909 |
|
16910 | .ion-ios-cafe-outline:before {
|
16911 | content: "\f13b"; }
|
16912 |
|
16913 | .ion-ios-calculator:before {
|
16914 | content: "\f3f2"; }
|
16915 |
|
16916 | .ion-ios-calculator-outline:before {
|
16917 | content: "\f3f1"; }
|
16918 |
|
16919 | .ion-ios-calendar:before {
|
16920 | content: "\f3f4"; }
|
16921 |
|
16922 | .ion-ios-calendar-outline:before {
|
16923 | content: "\f3f3"; }
|
16924 |
|
16925 | .ion-ios-call:before {
|
16926 | content: "\f13e"; }
|
16927 |
|
16928 | .ion-ios-call-outline:before {
|
16929 | content: "\f13d"; }
|
16930 |
|
16931 | .ion-ios-camera:before {
|
16932 | content: "\f3f6"; }
|
16933 |
|
16934 | .ion-ios-camera-outline:before {
|
16935 | content: "\f3f5"; }
|
16936 |
|
16937 | .ion-ios-car:before {
|
16938 | content: "\f140"; }
|
16939 |
|
16940 | .ion-ios-car-outline:before {
|
16941 | content: "\f13f"; }
|
16942 |
|
16943 | .ion-ios-card:before {
|
16944 | content: "\f142"; }
|
16945 |
|
16946 | .ion-ios-card-outline:before {
|
16947 | content: "\f141"; }
|
16948 |
|
16949 | .ion-ios-cart:before {
|
16950 | content: "\f3f8"; }
|
16951 |
|
16952 | .ion-ios-cart-outline:before {
|
16953 | content: "\f3f7"; }
|
16954 |
|
16955 | .ion-ios-cash:before {
|
16956 | content: "\f144"; }
|
16957 |
|
16958 | .ion-ios-cash-outline:before {
|
16959 | content: "\f143"; }
|
16960 |
|
16961 | .ion-ios-chatboxes:before {
|
16962 | content: "\f3fa"; }
|
16963 |
|
16964 | .ion-ios-chatboxes-outline:before {
|
16965 | content: "\f3f9"; }
|
16966 |
|
16967 | .ion-ios-chatbubbles:before {
|
16968 | content: "\f146"; }
|
16969 |
|
16970 | .ion-ios-chatbubbles-outline:before {
|
16971 | content: "\f145"; }
|
16972 |
|
16973 | .ion-ios-checkbox:before {
|
16974 | content: "\f148"; }
|
16975 |
|
16976 | .ion-ios-checkbox-outline:before {
|
16977 | content: "\f147"; }
|
16978 |
|
16979 | .ion-ios-checkmark:before {
|
16980 | content: "\f3ff"; }
|
16981 |
|
16982 | .ion-ios-checkmark-circle:before {
|
16983 | content: "\f14a"; }
|
16984 |
|
16985 | .ion-ios-checkmark-circle-outline:before {
|
16986 | content: "\f149"; }
|
16987 |
|
16988 | .ion-ios-checkmark-outline:before {
|
16989 | content: "\f3ff"; }
|
16990 |
|
16991 | .ion-ios-clipboard:before {
|
16992 | content: "\f14c"; }
|
16993 |
|
16994 | .ion-ios-clipboard-outline:before {
|
16995 | content: "\f14b"; }
|
16996 |
|
16997 | .ion-ios-clock:before {
|
16998 | content: "\f403"; }
|
16999 |
|
17000 | .ion-ios-clock-outline:before {
|
17001 | content: "\f402"; }
|
17002 |
|
17003 | .ion-ios-close:before {
|
17004 | content: "\f406"; }
|
17005 |
|
17006 | .ion-ios-close-circle:before {
|
17007 | content: "\f14e"; }
|
17008 |
|
17009 | .ion-ios-close-circle-outline:before {
|
17010 | content: "\f14d"; }
|
17011 |
|
17012 | .ion-ios-close-outline:before {
|
17013 | content: "\f406"; }
|
17014 |
|
17015 | .ion-ios-closed-captioning:before {
|
17016 | content: "\f150"; }
|
17017 |
|
17018 | .ion-ios-closed-captioning-outline:before {
|
17019 | content: "\f14f"; }
|
17020 |
|
17021 | .ion-ios-cloud:before {
|
17022 | content: "\f40c"; }
|
17023 |
|
17024 | .ion-ios-cloud-circle:before {
|
17025 | content: "\f152"; }
|
17026 |
|
17027 | .ion-ios-cloud-circle-outline:before {
|
17028 | content: "\f151"; }
|
17029 |
|
17030 | .ion-ios-cloud-done:before {
|
17031 | content: "\f154"; }
|
17032 |
|
17033 | .ion-ios-cloud-done-outline:before {
|
17034 | content: "\f153"; }
|
17035 |
|
17036 | .ion-ios-cloud-download:before {
|
17037 | content: "\f408"; }
|
17038 |
|
17039 | .ion-ios-cloud-download-outline:before {
|
17040 | content: "\f407"; }
|
17041 |
|
17042 | .ion-ios-cloud-outline:before {
|
17043 | content: "\f409"; }
|
17044 |
|
17045 | .ion-ios-cloud-upload:before {
|
17046 | content: "\f40b"; }
|
17047 |
|
17048 | .ion-ios-cloud-upload-outline:before {
|
17049 | content: "\f40a"; }
|
17050 |
|
17051 | .ion-ios-cloudy:before {
|
17052 | content: "\f410"; }
|
17053 |
|
17054 | .ion-ios-cloudy-night:before {
|
17055 | content: "\f40e"; }
|
17056 |
|
17057 | .ion-ios-cloudy-night-outline:before {
|
17058 | content: "\f40d"; }
|
17059 |
|
17060 | .ion-ios-cloudy-outline:before {
|
17061 | content: "\f40f"; }
|
17062 |
|
17063 | .ion-ios-code:before {
|
17064 | content: "\f157"; }
|
17065 |
|
17066 | .ion-ios-code-download:before {
|
17067 | content: "\f155"; }
|
17068 |
|
17069 | .ion-ios-code-download-outline:before {
|
17070 | content: "\f155"; }
|
17071 |
|
17072 | .ion-ios-code-outline:before {
|
17073 | content: "\f157"; }
|
17074 |
|
17075 | .ion-ios-code-working:before {
|
17076 | content: "\f156"; }
|
17077 |
|
17078 | .ion-ios-code-working-outline:before {
|
17079 | content: "\f156"; }
|
17080 |
|
17081 | .ion-ios-cog:before {
|
17082 | content: "\f412"; }
|
17083 |
|
17084 | .ion-ios-cog-outline:before {
|
17085 | content: "\f411"; }
|
17086 |
|
17087 | .ion-ios-color-fill:before {
|
17088 | content: "\f159"; }
|
17089 |
|
17090 | .ion-ios-color-fill-outline:before {
|
17091 | content: "\f158"; }
|
17092 |
|
17093 | .ion-ios-color-filter:before {
|
17094 | content: "\f414"; }
|
17095 |
|
17096 | .ion-ios-color-filter-outline:before {
|
17097 | content: "\f413"; }
|
17098 |
|
17099 | .ion-ios-color-palette:before {
|
17100 | content: "\f15b"; }
|
17101 |
|
17102 | .ion-ios-color-palette-outline:before {
|
17103 | content: "\f15a"; }
|
17104 |
|
17105 | .ion-ios-color-wand:before {
|
17106 | content: "\f416"; }
|
17107 |
|
17108 | .ion-ios-color-wand-outline:before {
|
17109 | content: "\f415"; }
|
17110 |
|
17111 | .ion-ios-compass:before {
|
17112 | content: "\f15d"; }
|
17113 |
|
17114 | .ion-ios-compass-outline:before {
|
17115 | content: "\f15c"; }
|
17116 |
|
17117 | .ion-ios-construct:before {
|
17118 | content: "\f15f"; }
|
17119 |
|
17120 | .ion-ios-construct-outline:before {
|
17121 | content: "\f15e"; }
|
17122 |
|
17123 | .ion-ios-contact:before {
|
17124 | content: "\f41a"; }
|
17125 |
|
17126 | .ion-ios-contact-outline:before {
|
17127 | content: "\f419"; }
|
17128 |
|
17129 | .ion-ios-contacts:before {
|
17130 | content: "\f161"; }
|
17131 |
|
17132 | .ion-ios-contacts-outline:before {
|
17133 | content: "\f160"; }
|
17134 |
|
17135 | .ion-ios-contract:before {
|
17136 | content: "\f162"; }
|
17137 |
|
17138 | .ion-ios-contract-outline:before {
|
17139 | content: "\f162"; }
|
17140 |
|
17141 | .ion-ios-contrast:before {
|
17142 | content: "\f163"; }
|
17143 |
|
17144 | .ion-ios-contrast-outline:before {
|
17145 | content: "\f163"; }
|
17146 |
|
17147 | .ion-ios-copy:before {
|
17148 | content: "\f41c"; }
|
17149 |
|
17150 | .ion-ios-copy-outline:before {
|
17151 | content: "\f41b"; }
|
17152 |
|
17153 | .ion-ios-create:before {
|
17154 | content: "\f165"; }
|
17155 |
|
17156 | .ion-ios-create-outline:before {
|
17157 | content: "\f164"; }
|
17158 |
|
17159 | .ion-ios-crop:before {
|
17160 | content: "\f41e"; }
|
17161 |
|
17162 | .ion-ios-crop-outline:before {
|
17163 | content: "\f166"; }
|
17164 |
|
17165 | .ion-ios-cube:before {
|
17166 | content: "\f168"; }
|
17167 |
|
17168 | .ion-ios-cube-outline:before {
|
17169 | content: "\f167"; }
|
17170 |
|
17171 | .ion-ios-cut:before {
|
17172 | content: "\f16a"; }
|
17173 |
|
17174 | .ion-ios-cut-outline:before {
|
17175 | content: "\f169"; }
|
17176 |
|
17177 | .ion-ios-desktop:before {
|
17178 | content: "\f16c"; }
|
17179 |
|
17180 | .ion-ios-desktop-outline:before {
|
17181 | content: "\f16b"; }
|
17182 |
|
17183 | .ion-ios-disc:before {
|
17184 | content: "\f16e"; }
|
17185 |
|
17186 | .ion-ios-disc-outline:before {
|
17187 | content: "\f16d"; }
|
17188 |
|
17189 | .ion-ios-document:before {
|
17190 | content: "\f170"; }
|
17191 |
|
17192 | .ion-ios-document-outline:before {
|
17193 | content: "\f16f"; }
|
17194 |
|
17195 | .ion-ios-done-all:before {
|
17196 | content: "\f171"; }
|
17197 |
|
17198 | .ion-ios-done-all-outline:before {
|
17199 | content: "\f171"; }
|
17200 |
|
17201 | .ion-ios-download:before {
|
17202 | content: "\f420"; }
|
17203 |
|
17204 | .ion-ios-download-outline:before {
|
17205 | content: "\f41f"; }
|
17206 |
|
17207 | .ion-ios-easel:before {
|
17208 | content: "\f173"; }
|
17209 |
|
17210 | .ion-ios-easel-outline:before {
|
17211 | content: "\f172"; }
|
17212 |
|
17213 | .ion-ios-egg:before {
|
17214 | content: "\f175"; }
|
17215 |
|
17216 | .ion-ios-egg-outline:before {
|
17217 | content: "\f174"; }
|
17218 |
|
17219 | .ion-ios-exit:before {
|
17220 | content: "\f177"; }
|
17221 |
|
17222 | .ion-ios-exit-outline:before {
|
17223 | content: "\f176"; }
|
17224 |
|
17225 | .ion-ios-expand:before {
|
17226 | content: "\f178"; }
|
17227 |
|
17228 | .ion-ios-expand-outline:before {
|
17229 | content: "\f178"; }
|
17230 |
|
17231 | .ion-ios-eye:before {
|
17232 | content: "\f425"; }
|
17233 |
|
17234 | .ion-ios-eye-off:before {
|
17235 | content: "\f17a"; }
|
17236 |
|
17237 | .ion-ios-eye-off-outline:before {
|
17238 | content: "\f179"; }
|
17239 |
|
17240 | .ion-ios-eye-outline:before {
|
17241 | content: "\f424"; }
|
17242 |
|
17243 | .ion-ios-fastforward:before {
|
17244 | content: "\f427"; }
|
17245 |
|
17246 | .ion-ios-fastforward-outline:before {
|
17247 | content: "\f426"; }
|
17248 |
|
17249 | .ion-ios-female:before {
|
17250 | content: "\f17b"; }
|
17251 |
|
17252 | .ion-ios-female-outline:before {
|
17253 | content: "\f17b"; }
|
17254 |
|
17255 | .ion-ios-filing:before {
|
17256 | content: "\f429"; }
|
17257 |
|
17258 | .ion-ios-filing-outline:before {
|
17259 | content: "\f428"; }
|
17260 |
|
17261 | .ion-ios-film:before {
|
17262 | content: "\f42b"; }
|
17263 |
|
17264 | .ion-ios-film-outline:before {
|
17265 | content: "\f42a"; }
|
17266 |
|
17267 | .ion-ios-finger-print:before {
|
17268 | content: "\f17c"; }
|
17269 |
|
17270 | .ion-ios-finger-print-outline:before {
|
17271 | content: "\f17c"; }
|
17272 |
|
17273 | .ion-ios-flag:before {
|
17274 | content: "\f42d"; }
|
17275 |
|
17276 | .ion-ios-flag-outline:before {
|
17277 | content: "\f42c"; }
|
17278 |
|
17279 | .ion-ios-flame:before {
|
17280 | content: "\f42f"; }
|
17281 |
|
17282 | .ion-ios-flame-outline:before {
|
17283 | content: "\f42e"; }
|
17284 |
|
17285 | .ion-ios-flash:before {
|
17286 | content: "\f17e"; }
|
17287 |
|
17288 | .ion-ios-flash-outline:before {
|
17289 | content: "\f17d"; }
|
17290 |
|
17291 | .ion-ios-flask:before {
|
17292 | content: "\f431"; }
|
17293 |
|
17294 | .ion-ios-flask-outline:before {
|
17295 | content: "\f430"; }
|
17296 |
|
17297 | .ion-ios-flower:before {
|
17298 | content: "\f433"; }
|
17299 |
|
17300 | .ion-ios-flower-outline:before {
|
17301 | content: "\f432"; }
|
17302 |
|
17303 | .ion-ios-folder:before {
|
17304 | content: "\f435"; }
|
17305 |
|
17306 | .ion-ios-folder-open:before {
|
17307 | content: "\f180"; }
|
17308 |
|
17309 | .ion-ios-folder-open-outline:before {
|
17310 | content: "\f17f"; }
|
17311 |
|
17312 | .ion-ios-folder-outline:before {
|
17313 | content: "\f434"; }
|
17314 |
|
17315 | .ion-ios-football:before {
|
17316 | content: "\f437"; }
|
17317 |
|
17318 | .ion-ios-football-outline:before {
|
17319 | content: "\f436"; }
|
17320 |
|
17321 | .ion-ios-funnel:before {
|
17322 | content: "\f182"; }
|
17323 |
|
17324 | .ion-ios-funnel-outline:before {
|
17325 | content: "\f181"; }
|
17326 |
|
17327 | .ion-ios-game-controller-a:before {
|
17328 | content: "\f439"; }
|
17329 |
|
17330 | .ion-ios-game-controller-a-outline:before {
|
17331 | content: "\f438"; }
|
17332 |
|
17333 | .ion-ios-game-controller-b:before {
|
17334 | content: "\f43b"; }
|
17335 |
|
17336 | .ion-ios-game-controller-b-outline:before {
|
17337 | content: "\f43a"; }
|
17338 |
|
17339 | .ion-ios-git-branch:before {
|
17340 | content: "\f183"; }
|
17341 |
|
17342 | .ion-ios-git-branch-outline:before {
|
17343 | content: "\f183"; }
|
17344 |
|
17345 | .ion-ios-git-commit:before {
|
17346 | content: "\f184"; }
|
17347 |
|
17348 | .ion-ios-git-commit-outline:before {
|
17349 | content: "\f184"; }
|
17350 |
|
17351 | .ion-ios-git-compare:before {
|
17352 | content: "\f185"; }
|
17353 |
|
17354 | .ion-ios-git-compare-outline:before {
|
17355 | content: "\f185"; }
|
17356 |
|
17357 | .ion-ios-git-merge:before {
|
17358 | content: "\f186"; }
|
17359 |
|
17360 | .ion-ios-git-merge-outline:before {
|
17361 | content: "\f186"; }
|
17362 |
|
17363 | .ion-ios-git-network:before {
|
17364 | content: "\f187"; }
|
17365 |
|
17366 | .ion-ios-git-network-outline:before {
|
17367 | content: "\f187"; }
|
17368 |
|
17369 | .ion-ios-git-pull-request:before {
|
17370 | content: "\f188"; }
|
17371 |
|
17372 | .ion-ios-git-pull-request-outline:before {
|
17373 | content: "\f188"; }
|
17374 |
|
17375 | .ion-ios-glasses:before {
|
17376 | content: "\f43f"; }
|
17377 |
|
17378 | .ion-ios-glasses-outline:before {
|
17379 | content: "\f43e"; }
|
17380 |
|
17381 | .ion-ios-globe:before {
|
17382 | content: "\f18a"; }
|
17383 |
|
17384 | .ion-ios-globe-outline:before {
|
17385 | content: "\f189"; }
|
17386 |
|
17387 | .ion-ios-grid:before {
|
17388 | content: "\f18c"; }
|
17389 |
|
17390 | .ion-ios-grid-outline:before {
|
17391 | content: "\f18b"; }
|
17392 |
|
17393 | .ion-ios-hammer:before {
|
17394 | content: "\f18e"; }
|
17395 |
|
17396 | .ion-ios-hammer-outline:before {
|
17397 | content: "\f18d"; }
|
17398 |
|
17399 | .ion-ios-hand:before {
|
17400 | content: "\f190"; }
|
17401 |
|
17402 | .ion-ios-hand-outline:before {
|
17403 | content: "\f18f"; }
|
17404 |
|
17405 | .ion-ios-happy:before {
|
17406 | content: "\f192"; }
|
17407 |
|
17408 | .ion-ios-happy-outline:before {
|
17409 | content: "\f191"; }
|
17410 |
|
17411 | .ion-ios-headset:before {
|
17412 | content: "\f194"; }
|
17413 |
|
17414 | .ion-ios-headset-outline:before {
|
17415 | content: "\f193"; }
|
17416 |
|
17417 | .ion-ios-heart:before {
|
17418 | content: "\f443"; }
|
17419 |
|
17420 | .ion-ios-heart-outline:before {
|
17421 | content: "\f442"; }
|
17422 |
|
17423 | .ion-ios-help:before {
|
17424 | content: "\f446"; }
|
17425 |
|
17426 | .ion-ios-help-buoy:before {
|
17427 | content: "\f196"; }
|
17428 |
|
17429 | .ion-ios-help-buoy-outline:before {
|
17430 | content: "\f195"; }
|
17431 |
|
17432 | .ion-ios-help-circle:before {
|
17433 | content: "\f198"; }
|
17434 |
|
17435 | .ion-ios-help-circle-outline:before {
|
17436 | content: "\f197"; }
|
17437 |
|
17438 | .ion-ios-help-outline:before {
|
17439 | content: "\f446"; }
|
17440 |
|
17441 | .ion-ios-home:before {
|
17442 | content: "\f448"; }
|
17443 |
|
17444 | .ion-ios-home-outline:before {
|
17445 | content: "\f447"; }
|
17446 |
|
17447 | .ion-ios-ice-cream:before {
|
17448 | content: "\f19a"; }
|
17449 |
|
17450 | .ion-ios-ice-cream-outline:before {
|
17451 | content: "\f199"; }
|
17452 |
|
17453 | .ion-ios-image:before {
|
17454 | content: "\f19c"; }
|
17455 |
|
17456 | .ion-ios-image-outline:before {
|
17457 | content: "\f19b"; }
|
17458 |
|
17459 | .ion-ios-images:before {
|
17460 | content: "\f19e"; }
|
17461 |
|
17462 | .ion-ios-images-outline:before {
|
17463 | content: "\f19d"; }
|
17464 |
|
17465 | .ion-ios-infinite:before {
|
17466 | content: "\f44a"; }
|
17467 |
|
17468 | .ion-ios-infinite-outline:before {
|
17469 | content: "\f449"; }
|
17470 |
|
17471 | .ion-ios-information:before {
|
17472 | content: "\f44d"; }
|
17473 |
|
17474 | .ion-ios-information-circle:before {
|
17475 | content: "\f1a0"; }
|
17476 |
|
17477 | .ion-ios-information-circle-outline:before {
|
17478 | content: "\f19f"; }
|
17479 |
|
17480 | .ion-ios-information-outline:before {
|
17481 | content: "\f44d"; }
|
17482 |
|
17483 | .ion-ios-ionic:before {
|
17484 | content: "\f1a1"; }
|
17485 |
|
17486 | .ion-ios-ionic-outline:before {
|
17487 | content: "\f44e"; }
|
17488 |
|
17489 | .ion-ios-ionitron:before {
|
17490 | content: "\f1a3"; }
|
17491 |
|
17492 | .ion-ios-ionitron-outline:before {
|
17493 | content: "\f1a2"; }
|
17494 |
|
17495 | .ion-ios-jet:before {
|
17496 | content: "\f1a5"; }
|
17497 |
|
17498 | .ion-ios-jet-outline:before {
|
17499 | content: "\f1a4"; }
|
17500 |
|
17501 | .ion-ios-key:before {
|
17502 | content: "\f1a7"; }
|
17503 |
|
17504 | .ion-ios-key-outline:before {
|
17505 | content: "\f1a6"; }
|
17506 |
|
17507 | .ion-ios-keypad:before {
|
17508 | content: "\f450"; }
|
17509 |
|
17510 | .ion-ios-keypad-outline:before {
|
17511 | content: "\f44f"; }
|
17512 |
|
17513 | .ion-ios-laptop:before {
|
17514 | content: "\f1a8"; }
|
17515 |
|
17516 | .ion-ios-laptop-outline:before {
|
17517 | content: "\f1a8"; }
|
17518 |
|
17519 | .ion-ios-leaf:before {
|
17520 | content: "\f1aa"; }
|
17521 |
|
17522 | .ion-ios-leaf-outline:before {
|
17523 | content: "\f1a9"; }
|
17524 |
|
17525 | .ion-ios-link:before {
|
17526 | content: "\f22a"; }
|
17527 |
|
17528 | .ion-ios-link-outline:before {
|
17529 | content: "\f1ca"; }
|
17530 |
|
17531 | .ion-ios-list:before {
|
17532 | content: "\f454"; }
|
17533 |
|
17534 | .ion-ios-list-box:before {
|
17535 | content: "\f1ac"; }
|
17536 |
|
17537 | .ion-ios-list-box-outline:before {
|
17538 | content: "\f1ab"; }
|
17539 |
|
17540 | .ion-ios-list-outline:before {
|
17541 | content: "\f454"; }
|
17542 |
|
17543 | .ion-ios-locate:before {
|
17544 | content: "\f1ae"; }
|
17545 |
|
17546 | .ion-ios-locate-outline:before {
|
17547 | content: "\f1ad"; }
|
17548 |
|
17549 | .ion-ios-lock:before {
|
17550 | content: "\f1b0"; }
|
17551 |
|
17552 | .ion-ios-lock-outline:before {
|
17553 | content: "\f1af"; }
|
17554 |
|
17555 | .ion-ios-log-in:before {
|
17556 | content: "\f1b1"; }
|
17557 |
|
17558 | .ion-ios-log-in-outline:before {
|
17559 | content: "\f1b1"; }
|
17560 |
|
17561 | .ion-ios-log-out:before {
|
17562 | content: "\f1b2"; }
|
17563 |
|
17564 | .ion-ios-log-out-outline:before {
|
17565 | content: "\f1b2"; }
|
17566 |
|
17567 | .ion-ios-magnet:before {
|
17568 | content: "\f1b4"; }
|
17569 |
|
17570 | .ion-ios-magnet-outline:before {
|
17571 | content: "\f1b3"; }
|
17572 |
|
17573 | .ion-ios-mail:before {
|
17574 | content: "\f1b8"; }
|
17575 |
|
17576 | .ion-ios-mail-open:before {
|
17577 | content: "\f1b6"; }
|
17578 |
|
17579 | .ion-ios-mail-open-outline:before {
|
17580 | content: "\f1b5"; }
|
17581 |
|
17582 | .ion-ios-mail-outline:before {
|
17583 | content: "\f1b7"; }
|
17584 |
|
17585 | .ion-ios-male:before {
|
17586 | content: "\f1b9"; }
|
17587 |
|
17588 | .ion-ios-male-outline:before {
|
17589 | content: "\f1b9"; }
|
17590 |
|
17591 | .ion-ios-man:before {
|
17592 | content: "\f1bb"; }
|
17593 |
|
17594 | .ion-ios-man-outline:before {
|
17595 | content: "\f1ba"; }
|
17596 |
|
17597 | .ion-ios-map:before {
|
17598 | content: "\f1bd"; }
|
17599 |
|
17600 | .ion-ios-map-outline:before {
|
17601 | content: "\f1bc"; }
|
17602 |
|
17603 | .ion-ios-medal:before {
|
17604 | content: "\f1bf"; }
|
17605 |
|
17606 | .ion-ios-medal-outline:before {
|
17607 | content: "\f1be"; }
|
17608 |
|
17609 | .ion-ios-medical:before {
|
17610 | content: "\f45c"; }
|
17611 |
|
17612 | .ion-ios-medical-outline:before {
|
17613 | content: "\f45b"; }
|
17614 |
|
17615 | .ion-ios-medkit:before {
|
17616 | content: "\f45e"; }
|
17617 |
|
17618 | .ion-ios-medkit-outline:before {
|
17619 | content: "\f45d"; }
|
17620 |
|
17621 | .ion-ios-megaphone:before {
|
17622 | content: "\f1c1"; }
|
17623 |
|
17624 | .ion-ios-megaphone-outline:before {
|
17625 | content: "\f1c0"; }
|
17626 |
|
17627 | .ion-ios-menu:before {
|
17628 | content: "\f1c3"; }
|
17629 |
|
17630 | .ion-ios-menu-outline:before {
|
17631 | content: "\f1c2"; }
|
17632 |
|
17633 | .ion-ios-mic:before {
|
17634 | content: "\f461"; }
|
17635 |
|
17636 | .ion-ios-mic-off:before {
|
17637 | content: "\f45f"; }
|
17638 |
|
17639 | .ion-ios-mic-off-outline:before {
|
17640 | content: "\f1c4"; }
|
17641 |
|
17642 | .ion-ios-mic-outline:before {
|
17643 | content: "\f460"; }
|
17644 |
|
17645 | .ion-ios-microphone:before {
|
17646 | content: "\f1c6"; }
|
17647 |
|
17648 | .ion-ios-microphone-outline:before {
|
17649 | content: "\f1c5"; }
|
17650 |
|
17651 | .ion-ios-moon:before {
|
17652 | content: "\f468"; }
|
17653 |
|
17654 | .ion-ios-moon-outline:before {
|
17655 | content: "\f467"; }
|
17656 |
|
17657 | .ion-ios-more:before {
|
17658 | content: "\f1c8"; }
|
17659 |
|
17660 | .ion-ios-more-outline:before {
|
17661 | content: "\f1c7"; }
|
17662 |
|
17663 | .ion-ios-move:before {
|
17664 | content: "\f1cb"; }
|
17665 |
|
17666 | .ion-ios-move-outline:before {
|
17667 | content: "\f1cb"; }
|
17668 |
|
17669 | .ion-ios-musical-note:before {
|
17670 | content: "\f46b"; }
|
17671 |
|
17672 | .ion-ios-musical-note-outline:before {
|
17673 | content: "\f1cc"; }
|
17674 |
|
17675 | .ion-ios-musical-notes:before {
|
17676 | content: "\f46c"; }
|
17677 |
|
17678 | .ion-ios-musical-notes-outline:before {
|
17679 | content: "\f1cd"; }
|
17680 |
|
17681 | .ion-ios-navigate:before {
|
17682 | content: "\f46e"; }
|
17683 |
|
17684 | .ion-ios-navigate-outline:before {
|
17685 | content: "\f46d"; }
|
17686 |
|
17687 | .ion-ios-no-smoking:before {
|
17688 | content: "\f1cf"; }
|
17689 |
|
17690 | .ion-ios-no-smoking-outline:before {
|
17691 | content: "\f1ce"; }
|
17692 |
|
17693 | .ion-ios-notifications:before {
|
17694 | content: "\f1d3"; }
|
17695 |
|
17696 | .ion-ios-notifications-off:before {
|
17697 | content: "\f1d1"; }
|
17698 |
|
17699 | .ion-ios-notifications-off-outline:before {
|
17700 | content: "\f1d0"; }
|
17701 |
|
17702 | .ion-ios-notifications-outline:before {
|
17703 | content: "\f1d2"; }
|
17704 |
|
17705 | .ion-ios-nuclear:before {
|
17706 | content: "\f1d5"; }
|
17707 |
|
17708 | .ion-ios-nuclear-outline:before {
|
17709 | content: "\f1d4"; }
|
17710 |
|
17711 | .ion-ios-nutrition:before {
|
17712 | content: "\f470"; }
|
17713 |
|
17714 | .ion-ios-nutrition-outline:before {
|
17715 | content: "\f46f"; }
|
17716 |
|
17717 | .ion-ios-open:before {
|
17718 | content: "\f1d7"; }
|
17719 |
|
17720 | .ion-ios-open-outline:before {
|
17721 | content: "\f1d6"; }
|
17722 |
|
17723 | .ion-ios-options:before {
|
17724 | content: "\f1d9"; }
|
17725 |
|
17726 | .ion-ios-options-outline:before {
|
17727 | content: "\f1d8"; }
|
17728 |
|
17729 | .ion-ios-outlet:before {
|
17730 | content: "\f1db"; }
|
17731 |
|
17732 | .ion-ios-outlet-outline:before {
|
17733 | content: "\f1da"; }
|
17734 |
|
17735 | .ion-ios-paper:before {
|
17736 | content: "\f472"; }
|
17737 |
|
17738 | .ion-ios-paper-outline:before {
|
17739 | content: "\f471"; }
|
17740 |
|
17741 | .ion-ios-paper-plane:before {
|
17742 | content: "\f1dd"; }
|
17743 |
|
17744 | .ion-ios-paper-plane-outline:before {
|
17745 | content: "\f1dc"; }
|
17746 |
|
17747 | .ion-ios-partly-sunny:before {
|
17748 | content: "\f1df"; }
|
17749 |
|
17750 | .ion-ios-partly-sunny-outline:before {
|
17751 | content: "\f1de"; }
|
17752 |
|
17753 | .ion-ios-pause:before {
|
17754 | content: "\f478"; }
|
17755 |
|
17756 | .ion-ios-pause-outline:before {
|
17757 | content: "\f477"; }
|
17758 |
|
17759 | .ion-ios-paw:before {
|
17760 | content: "\f47a"; }
|
17761 |
|
17762 | .ion-ios-paw-outline:before {
|
17763 | content: "\f479"; }
|
17764 |
|
17765 | .ion-ios-people:before {
|
17766 | content: "\f47c"; }
|
17767 |
|
17768 | .ion-ios-people-outline:before {
|
17769 | content: "\f47b"; }
|
17770 |
|
17771 | .ion-ios-person:before {
|
17772 | content: "\f47e"; }
|
17773 |
|
17774 | .ion-ios-person-add:before {
|
17775 | content: "\f1e1"; }
|
17776 |
|
17777 | .ion-ios-person-add-outline:before {
|
17778 | content: "\f1e0"; }
|
17779 |
|
17780 | .ion-ios-person-outline:before {
|
17781 | content: "\f47d"; }
|
17782 |
|
17783 | .ion-ios-phone-landscape:before {
|
17784 | content: "\f1e2"; }
|
17785 |
|
17786 | .ion-ios-phone-landscape-outline:before {
|
17787 | content: "\f1e2"; }
|
17788 |
|
17789 | .ion-ios-phone-portrait:before {
|
17790 | content: "\f1e3"; }
|
17791 |
|
17792 | .ion-ios-phone-portrait-outline:before {
|
17793 | content: "\f1e3"; }
|
17794 |
|
17795 | .ion-ios-photos:before {
|
17796 | content: "\f482"; }
|
17797 |
|
17798 | .ion-ios-photos-outline:before {
|
17799 | content: "\f481"; }
|
17800 |
|
17801 | .ion-ios-pie:before {
|
17802 | content: "\f484"; }
|
17803 |
|
17804 | .ion-ios-pie-outline:before {
|
17805 | content: "\f483"; }
|
17806 |
|
17807 | .ion-ios-pin:before {
|
17808 | content: "\f1e5"; }
|
17809 |
|
17810 | .ion-ios-pin-outline:before {
|
17811 | content: "\f1e4"; }
|
17812 |
|
17813 | .ion-ios-pint:before {
|
17814 | content: "\f486"; }
|
17815 |
|
17816 | .ion-ios-pint-outline:before {
|
17817 | content: "\f485"; }
|
17818 |
|
17819 | .ion-ios-pizza:before {
|
17820 | content: "\f1e7"; }
|
17821 |
|
17822 | .ion-ios-pizza-outline:before {
|
17823 | content: "\f1e6"; }
|
17824 |
|
17825 | .ion-ios-plane:before {
|
17826 | content: "\f1e9"; }
|
17827 |
|
17828 | .ion-ios-plane-outline:before {
|
17829 | content: "\f1e8"; }
|
17830 |
|
17831 | .ion-ios-planet:before {
|
17832 | content: "\f1eb"; }
|
17833 |
|
17834 | .ion-ios-planet-outline:before {
|
17835 | content: "\f1ea"; }
|
17836 |
|
17837 | .ion-ios-play:before {
|
17838 | content: "\f488"; }
|
17839 |
|
17840 | .ion-ios-play-outline:before {
|
17841 | content: "\f487"; }
|
17842 |
|
17843 | .ion-ios-podium:before {
|
17844 | content: "\f1ed"; }
|
17845 |
|
17846 | .ion-ios-podium-outline:before {
|
17847 | content: "\f1ec"; }
|
17848 |
|
17849 | .ion-ios-power:before {
|
17850 | content: "\f1ef"; }
|
17851 |
|
17852 | .ion-ios-power-outline:before {
|
17853 | content: "\f1ee"; }
|
17854 |
|
17855 | .ion-ios-pricetag:before {
|
17856 | content: "\f48d"; }
|
17857 |
|
17858 | .ion-ios-pricetag-outline:before {
|
17859 | content: "\f48c"; }
|
17860 |
|
17861 | .ion-ios-pricetags:before {
|
17862 | content: "\f48f"; }
|
17863 |
|
17864 | .ion-ios-pricetags-outline:before {
|
17865 | content: "\f48e"; }
|
17866 |
|
17867 | .ion-ios-print:before {
|
17868 | content: "\f1f1"; }
|
17869 |
|
17870 | .ion-ios-print-outline:before {
|
17871 | content: "\f1f0"; }
|
17872 |
|
17873 | .ion-ios-pulse:before {
|
17874 | content: "\f493"; }
|
17875 |
|
17876 | .ion-ios-pulse-outline:before {
|
17877 | content: "\f1f2"; }
|
17878 |
|
17879 | .ion-ios-qr-scanner:before {
|
17880 | content: "\f1f3"; }
|
17881 |
|
17882 | .ion-ios-qr-scanner-outline:before {
|
17883 | content: "\f1f3"; }
|
17884 |
|
17885 | .ion-ios-quote:before {
|
17886 | content: "\f1f5"; }
|
17887 |
|
17888 | .ion-ios-quote-outline:before {
|
17889 | content: "\f1f4"; }
|
17890 |
|
17891 | .ion-ios-radio:before {
|
17892 | content: "\f1f9"; }
|
17893 |
|
17894 | .ion-ios-radio-button-off:before {
|
17895 | content: "\f1f6"; }
|
17896 |
|
17897 | .ion-ios-radio-button-off-outline:before {
|
17898 | content: "\f1f6"; }
|
17899 |
|
17900 | .ion-ios-radio-button-on:before {
|
17901 | content: "\f1f7"; }
|
17902 |
|
17903 | .ion-ios-radio-button-on-outline:before {
|
17904 | content: "\f1f7"; }
|
17905 |
|
17906 | .ion-ios-radio-outline:before {
|
17907 | content: "\f1f8"; }
|
17908 |
|
17909 | .ion-ios-rainy:before {
|
17910 | content: "\f495"; }
|
17911 |
|
17912 | .ion-ios-rainy-outline:before {
|
17913 | content: "\f494"; }
|
17914 |
|
17915 | .ion-ios-recording:before {
|
17916 | content: "\f497"; }
|
17917 |
|
17918 | .ion-ios-recording-outline:before {
|
17919 | content: "\f496"; }
|
17920 |
|
17921 | .ion-ios-redo:before {
|
17922 | content: "\f499"; }
|
17923 |
|
17924 | .ion-ios-redo-outline:before {
|
17925 | content: "\f498"; }
|
17926 |
|
17927 | .ion-ios-refresh:before {
|
17928 | content: "\f49c"; }
|
17929 |
|
17930 | .ion-ios-refresh-circle:before {
|
17931 | content: "\f226"; }
|
17932 |
|
17933 | .ion-ios-refresh-circle-outline:before {
|
17934 | content: "\f224"; }
|
17935 |
|
17936 | .ion-ios-refresh-outline:before {
|
17937 | content: "\f49c"; }
|
17938 |
|
17939 | .ion-ios-remove:before {
|
17940 | content: "\f1fc"; }
|
17941 |
|
17942 | .ion-ios-remove-circle:before {
|
17943 | content: "\f1fb"; }
|
17944 |
|
17945 | .ion-ios-remove-circle-outline:before {
|
17946 | content: "\f1fa"; }
|
17947 |
|
17948 | .ion-ios-remove-outline:before {
|
17949 | content: "\f1fc"; }
|
17950 |
|
17951 | .ion-ios-reorder:before {
|
17952 | content: "\f1fd"; }
|
17953 |
|
17954 | .ion-ios-reorder-outline:before {
|
17955 | content: "\f1fd"; }
|
17956 |
|
17957 | .ion-ios-repeat:before {
|
17958 | content: "\f1fe"; }
|
17959 |
|
17960 | .ion-ios-repeat-outline:before {
|
17961 | content: "\f1fe"; }
|
17962 |
|
17963 | .ion-ios-resize:before {
|
17964 | content: "\f1ff"; }
|
17965 |
|
17966 | .ion-ios-resize-outline:before {
|
17967 | content: "\f1ff"; }
|
17968 |
|
17969 | .ion-ios-restaurant:before {
|
17970 | content: "\f201"; }
|
17971 |
|
17972 | .ion-ios-restaurant-outline:before {
|
17973 | content: "\f200"; }
|
17974 |
|
17975 | .ion-ios-return-left:before {
|
17976 | content: "\f202"; }
|
17977 |
|
17978 | .ion-ios-return-left-outline:before {
|
17979 | content: "\f202"; }
|
17980 |
|
17981 | .ion-ios-return-right:before {
|
17982 | content: "\f203"; }
|
17983 |
|
17984 | .ion-ios-return-right-outline:before {
|
17985 | content: "\f203"; }
|
17986 |
|
17987 | .ion-ios-reverse-camera:before {
|
17988 | content: "\f49f"; }
|
17989 |
|
17990 | .ion-ios-reverse-camera-outline:before {
|
17991 | content: "\f49e"; }
|
17992 |
|
17993 | .ion-ios-rewind:before {
|
17994 | content: "\f4a1"; }
|
17995 |
|
17996 | .ion-ios-rewind-outline:before {
|
17997 | content: "\f4a0"; }
|
17998 |
|
17999 | .ion-ios-ribbon:before {
|
18000 | content: "\f205"; }
|
18001 |
|
18002 | .ion-ios-ribbon-outline:before {
|
18003 | content: "\f204"; }
|
18004 |
|
18005 | .ion-ios-rose:before {
|
18006 | content: "\f4a3"; }
|
18007 |
|
18008 | .ion-ios-rose-outline:before {
|
18009 | content: "\f4a2"; }
|
18010 |
|
18011 | .ion-ios-sad:before {
|
18012 | content: "\f207"; }
|
18013 |
|
18014 | .ion-ios-sad-outline:before {
|
18015 | content: "\f206"; }
|
18016 |
|
18017 | .ion-ios-school:before {
|
18018 | content: "\f209"; }
|
18019 |
|
18020 | .ion-ios-school-outline:before {
|
18021 | content: "\f208"; }
|
18022 |
|
18023 | .ion-ios-search:before {
|
18024 | content: "\f4a5"; }
|
18025 |
|
18026 | .ion-ios-search-outline:before {
|
18027 | content: "\f20a"; }
|
18028 |
|
18029 | .ion-ios-send:before {
|
18030 | content: "\f20c"; }
|
18031 |
|
18032 | .ion-ios-send-outline:before {
|
18033 | content: "\f20b"; }
|
18034 |
|
18035 | .ion-ios-settings:before {
|
18036 | content: "\f4a7"; }
|
18037 |
|
18038 | .ion-ios-settings-outline:before {
|
18039 | content: "\f20d"; }
|
18040 |
|
18041 | .ion-ios-share:before {
|
18042 | content: "\f211"; }
|
18043 |
|
18044 | .ion-ios-share-alt:before {
|
18045 | content: "\f20f"; }
|
18046 |
|
18047 | .ion-ios-share-alt-outline:before {
|
18048 | content: "\f20e"; }
|
18049 |
|
18050 | .ion-ios-share-outline:before {
|
18051 | content: "\f210"; }
|
18052 |
|
18053 | .ion-ios-shirt:before {
|
18054 | content: "\f213"; }
|
18055 |
|
18056 | .ion-ios-shirt-outline:before {
|
18057 | content: "\f212"; }
|
18058 |
|
18059 | .ion-ios-shuffle:before {
|
18060 | content: "\f4a9"; }
|
18061 |
|
18062 | .ion-ios-shuffle-outline:before {
|
18063 | content: "\f4a9"; }
|
18064 |
|
18065 | .ion-ios-skip-backward:before {
|
18066 | content: "\f215"; }
|
18067 |
|
18068 | .ion-ios-skip-backward-outline:before {
|
18069 | content: "\f214"; }
|
18070 |
|
18071 | .ion-ios-skip-forward:before {
|
18072 | content: "\f217"; }
|
18073 |
|
18074 | .ion-ios-skip-forward-outline:before {
|
18075 | content: "\f216"; }
|
18076 |
|
18077 | .ion-ios-snow:before {
|
18078 | content: "\f218"; }
|
18079 |
|
18080 | .ion-ios-snow-outline:before {
|
18081 | content: "\f22c"; }
|
18082 |
|
18083 | .ion-ios-speedometer:before {
|
18084 | content: "\f4b0"; }
|
18085 |
|
18086 | .ion-ios-speedometer-outline:before {
|
18087 | content: "\f4af"; }
|
18088 |
|
18089 | .ion-ios-square:before {
|
18090 | content: "\f21a"; }
|
18091 |
|
18092 | .ion-ios-square-outline:before {
|
18093 | content: "\f219"; }
|
18094 |
|
18095 | .ion-ios-star:before {
|
18096 | content: "\f4b3"; }
|
18097 |
|
18098 | .ion-ios-star-half:before {
|
18099 | content: "\f4b1"; }
|
18100 |
|
18101 | .ion-ios-star-half-outline:before {
|
18102 | content: "\f4b1"; }
|
18103 |
|
18104 | .ion-ios-star-outline:before {
|
18105 | content: "\f4b2"; }
|
18106 |
|
18107 | .ion-ios-stats:before {
|
18108 | content: "\f21c"; }
|
18109 |
|
18110 | .ion-ios-stats-outline:before {
|
18111 | content: "\f21b"; }
|
18112 |
|
18113 | .ion-ios-stopwatch:before {
|
18114 | content: "\f4b5"; }
|
18115 |
|
18116 | .ion-ios-stopwatch-outline:before {
|
18117 | content: "\f4b4"; }
|
18118 |
|
18119 | .ion-ios-subway:before {
|
18120 | content: "\f21e"; }
|
18121 |
|
18122 | .ion-ios-subway-outline:before {
|
18123 | content: "\f21d"; }
|
18124 |
|
18125 | .ion-ios-sunny:before {
|
18126 | content: "\f4b7"; }
|
18127 |
|
18128 | .ion-ios-sunny-outline:before {
|
18129 | content: "\f4b6"; }
|
18130 |
|
18131 | .ion-ios-swap:before {
|
18132 | content: "\f21f"; }
|
18133 |
|
18134 | .ion-ios-swap-outline:before {
|
18135 | content: "\f21f"; }
|
18136 |
|
18137 | .ion-ios-switch:before {
|
18138 | content: "\f221"; }
|
18139 |
|
18140 | .ion-ios-switch-outline:before {
|
18141 | content: "\f220"; }
|
18142 |
|
18143 | .ion-ios-sync:before {
|
18144 | content: "\f222"; }
|
18145 |
|
18146 | .ion-ios-sync-outline:before {
|
18147 | content: "\f222"; }
|
18148 |
|
18149 | .ion-ios-tablet-landscape:before {
|
18150 | content: "\f223"; }
|
18151 |
|
18152 | .ion-ios-tablet-landscape-outline:before {
|
18153 | content: "\f223"; }
|
18154 |
|
18155 | .ion-ios-tablet-portrait:before {
|
18156 | content: "\f24e"; }
|
18157 |
|
18158 | .ion-ios-tablet-portrait-outline:before {
|
18159 | content: "\f24e"; }
|
18160 |
|
18161 | .ion-ios-tennisball:before {
|
18162 | content: "\f4bb"; }
|
18163 |
|
18164 | .ion-ios-tennisball-outline:before {
|
18165 | content: "\f4ba"; }
|
18166 |
|
18167 | .ion-ios-text:before {
|
18168 | content: "\f250"; }
|
18169 |
|
18170 | .ion-ios-text-outline:before {
|
18171 | content: "\f24f"; }
|
18172 |
|
18173 | .ion-ios-thermometer:before {
|
18174 | content: "\f252"; }
|
18175 |
|
18176 | .ion-ios-thermometer-outline:before {
|
18177 | content: "\f251"; }
|
18178 |
|
18179 | .ion-ios-thumbs-down:before {
|
18180 | content: "\f254"; }
|
18181 |
|
18182 | .ion-ios-thumbs-down-outline:before {
|
18183 | content: "\f253"; }
|
18184 |
|
18185 | .ion-ios-thumbs-up:before {
|
18186 | content: "\f256"; }
|
18187 |
|
18188 | .ion-ios-thumbs-up-outline:before {
|
18189 | content: "\f255"; }
|
18190 |
|
18191 | .ion-ios-thunderstorm:before {
|
18192 | content: "\f4bd"; }
|
18193 |
|
18194 | .ion-ios-thunderstorm-outline:before {
|
18195 | content: "\f4bc"; }
|
18196 |
|
18197 | .ion-ios-time:before {
|
18198 | content: "\f4bf"; }
|
18199 |
|
18200 | .ion-ios-time-outline:before {
|
18201 | content: "\f4be"; }
|
18202 |
|
18203 | .ion-ios-timer:before {
|
18204 | content: "\f4c1"; }
|
18205 |
|
18206 | .ion-ios-timer-outline:before {
|
18207 | content: "\f4c0"; }
|
18208 |
|
18209 | .ion-ios-train:before {
|
18210 | content: "\f258"; }
|
18211 |
|
18212 | .ion-ios-train-outline:before {
|
18213 | content: "\f257"; }
|
18214 |
|
18215 | .ion-ios-transgender:before {
|
18216 | content: "\f259"; }
|
18217 |
|
18218 | .ion-ios-transgender-outline:before {
|
18219 | content: "\f259"; }
|
18220 |
|
18221 | .ion-ios-trash:before {
|
18222 | content: "\f4c5"; }
|
18223 |
|
18224 | .ion-ios-trash-outline:before {
|
18225 | content: "\f4c4"; }
|
18226 |
|
18227 | .ion-ios-trending-down:before {
|
18228 | content: "\f25a"; }
|
18229 |
|
18230 | .ion-ios-trending-down-outline:before {
|
18231 | content: "\f25a"; }
|
18232 |
|
18233 | .ion-ios-trending-up:before {
|
18234 | content: "\f25b"; }
|
18235 |
|
18236 | .ion-ios-trending-up-outline:before {
|
18237 | content: "\f25b"; }
|
18238 |
|
18239 | .ion-ios-trophy:before {
|
18240 | content: "\f25d"; }
|
18241 |
|
18242 | .ion-ios-trophy-outline:before {
|
18243 | content: "\f25c"; }
|
18244 |
|
18245 | .ion-ios-umbrella:before {
|
18246 | content: "\f25f"; }
|
18247 |
|
18248 | .ion-ios-umbrella-outline:before {
|
18249 | content: "\f25e"; }
|
18250 |
|
18251 | .ion-ios-undo:before {
|
18252 | content: "\f4c7"; }
|
18253 |
|
18254 | .ion-ios-undo-outline:before {
|
18255 | content: "\f4c6"; }
|
18256 |
|
18257 | .ion-ios-unlock:before {
|
18258 | content: "\f261"; }
|
18259 |
|
18260 | .ion-ios-unlock-outline:before {
|
18261 | content: "\f260"; }
|
18262 |
|
18263 | .ion-ios-videocam:before {
|
18264 | content: "\f4cd"; }
|
18265 |
|
18266 | .ion-ios-videocam-outline:before {
|
18267 | content: "\f4cc"; }
|
18268 |
|
18269 | .ion-ios-volume-down:before {
|
18270 | content: "\f262"; }
|
18271 |
|
18272 | .ion-ios-volume-down-outline:before {
|
18273 | content: "\f262"; }
|
18274 |
|
18275 | .ion-ios-volume-mute:before {
|
18276 | content: "\f263"; }
|
18277 |
|
18278 | .ion-ios-volume-mute-outline:before {
|
18279 | content: "\f263"; }
|
18280 |
|
18281 | .ion-ios-volume-off:before {
|
18282 | content: "\f264"; }
|
18283 |
|
18284 | .ion-ios-volume-off-outline:before {
|
18285 | content: "\f264"; }
|
18286 |
|
18287 | .ion-ios-volume-up:before {
|
18288 | content: "\f265"; }
|
18289 |
|
18290 | .ion-ios-volume-up-outline:before {
|
18291 | content: "\f265"; }
|
18292 |
|
18293 | .ion-ios-walk:before {
|
18294 | content: "\f266"; }
|
18295 |
|
18296 | .ion-ios-walk-outline:before {
|
18297 | content: "\f266"; }
|
18298 |
|
18299 | .ion-ios-warning:before {
|
18300 | content: "\f268"; }
|
18301 |
|
18302 | .ion-ios-warning-outline:before {
|
18303 | content: "\f267"; }
|
18304 |
|
18305 | .ion-ios-watch:before {
|
18306 | content: "\f269"; }
|
18307 |
|
18308 | .ion-ios-watch-outline:before {
|
18309 | content: "\f269"; }
|
18310 |
|
18311 | .ion-ios-water:before {
|
18312 | content: "\f26b"; }
|
18313 |
|
18314 | .ion-ios-water-outline:before {
|
18315 | content: "\f26a"; }
|
18316 |
|
18317 | .ion-ios-wifi:before {
|
18318 | content: "\f26d"; }
|
18319 |
|
18320 | .ion-ios-wifi-outline:before {
|
18321 | content: "\f26c"; }
|
18322 |
|
18323 | .ion-ios-wine:before {
|
18324 | content: "\f26f"; }
|
18325 |
|
18326 | .ion-ios-wine-outline:before {
|
18327 | content: "\f26e"; }
|
18328 |
|
18329 | .ion-ios-woman:before {
|
18330 | content: "\f271"; }
|
18331 |
|
18332 | .ion-ios-woman-outline:before {
|
18333 | content: "\f270"; }
|
18334 |
|
18335 | .ion-logo-android:before {
|
18336 | content: "\f225"; }
|
18337 |
|
18338 | .ion-logo-angular:before {
|
18339 | content: "\f227"; }
|
18340 |
|
18341 | .ion-logo-apple:before {
|
18342 | content: "\f229"; }
|
18343 |
|
18344 | .ion-logo-bitcoin:before {
|
18345 | content: "\f22b"; }
|
18346 |
|
18347 | .ion-logo-buffer:before {
|
18348 | content: "\f22d"; }
|
18349 |
|
18350 | .ion-logo-chrome:before {
|
18351 | content: "\f22f"; }
|
18352 |
|
18353 | .ion-logo-codepen:before {
|
18354 | content: "\f230"; }
|
18355 |
|
18356 | .ion-logo-css3:before {
|
18357 | content: "\f231"; }
|
18358 |
|
18359 | .ion-logo-designernews:before {
|
18360 | content: "\f232"; }
|
18361 |
|
18362 | .ion-logo-dribbble:before {
|
18363 | content: "\f233"; }
|
18364 |
|
18365 | .ion-logo-dropbox:before {
|
18366 | content: "\f234"; }
|
18367 |
|
18368 | .ion-logo-euro:before {
|
18369 | content: "\f235"; }
|
18370 |
|
18371 | .ion-logo-facebook:before {
|
18372 | content: "\f236"; }
|
18373 |
|
18374 | .ion-logo-foursquare:before {
|
18375 | content: "\f237"; }
|
18376 |
|
18377 | .ion-logo-freebsd-devil:before {
|
18378 | content: "\f238"; }
|
18379 |
|
18380 | .ion-logo-github:before {
|
18381 | content: "\f239"; }
|
18382 |
|
18383 | .ion-logo-google:before {
|
18384 | content: "\f23a"; }
|
18385 |
|
18386 | .ion-logo-googleplus:before {
|
18387 | content: "\f23b"; }
|
18388 |
|
18389 | .ion-logo-hackernews:before {
|
18390 | content: "\f23c"; }
|
18391 |
|
18392 | .ion-logo-html5:before {
|
18393 | content: "\f23d"; }
|
18394 |
|
18395 | .ion-logo-instagram:before {
|
18396 | content: "\f23e"; }
|
18397 |
|
18398 | .ion-logo-javascript:before {
|
18399 | content: "\f23f"; }
|
18400 |
|
18401 | .ion-logo-linkedin:before {
|
18402 | content: "\f240"; }
|
18403 |
|
18404 | .ion-logo-markdown:before {
|
18405 | content: "\f241"; }
|
18406 |
|
18407 | .ion-logo-nodejs:before {
|
18408 | content: "\f242"; }
|
18409 |
|
18410 | .ion-logo-octocat:before {
|
18411 | content: "\f243"; }
|
18412 |
|
18413 | .ion-logo-pinterest:before {
|
18414 | content: "\f244"; }
|
18415 |
|
18416 | .ion-logo-playstation:before {
|
18417 | content: "\f245"; }
|
18418 |
|
18419 | .ion-logo-python:before {
|
18420 | content: "\f246"; }
|
18421 |
|
18422 | .ion-logo-reddit:before {
|
18423 | content: "\f247"; }
|
18424 |
|
18425 | .ion-logo-rss:before {
|
18426 | content: "\f248"; }
|
18427 |
|
18428 | .ion-logo-sass:before {
|
18429 | content: "\f249"; }
|
18430 |
|
18431 | .ion-logo-skype:before {
|
18432 | content: "\f24a"; }
|
18433 |
|
18434 | .ion-logo-snapchat:before {
|
18435 | content: "\f24b"; }
|
18436 |
|
18437 | .ion-logo-steam:before {
|
18438 | content: "\f24c"; }
|
18439 |
|
18440 | .ion-logo-tumblr:before {
|
18441 | content: "\f24d"; }
|
18442 |
|
18443 | .ion-logo-tux:before {
|
18444 | content: "\f2ae"; }
|
18445 |
|
18446 | .ion-logo-twitch:before {
|
18447 | content: "\f2af"; }
|
18448 |
|
18449 | .ion-logo-twitter:before {
|
18450 | content: "\f2b0"; }
|
18451 |
|
18452 | .ion-logo-usd:before {
|
18453 | content: "\f2b1"; }
|
18454 |
|
18455 | .ion-logo-vimeo:before {
|
18456 | content: "\f2c4"; }
|
18457 |
|
18458 | .ion-logo-whatsapp:before {
|
18459 | content: "\f2c5"; }
|
18460 |
|
18461 | .ion-logo-windows:before {
|
18462 | content: "\f32f"; }
|
18463 |
|
18464 | .ion-logo-wordpress:before {
|
18465 | content: "\f330"; }
|
18466 |
|
18467 | .ion-logo-xbox:before {
|
18468 | content: "\f34c"; }
|
18469 |
|
18470 | .ion-logo-yahoo:before {
|
18471 | content: "\f34d"; }
|
18472 |
|
18473 | .ion-logo-yen:before {
|
18474 | content: "\f34e"; }
|
18475 |
|
18476 | .ion-logo-youtube:before {
|
18477 | content: "\f34f"; }
|
18478 |
|
18479 | .ion-md-add:before {
|
18480 | content: "\f273"; }
|
18481 |
|
18482 | .ion-md-add-circle:before {
|
18483 | content: "\f272"; }
|
18484 |
|
18485 | .ion-md-alarm:before {
|
18486 | content: "\f274"; }
|
18487 |
|
18488 | .ion-md-albums:before {
|
18489 | content: "\f275"; }
|
18490 |
|
18491 | .ion-md-alert:before {
|
18492 | content: "\f276"; }
|
18493 |
|
18494 | .ion-md-american-football:before {
|
18495 | content: "\f277"; }
|
18496 |
|
18497 | .ion-md-analytics:before {
|
18498 | content: "\f278"; }
|
18499 |
|
18500 | .ion-md-aperture:before {
|
18501 | content: "\f279"; }
|
18502 |
|
18503 | .ion-md-apps:before {
|
18504 | content: "\f27a"; }
|
18505 |
|
18506 | .ion-md-appstore:before {
|
18507 | content: "\f27b"; }
|
18508 |
|
18509 | .ion-md-archive:before {
|
18510 | content: "\f27c"; }
|
18511 |
|
18512 | .ion-md-arrow-back:before {
|
18513 | content: "\f27d"; }
|
18514 |
|
18515 | .ion-md-arrow-down:before {
|
18516 | content: "\f27e"; }
|
18517 |
|
18518 | .ion-md-arrow-dropdown:before {
|
18519 | content: "\f280"; }
|
18520 |
|
18521 | .ion-md-arrow-dropdown-circle:before {
|
18522 | content: "\f27f"; }
|
18523 |
|
18524 | .ion-md-arrow-dropleft:before {
|
18525 | content: "\f282"; }
|
18526 |
|
18527 | .ion-md-arrow-dropleft-circle:before {
|
18528 | content: "\f281"; }
|
18529 |
|
18530 | .ion-md-arrow-dropright:before {
|
18531 | content: "\f284"; }
|
18532 |
|
18533 | .ion-md-arrow-dropright-circle:before {
|
18534 | content: "\f283"; }
|
18535 |
|
18536 | .ion-md-arrow-dropup:before {
|
18537 | content: "\f286"; }
|
18538 |
|
18539 | .ion-md-arrow-dropup-circle:before {
|
18540 | content: "\f285"; }
|
18541 |
|
18542 | .ion-md-arrow-forward:before {
|
18543 | content: "\f287"; }
|
18544 |
|
18545 | .ion-md-arrow-round-back:before {
|
18546 | content: "\f288"; }
|
18547 |
|
18548 | .ion-md-arrow-round-down:before {
|
18549 | content: "\f289"; }
|
18550 |
|
18551 | .ion-md-arrow-round-forward:before {
|
18552 | content: "\f28a"; }
|
18553 |
|
18554 | .ion-md-arrow-round-up:before {
|
18555 | content: "\f28b"; }
|
18556 |
|
18557 | .ion-md-arrow-up:before {
|
18558 | content: "\f28c"; }
|
18559 |
|
18560 | .ion-md-at:before {
|
18561 | content: "\f28d"; }
|
18562 |
|
18563 | .ion-md-attach:before {
|
18564 | content: "\f28e"; }
|
18565 |
|
18566 | .ion-md-backspace:before {
|
18567 | content: "\f28f"; }
|
18568 |
|
18569 | .ion-md-barcode:before {
|
18570 | content: "\f290"; }
|
18571 |
|
18572 | .ion-md-baseball:before {
|
18573 | content: "\f291"; }
|
18574 |
|
18575 | .ion-md-basket:before {
|
18576 | content: "\f292"; }
|
18577 |
|
18578 | .ion-md-basketball:before {
|
18579 | content: "\f293"; }
|
18580 |
|
18581 | .ion-md-battery-charging:before {
|
18582 | content: "\f294"; }
|
18583 |
|
18584 | .ion-md-battery-dead:before {
|
18585 | content: "\f295"; }
|
18586 |
|
18587 | .ion-md-battery-full:before {
|
18588 | content: "\f296"; }
|
18589 |
|
18590 | .ion-md-beaker:before {
|
18591 | content: "\f297"; }
|
18592 |
|
18593 | .ion-md-beer:before {
|
18594 | content: "\f298"; }
|
18595 |
|
18596 | .ion-md-bicycle:before {
|
18597 | content: "\f299"; }
|
18598 |
|
18599 | .ion-md-bluetooth:before {
|
18600 | content: "\f29a"; }
|
18601 |
|
18602 | .ion-md-boat:before {
|
18603 | content: "\f29b"; }
|
18604 |
|
18605 | .ion-md-body:before {
|
18606 | content: "\f29c"; }
|
18607 |
|
18608 | .ion-md-bonfire:before {
|
18609 | content: "\f29d"; }
|
18610 |
|
18611 | .ion-md-book:before {
|
18612 | content: "\f29e"; }
|
18613 |
|
18614 | .ion-md-bookmark:before {
|
18615 | content: "\f29f"; }
|
18616 |
|
18617 | .ion-md-bookmarks:before {
|
18618 | content: "\f2a0"; }
|
18619 |
|
18620 | .ion-md-bowtie:before {
|
18621 | content: "\f2a1"; }
|
18622 |
|
18623 | .ion-md-briefcase:before {
|
18624 | content: "\f2a2"; }
|
18625 |
|
18626 | .ion-md-browsers:before {
|
18627 | content: "\f2a3"; }
|
18628 |
|
18629 | .ion-md-brush:before {
|
18630 | content: "\f2a4"; }
|
18631 |
|
18632 | .ion-md-bug:before {
|
18633 | content: "\f2a5"; }
|
18634 |
|
18635 | .ion-md-build:before {
|
18636 | content: "\f2a6"; }
|
18637 |
|
18638 | .ion-md-bulb:before {
|
18639 | content: "\f2a7"; }
|
18640 |
|
18641 | .ion-md-bus:before {
|
18642 | content: "\f2a8"; }
|
18643 |
|
18644 | .ion-md-cafe:before {
|
18645 | content: "\f2a9"; }
|
18646 |
|
18647 | .ion-md-calculator:before {
|
18648 | content: "\f2aa"; }
|
18649 |
|
18650 | .ion-md-calendar:before {
|
18651 | content: "\f2ab"; }
|
18652 |
|
18653 | .ion-md-call:before {
|
18654 | content: "\f2ac"; }
|
18655 |
|
18656 | .ion-md-camera:before {
|
18657 | content: "\f2ad"; }
|
18658 |
|
18659 | .ion-md-car:before {
|
18660 | content: "\f2b2"; }
|
18661 |
|
18662 | .ion-md-card:before {
|
18663 | content: "\f2b3"; }
|
18664 |
|
18665 | .ion-md-cart:before {
|
18666 | content: "\f2b4"; }
|
18667 |
|
18668 | .ion-md-cash:before {
|
18669 | content: "\f2b5"; }
|
18670 |
|
18671 | .ion-md-chatboxes:before {
|
18672 | content: "\f2b6"; }
|
18673 |
|
18674 | .ion-md-chatbubbles:before {
|
18675 | content: "\f2b7"; }
|
18676 |
|
18677 | .ion-md-checkbox:before {
|
18678 | content: "\f2b9"; }
|
18679 |
|
18680 | .ion-md-checkbox-outline:before {
|
18681 | content: "\f2b8"; }
|
18682 |
|
18683 | .ion-md-checkmark:before {
|
18684 | content: "\f2bc"; }
|
18685 |
|
18686 | .ion-md-checkmark-circle:before {
|
18687 | content: "\f2bb"; }
|
18688 |
|
18689 | .ion-md-checkmark-circle-outline:before {
|
18690 | content: "\f2ba"; }
|
18691 |
|
18692 | .ion-md-clipboard:before {
|
18693 | content: "\f2bd"; }
|
18694 |
|
18695 | .ion-md-clock:before {
|
18696 | content: "\f2be"; }
|
18697 |
|
18698 | .ion-md-close:before {
|
18699 | content: "\f2c0"; }
|
18700 |
|
18701 | .ion-md-close-circle:before {
|
18702 | content: "\f2bf"; }
|
18703 |
|
18704 | .ion-md-closed-captioning:before {
|
18705 | content: "\f2c1"; }
|
18706 |
|
18707 | .ion-md-cloud:before {
|
18708 | content: "\f2c9"; }
|
18709 |
|
18710 | .ion-md-cloud-circle:before {
|
18711 | content: "\f2c2"; }
|
18712 |
|
18713 | .ion-md-cloud-done:before {
|
18714 | content: "\f2c3"; }
|
18715 |
|
18716 | .ion-md-cloud-download:before {
|
18717 | content: "\f2c6"; }
|
18718 |
|
18719 | .ion-md-cloud-outline:before {
|
18720 | content: "\f2c7"; }
|
18721 |
|
18722 | .ion-md-cloud-upload:before {
|
18723 | content: "\f2c8"; }
|
18724 |
|
18725 | .ion-md-cloudy:before {
|
18726 | content: "\f2cb"; }
|
18727 |
|
18728 | .ion-md-cloudy-night:before {
|
18729 | content: "\f2ca"; }
|
18730 |
|
18731 | .ion-md-code:before {
|
18732 | content: "\f2ce"; }
|
18733 |
|
18734 | .ion-md-code-download:before {
|
18735 | content: "\f2cc"; }
|
18736 |
|
18737 | .ion-md-code-working:before {
|
18738 | content: "\f2cd"; }
|
18739 |
|
18740 | .ion-md-cog:before {
|
18741 | content: "\f2cf"; }
|
18742 |
|
18743 | .ion-md-color-fill:before {
|
18744 | content: "\f2d0"; }
|
18745 |
|
18746 | .ion-md-color-filter:before {
|
18747 | content: "\f2d1"; }
|
18748 |
|
18749 | .ion-md-color-palette:before {
|
18750 | content: "\f2d2"; }
|
18751 |
|
18752 | .ion-md-color-wand:before {
|
18753 | content: "\f2d3"; }
|
18754 |
|
18755 | .ion-md-compass:before {
|
18756 | content: "\f2d4"; }
|
18757 |
|
18758 | .ion-md-construct:before {
|
18759 | content: "\f2d5"; }
|
18760 |
|
18761 | .ion-md-contact:before {
|
18762 | content: "\f2d6"; }
|
18763 |
|
18764 | .ion-md-contacts:before {
|
18765 | content: "\f2d7"; }
|
18766 |
|
18767 | .ion-md-contract:before {
|
18768 | content: "\f2d8"; }
|
18769 |
|
18770 | .ion-md-contrast:before {
|
18771 | content: "\f2d9"; }
|
18772 |
|
18773 | .ion-md-copy:before {
|
18774 | content: "\f2da"; }
|
18775 |
|
18776 | .ion-md-create:before {
|
18777 | content: "\f2db"; }
|
18778 |
|
18779 | .ion-md-crop:before {
|
18780 | content: "\f2dc"; }
|
18781 |
|
18782 | .ion-md-cube:before {
|
18783 | content: "\f2dd"; }
|
18784 |
|
18785 | .ion-md-cut:before {
|
18786 | content: "\f2de"; }
|
18787 |
|
18788 | .ion-md-desktop:before {
|
18789 | content: "\f2df"; }
|
18790 |
|
18791 | .ion-md-disc:before {
|
18792 | content: "\f2e0"; }
|
18793 |
|
18794 | .ion-md-document:before {
|
18795 | content: "\f2e1"; }
|
18796 |
|
18797 | .ion-md-done-all:before {
|
18798 | content: "\f2e2"; }
|
18799 |
|
18800 | .ion-md-download:before {
|
18801 | content: "\f2e3"; }
|
18802 |
|
18803 | .ion-md-easel:before {
|
18804 | content: "\f2e4"; }
|
18805 |
|
18806 | .ion-md-egg:before {
|
18807 | content: "\f2e5"; }
|
18808 |
|
18809 | .ion-md-exit:before {
|
18810 | content: "\f2e6"; }
|
18811 |
|
18812 | .ion-md-expand:before {
|
18813 | content: "\f2e7"; }
|
18814 |
|
18815 | .ion-md-eye:before {
|
18816 | content: "\f2e9"; }
|
18817 |
|
18818 | .ion-md-eye-off:before {
|
18819 | content: "\f2e8"; }
|
18820 |
|
18821 | .ion-md-fastforward:before {
|
18822 | content: "\f2ea"; }
|
18823 |
|
18824 | .ion-md-female:before {
|
18825 | content: "\f2eb"; }
|
18826 |
|
18827 | .ion-md-filing:before {
|
18828 | content: "\f2ec"; }
|
18829 |
|
18830 | .ion-md-film:before {
|
18831 | content: "\f2ed"; }
|
18832 |
|
18833 | .ion-md-finger-print:before {
|
18834 | content: "\f2ee"; }
|
18835 |
|
18836 | .ion-md-flag:before {
|
18837 | content: "\f2ef"; }
|
18838 |
|
18839 | .ion-md-flame:before {
|
18840 | content: "\f2f0"; }
|
18841 |
|
18842 | .ion-md-flash:before {
|
18843 | content: "\f2f1"; }
|
18844 |
|
18845 | .ion-md-flask:before {
|
18846 | content: "\f2f2"; }
|
18847 |
|
18848 | .ion-md-flower:before {
|
18849 | content: "\f2f3"; }
|
18850 |
|
18851 | .ion-md-folder:before {
|
18852 | content: "\f2f5"; }
|
18853 |
|
18854 | .ion-md-folder-open:before {
|
18855 | content: "\f2f4"; }
|
18856 |
|
18857 | .ion-md-football:before {
|
18858 | content: "\f2f6"; }
|
18859 |
|
18860 | .ion-md-funnel:before {
|
18861 | content: "\f2f7"; }
|
18862 |
|
18863 | .ion-md-game-controller-a:before {
|
18864 | content: "\f2f8"; }
|
18865 |
|
18866 | .ion-md-game-controller-b:before {
|
18867 | content: "\f2f9"; }
|
18868 |
|
18869 | .ion-md-git-branch:before {
|
18870 | content: "\f2fa"; }
|
18871 |
|
18872 | .ion-md-git-commit:before {
|
18873 | content: "\f2fb"; }
|
18874 |
|
18875 | .ion-md-git-compare:before {
|
18876 | content: "\f2fc"; }
|
18877 |
|
18878 | .ion-md-git-merge:before {
|
18879 | content: "\f2fd"; }
|
18880 |
|
18881 | .ion-md-git-network:before {
|
18882 | content: "\f2fe"; }
|
18883 |
|
18884 | .ion-md-git-pull-request:before {
|
18885 | content: "\f2ff"; }
|
18886 |
|
18887 | .ion-md-glasses:before {
|
18888 | content: "\f300"; }
|
18889 |
|
18890 | .ion-md-globe:before {
|
18891 | content: "\f301"; }
|
18892 |
|
18893 | .ion-md-grid:before {
|
18894 | content: "\f302"; }
|
18895 |
|
18896 | .ion-md-hammer:before {
|
18897 | content: "\f303"; }
|
18898 |
|
18899 | .ion-md-hand:before {
|
18900 | content: "\f304"; }
|
18901 |
|
18902 | .ion-md-happy:before {
|
18903 | content: "\f305"; }
|
18904 |
|
18905 | .ion-md-headset:before {
|
18906 | content: "\f306"; }
|
18907 |
|
18908 | .ion-md-heart:before {
|
18909 | content: "\f308"; }
|
18910 |
|
18911 | .ion-md-heart-outline:before {
|
18912 | content: "\f307"; }
|
18913 |
|
18914 | .ion-md-help:before {
|
18915 | content: "\f30b"; }
|
18916 |
|
18917 | .ion-md-help-buoy:before {
|
18918 | content: "\f309"; }
|
18919 |
|
18920 | .ion-md-help-circle:before {
|
18921 | content: "\f30a"; }
|
18922 |
|
18923 | .ion-md-home:before {
|
18924 | content: "\f30c"; }
|
18925 |
|
18926 | .ion-md-ice-cream:before {
|
18927 | content: "\f30d"; }
|
18928 |
|
18929 | .ion-md-image:before {
|
18930 | content: "\f30e"; }
|
18931 |
|
18932 | .ion-md-images:before {
|
18933 | content: "\f30f"; }
|
18934 |
|
18935 | .ion-md-infinite:before {
|
18936 | content: "\f310"; }
|
18937 |
|
18938 | .ion-md-information:before {
|
18939 | content: "\f312"; }
|
18940 |
|
18941 | .ion-md-information-circle:before {
|
18942 | content: "\f311"; }
|
18943 |
|
18944 | .ion-md-ionic:before {
|
18945 | content: "\f313"; }
|
18946 |
|
18947 | .ion-md-ionitron:before {
|
18948 | content: "\f314"; }
|
18949 |
|
18950 | .ion-md-jet:before {
|
18951 | content: "\f315"; }
|
18952 |
|
18953 | .ion-md-key:before {
|
18954 | content: "\f316"; }
|
18955 |
|
18956 | .ion-md-keypad:before {
|
18957 | content: "\f317"; }
|
18958 |
|
18959 | .ion-md-laptop:before {
|
18960 | content: "\f318"; }
|
18961 |
|
18962 | .ion-md-leaf:before {
|
18963 | content: "\f319"; }
|
18964 |
|
18965 | .ion-md-link:before {
|
18966 | content: "\f22e"; }
|
18967 |
|
18968 | .ion-md-list:before {
|
18969 | content: "\f31b"; }
|
18970 |
|
18971 | .ion-md-list-box:before {
|
18972 | content: "\f31a"; }
|
18973 |
|
18974 | .ion-md-locate:before {
|
18975 | content: "\f31c"; }
|
18976 |
|
18977 | .ion-md-lock:before {
|
18978 | content: "\f31d"; }
|
18979 |
|
18980 | .ion-md-log-in:before {
|
18981 | content: "\f31e"; }
|
18982 |
|
18983 | .ion-md-log-out:before {
|
18984 | content: "\f31f"; }
|
18985 |
|
18986 | .ion-md-magnet:before {
|
18987 | content: "\f320"; }
|
18988 |
|
18989 | .ion-md-mail:before {
|
18990 | content: "\f322"; }
|
18991 |
|
18992 | .ion-md-mail-open:before {
|
18993 | content: "\f321"; }
|
18994 |
|
18995 | .ion-md-male:before {
|
18996 | content: "\f323"; }
|
18997 |
|
18998 | .ion-md-man:before {
|
18999 | content: "\f324"; }
|
19000 |
|
19001 | .ion-md-map:before {
|
19002 | content: "\f325"; }
|
19003 |
|
19004 | .ion-md-medal:before {
|
19005 | content: "\f326"; }
|
19006 |
|
19007 | .ion-md-medical:before {
|
19008 | content: "\f327"; }
|
19009 |
|
19010 | .ion-md-medkit:before {
|
19011 | content: "\f328"; }
|
19012 |
|
19013 | .ion-md-megaphone:before {
|
19014 | content: "\f329"; }
|
19015 |
|
19016 | .ion-md-menu:before {
|
19017 | content: "\f32a"; }
|
19018 |
|
19019 | .ion-md-mic:before {
|
19020 | content: "\f32c"; }
|
19021 |
|
19022 | .ion-md-mic-off:before {
|
19023 | content: "\f32b"; }
|
19024 |
|
19025 | .ion-md-microphone:before {
|
19026 | content: "\f32d"; }
|
19027 |
|
19028 | .ion-md-moon:before {
|
19029 | content: "\f32e"; }
|
19030 |
|
19031 | .ion-md-more:before {
|
19032 | content: "\f1c9"; }
|
19033 |
|
19034 | .ion-md-move:before {
|
19035 | content: "\f331"; }
|
19036 |
|
19037 | .ion-md-musical-note:before {
|
19038 | content: "\f332"; }
|
19039 |
|
19040 | .ion-md-musical-notes:before {
|
19041 | content: "\f333"; }
|
19042 |
|
19043 | .ion-md-navigate:before {
|
19044 | content: "\f334"; }
|
19045 |
|
19046 | .ion-md-no-smoking:before {
|
19047 | content: "\f335"; }
|
19048 |
|
19049 | .ion-md-notifications:before {
|
19050 | content: "\f338"; }
|
19051 |
|
19052 | .ion-md-notifications-off:before {
|
19053 | content: "\f336"; }
|
19054 |
|
19055 | .ion-md-notifications-outline:before {
|
19056 | content: "\f337"; }
|
19057 |
|
19058 | .ion-md-nuclear:before {
|
19059 | content: "\f339"; }
|
19060 |
|
19061 | .ion-md-nutrition:before {
|
19062 | content: "\f33a"; }
|
19063 |
|
19064 | .ion-md-open:before {
|
19065 | content: "\f33b"; }
|
19066 |
|
19067 | .ion-md-options:before {
|
19068 | content: "\f33c"; }
|
19069 |
|
19070 | .ion-md-outlet:before {
|
19071 | content: "\f33d"; }
|
19072 |
|
19073 | .ion-md-paper:before {
|
19074 | content: "\f33f"; }
|
19075 |
|
19076 | .ion-md-paper-plane:before {
|
19077 | content: "\f33e"; }
|
19078 |
|
19079 | .ion-md-partly-sunny:before {
|
19080 | content: "\f340"; }
|
19081 |
|
19082 | .ion-md-pause:before {
|
19083 | content: "\f341"; }
|
19084 |
|
19085 | .ion-md-paw:before {
|
19086 | content: "\f342"; }
|
19087 |
|
19088 | .ion-md-people:before {
|
19089 | content: "\f343"; }
|
19090 |
|
19091 | .ion-md-person:before {
|
19092 | content: "\f345"; }
|
19093 |
|
19094 | .ion-md-person-add:before {
|
19095 | content: "\f344"; }
|
19096 |
|
19097 | .ion-md-phone-landscape:before {
|
19098 | content: "\f346"; }
|
19099 |
|
19100 | .ion-md-phone-portrait:before {
|
19101 | content: "\f347"; }
|
19102 |
|
19103 | .ion-md-photos:before {
|
19104 | content: "\f348"; }
|
19105 |
|
19106 | .ion-md-pie:before {
|
19107 | content: "\f349"; }
|
19108 |
|
19109 | .ion-md-pin:before {
|
19110 | content: "\f34a"; }
|
19111 |
|
19112 | .ion-md-pint:before {
|
19113 | content: "\f34b"; }
|
19114 |
|
19115 | .ion-md-pizza:before {
|
19116 | content: "\f354"; }
|
19117 |
|
19118 | .ion-md-plane:before {
|
19119 | content: "\f355"; }
|
19120 |
|
19121 | .ion-md-planet:before {
|
19122 | content: "\f356"; }
|
19123 |
|
19124 | .ion-md-play:before {
|
19125 | content: "\f357"; }
|
19126 |
|
19127 | .ion-md-podium:before {
|
19128 | content: "\f358"; }
|
19129 |
|
19130 | .ion-md-power:before {
|
19131 | content: "\f359"; }
|
19132 |
|
19133 | .ion-md-pricetag:before {
|
19134 | content: "\f35a"; }
|
19135 |
|
19136 | .ion-md-pricetags:before {
|
19137 | content: "\f35b"; }
|
19138 |
|
19139 | .ion-md-print:before {
|
19140 | content: "\f35c"; }
|
19141 |
|
19142 | .ion-md-pulse:before {
|
19143 | content: "\f35d"; }
|
19144 |
|
19145 | .ion-md-qr-scanner:before {
|
19146 | content: "\f35e"; }
|
19147 |
|
19148 | .ion-md-quote:before {
|
19149 | content: "\f35f"; }
|
19150 |
|
19151 | .ion-md-radio:before {
|
19152 | content: "\f362"; }
|
19153 |
|
19154 | .ion-md-radio-button-off:before {
|
19155 | content: "\f360"; }
|
19156 |
|
19157 | .ion-md-radio-button-on:before {
|
19158 | content: "\f361"; }
|
19159 |
|
19160 | .ion-md-rainy:before {
|
19161 | content: "\f363"; }
|
19162 |
|
19163 | .ion-md-recording:before {
|
19164 | content: "\f364"; }
|
19165 |
|
19166 | .ion-md-redo:before {
|
19167 | content: "\f365"; }
|
19168 |
|
19169 | .ion-md-refresh:before {
|
19170 | content: "\f366"; }
|
19171 |
|
19172 | .ion-md-refresh-circle:before {
|
19173 | content: "\f228"; }
|
19174 |
|
19175 | .ion-md-remove:before {
|
19176 | content: "\f368"; }
|
19177 |
|
19178 | .ion-md-remove-circle:before {
|
19179 | content: "\f367"; }
|
19180 |
|
19181 | .ion-md-reorder:before {
|
19182 | content: "\f369"; }
|
19183 |
|
19184 | .ion-md-repeat:before {
|
19185 | content: "\f36a"; }
|
19186 |
|
19187 | .ion-md-resize:before {
|
19188 | content: "\f36b"; }
|
19189 |
|
19190 | .ion-md-restaurant:before {
|
19191 | content: "\f36c"; }
|
19192 |
|
19193 | .ion-md-return-left:before {
|
19194 | content: "\f36d"; }
|
19195 |
|
19196 | .ion-md-return-right:before {
|
19197 | content: "\f36e"; }
|
19198 |
|
19199 | .ion-md-reverse-camera:before {
|
19200 | content: "\f36f"; }
|
19201 |
|
19202 | .ion-md-rewind:before {
|
19203 | content: "\f370"; }
|
19204 |
|
19205 | .ion-md-ribbon:before {
|
19206 | content: "\f371"; }
|
19207 |
|
19208 | .ion-md-rose:before {
|
19209 | content: "\f372"; }
|
19210 |
|
19211 | .ion-md-sad:before {
|
19212 | content: "\f373"; }
|
19213 |
|
19214 | .ion-md-school:before {
|
19215 | content: "\f374"; }
|
19216 |
|
19217 | .ion-md-search:before {
|
19218 | content: "\f375"; }
|
19219 |
|
19220 | .ion-md-send:before {
|
19221 | content: "\f376"; }
|
19222 |
|
19223 | .ion-md-settings:before {
|
19224 | content: "\f377"; }
|
19225 |
|
19226 | .ion-md-share:before {
|
19227 | content: "\f379"; }
|
19228 |
|
19229 | .ion-md-share-alt:before {
|
19230 | content: "\f378"; }
|
19231 |
|
19232 | .ion-md-shirt:before {
|
19233 | content: "\f37a"; }
|
19234 |
|
19235 | .ion-md-shuffle:before {
|
19236 | content: "\f37b"; }
|
19237 |
|
19238 | .ion-md-skip-backward:before {
|
19239 | content: "\f37c"; }
|
19240 |
|
19241 | .ion-md-skip-forward:before {
|
19242 | content: "\f37d"; }
|
19243 |
|
19244 | .ion-md-snow:before {
|
19245 | content: "\f37e"; }
|
19246 |
|
19247 | .ion-md-speedometer:before {
|
19248 | content: "\f37f"; }
|
19249 |
|
19250 | .ion-md-square:before {
|
19251 | content: "\f381"; }
|
19252 |
|
19253 | .ion-md-square-outline:before {
|
19254 | content: "\f380"; }
|
19255 |
|
19256 | .ion-md-star:before {
|
19257 | content: "\f384"; }
|
19258 |
|
19259 | .ion-md-star-half:before {
|
19260 | content: "\f382"; }
|
19261 |
|
19262 | .ion-md-star-outline:before {
|
19263 | content: "\f383"; }
|
19264 |
|
19265 | .ion-md-stats:before {
|
19266 | content: "\f385"; }
|
19267 |
|
19268 | .ion-md-stopwatch:before {
|
19269 | content: "\f386"; }
|
19270 |
|
19271 | .ion-md-subway:before {
|
19272 | content: "\f387"; }
|
19273 |
|
19274 | .ion-md-sunny:before {
|
19275 | content: "\f388"; }
|
19276 |
|
19277 | .ion-md-swap:before {
|
19278 | content: "\f389"; }
|
19279 |
|
19280 | .ion-md-switch:before {
|
19281 | content: "\f38a"; }
|
19282 |
|
19283 | .ion-md-sync:before {
|
19284 | content: "\f38b"; }
|
19285 |
|
19286 | .ion-md-tablet-landscape:before {
|
19287 | content: "\f38c"; }
|
19288 |
|
19289 | .ion-md-tablet-portrait:before {
|
19290 | content: "\f38d"; }
|
19291 |
|
19292 | .ion-md-tennisball:before {
|
19293 | content: "\f38e"; }
|
19294 |
|
19295 | .ion-md-text:before {
|
19296 | content: "\f38f"; }
|
19297 |
|
19298 | .ion-md-thermometer:before {
|
19299 | content: "\f390"; }
|
19300 |
|
19301 | .ion-md-thumbs-down:before {
|
19302 | content: "\f391"; }
|
19303 |
|
19304 | .ion-md-thumbs-up:before {
|
19305 | content: "\f392"; }
|
19306 |
|
19307 | .ion-md-thunderstorm:before {
|
19308 | content: "\f393"; }
|
19309 |
|
19310 | .ion-md-time:before {
|
19311 | content: "\f394"; }
|
19312 |
|
19313 | .ion-md-timer:before {
|
19314 | content: "\f395"; }
|
19315 |
|
19316 | .ion-md-train:before {
|
19317 | content: "\f396"; }
|
19318 |
|
19319 | .ion-md-transgender:before {
|
19320 | content: "\f397"; }
|
19321 |
|
19322 | .ion-md-trash:before {
|
19323 | content: "\f398"; }
|
19324 |
|
19325 | .ion-md-trending-down:before {
|
19326 | content: "\f399"; }
|
19327 |
|
19328 | .ion-md-trending-up:before {
|
19329 | content: "\f39a"; }
|
19330 |
|
19331 | .ion-md-trophy:before {
|
19332 | content: "\f39b"; }
|
19333 |
|
19334 | .ion-md-umbrella:before {
|
19335 | content: "\f39c"; }
|
19336 |
|
19337 | .ion-md-undo:before {
|
19338 | content: "\f39d"; }
|
19339 |
|
19340 | .ion-md-unlock:before {
|
19341 | content: "\f39e"; }
|
19342 |
|
19343 | .ion-md-videocam:before {
|
19344 | content: "\f39f"; }
|
19345 |
|
19346 | .ion-md-volume-down:before {
|
19347 | content: "\f3a0"; }
|
19348 |
|
19349 | .ion-md-volume-mute:before {
|
19350 | content: "\f3a1"; }
|
19351 |
|
19352 | .ion-md-volume-off:before {
|
19353 | content: "\f3a2"; }
|
19354 |
|
19355 | .ion-md-volume-up:before {
|
19356 | content: "\f3a3"; }
|
19357 |
|
19358 | .ion-md-walk:before {
|
19359 | content: "\f3a4"; }
|
19360 |
|
19361 | .ion-md-warning:before {
|
19362 | content: "\f3a5"; }
|
19363 |
|
19364 | .ion-md-watch:before {
|
19365 | content: "\f3a6"; }
|
19366 |
|
19367 | .ion-md-water:before {
|
19368 | content: "\f3a7"; }
|
19369 |
|
19370 | .ion-md-wifi:before {
|
19371 | content: "\f3a8"; }
|
19372 |
|
19373 | .ion-md-wine:before {
|
19374 | content: "\f3a9"; }
|
19375 |
|
19376 | .ion-md-woman:before {
|
19377 | content: "\f3aa"; }
|
19378 |
|
19379 | @font-face {
|
19380 | font-family: "Ionicons";
|
19381 | src: url("../fonts/ionicons.woff2?v=3.0.0-alpha.3") format("woff2"), url("../fonts/ionicons.woff?v=3.0.0-alpha.3") format("woff"), url("../fonts/ionicons.ttf?v=3.0.0-alpha.3") format("truetype");
|
19382 | font-weight: normal;
|
19383 | font-style: normal; }
|
19384 |
|
19385 | ion-icon {
|
19386 | display: inline-block;
|
19387 | font-family: "Ionicons";
|
19388 | -moz-osx-font-smoothing: grayscale;
|
19389 | -webkit-font-smoothing: antialiased;
|
19390 | font-style: normal;
|
19391 | font-variant: normal;
|
19392 | font-weight: normal;
|
19393 | line-height: 1;
|
19394 | text-rendering: auto;
|
19395 | text-transform: none;
|
19396 | speak: none; }
|
19397 | ion-icon::before {
|
19398 | display: inline-block; }
|
19399 |
|
19400 | @font-face {
|
19401 | font-family: "Noto Sans";
|
19402 | font-style: normal;
|
19403 | font-weight: 300;
|
19404 | src: local("Noto Sans"), local("Noto-Sans-Regular"), url("../fonts/noto-sans-regular.woff") format("woff"), url("../fonts/noto-sans-regular.ttf") format("truetype"); }
|
19405 |
|
19406 | @font-face {
|
19407 | font-family: "Noto Sans";
|
19408 | font-style: normal;
|
19409 | font-weight: 400;
|
19410 | src: local("Noto Sans"), local("Noto-Sans-Regular"), url("../fonts/noto-sans-regular.woff") format("woff"), url("../fonts/noto-sans-regular.ttf") format("truetype"); }
|
19411 |
|
19412 | @font-face {
|
19413 | font-family: "Noto Sans";
|
19414 | font-style: normal;
|
19415 | font-weight: 500;
|
19416 | src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("../fonts/noto-sans-bold.woff") format("woff"), url("../fonts/noto-sans-bold.ttf") format("truetype"); }
|
19417 |
|
19418 | @font-face {
|
19419 | font-family: "Noto Sans";
|
19420 | font-style: normal;
|
19421 | font-weight: 700;
|
19422 | src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("../fonts/noto-sans-bold.woff") format("woff"), url("../fonts/noto-sans-bold.ttf") format("truetype"); }
|
19423 |
|
19424 | @font-face {
|
19425 | font-family: "Roboto";
|
19426 | font-style: normal;
|
19427 | font-weight: 300;
|
19428 | src: local("Roboto Light"), local("Roboto-Light"), url("../fonts/roboto-light.woff2") format("woff2"), url("../fonts/roboto-light.woff") format("woff"), url("../fonts/roboto-light.ttf") format("truetype"); }
|
19429 |
|
19430 | @font-face {
|
19431 | font-family: "Roboto";
|
19432 | font-style: normal;
|
19433 | font-weight: 400;
|
19434 | src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto-regular.woff2") format("woff2"), url("../fonts/roboto-regular.woff") format("woff"), url("../fonts/roboto-regular.ttf") format("truetype"); }
|
19435 |
|
19436 | @font-face {
|
19437 | font-family: "Roboto";
|
19438 | font-style: normal;
|
19439 | font-weight: 500;
|
19440 | src: local("Roboto Medium"), local("Roboto-Medium"), url("../fonts/roboto-medium.woff2") format("woff2"), url("../fonts/roboto-medium.woff") format("woff"), url("../fonts/roboto-medium.ttf") format("truetype"); }
|
19441 |
|
19442 | @font-face {
|
19443 | font-family: "Roboto";
|
19444 | font-style: normal;
|
19445 | font-weight: 700;
|
19446 | src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-bold.woff2") format("woff2"), url("../fonts/roboto-bold.woff") format("woff"), url("../fonts/roboto-bold.ttf") format("truetype"); }
|