mithril-materialized 2.0.0-beta.1 → 2.0.0-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/README.md +287 -308
  2. package/dist/advanced.css +1888 -0
  3. package/dist/autocomplete.d.ts +3 -3
  4. package/dist/breadcrumb.d.ts +53 -0
  5. package/dist/button.d.ts +66 -21
  6. package/dist/carousel.d.ts +2 -2
  7. package/dist/chip.d.ts +2 -2
  8. package/dist/code-block.d.ts +2 -2
  9. package/dist/collapsible.d.ts +2 -2
  10. package/dist/collection.d.ts +2 -2
  11. package/dist/components.css +2310 -0
  12. package/dist/core.css +3402 -0
  13. package/dist/datatable.d.ts +291 -0
  14. package/dist/datepicker.d.ts +66 -0
  15. package/dist/dropdown.d.ts +2 -2
  16. package/dist/file-upload.d.ts +34 -0
  17. package/dist/floating-action-button.d.ts +2 -2
  18. package/dist/forms.css +2284 -0
  19. package/dist/index.css +1825 -184
  20. package/dist/index.d.ts +14 -1
  21. package/dist/index.esm.js +4752 -2143
  22. package/dist/index.js +4776 -2142
  23. package/dist/index.min.css +8 -0
  24. package/dist/index.umd.js +4776 -2142
  25. package/dist/input-options.d.ts +1 -1
  26. package/dist/input.d.ts +9 -10
  27. package/dist/label.d.ts +4 -2
  28. package/dist/material-box.d.ts +2 -2
  29. package/dist/modal.d.ts +2 -2
  30. package/dist/option.d.ts +4 -4
  31. package/dist/pagination.d.ts +2 -2
  32. package/dist/parallax.d.ts +2 -2
  33. package/dist/pickers.css +487 -0
  34. package/dist/pushpin.d.ts +32 -0
  35. package/dist/radio.d.ts +4 -4
  36. package/dist/search-select.d.ts +2 -2
  37. package/dist/select.d.ts +2 -2
  38. package/dist/sidenav.d.ts +76 -0
  39. package/dist/switch.d.ts +2 -2
  40. package/dist/tabs.d.ts +2 -4
  41. package/dist/theme-switcher.d.ts +49 -0
  42. package/dist/timepicker.d.ts +42 -0
  43. package/dist/toast.d.ts +45 -0
  44. package/dist/tooltip.d.ts +59 -0
  45. package/dist/types.d.ts +226 -0
  46. package/dist/utilities.css +3204 -0
  47. package/dist/wizard.d.ts +58 -0
  48. package/package.json +20 -9
  49. package/sass/components/_breadcrumb.scss +248 -0
  50. package/sass/components/_buttons.scss +3 -3
  51. package/sass/components/_cards.scss +10 -3
  52. package/sass/components/_chips.scss +8 -8
  53. package/sass/components/_collapsible.scss +8 -8
  54. package/sass/components/_datatable.scss +417 -0
  55. package/sass/components/_datepicker.scss +45 -14
  56. package/sass/components/_dropdown.scss +5 -5
  57. package/sass/components/_file-upload.scss +228 -0
  58. package/sass/components/_global.scss +13 -11
  59. package/sass/components/_modal.scss +5 -2
  60. package/sass/components/_navbar.scss +13 -5
  61. package/sass/components/_sidenav.scss +164 -7
  62. package/sass/components/_tabs.scss +5 -4
  63. package/sass/components/_theme-switcher.scss +120 -0
  64. package/sass/components/_theme-variables.scss +205 -0
  65. package/sass/components/_timepicker.scss +179 -87
  66. package/sass/components/_wizard.scss +416 -0
  67. package/sass/components/forms/_input-fields.scss +34 -12
  68. package/sass/components/forms/_radio-buttons.scss +10 -10
  69. package/sass/components/forms/_range.scss +5 -5
  70. package/sass/components/forms/_select.scss +9 -9
  71. package/sass/components/forms/_switches.scss +6 -6
  72. package/sass/materialize.scss +8 -0
  73. package/dist/pickers.d.ts +0 -130
@@ -0,0 +1,1888 @@
1
+ @charset "UTF-8";
2
+ .carousel {
3
+ overflow: hidden;
4
+ position: relative;
5
+ width: 100%;
6
+ height: 400px;
7
+ perspective: 500px;
8
+ transform-style: preserve-3d;
9
+ transform-origin: 0% 50%;
10
+ }
11
+ .carousel.carousel-slider {
12
+ top: 0;
13
+ left: 0;
14
+ }
15
+ .carousel.carousel-slider .carousel-fixed-item {
16
+ position: absolute;
17
+ left: 0;
18
+ right: 0;
19
+ bottom: 20px;
20
+ z-index: 1;
21
+ }
22
+ .carousel.carousel-slider .carousel-fixed-item.with-indicators {
23
+ bottom: 68px;
24
+ }
25
+ .carousel.carousel-slider .carousel-item {
26
+ width: 100%;
27
+ height: 100%;
28
+ min-height: 400px;
29
+ position: absolute;
30
+ top: 0;
31
+ left: 0;
32
+ }
33
+ .carousel.carousel-slider .carousel-item h2 {
34
+ font-size: 24px;
35
+ font-weight: 500;
36
+ line-height: 32px;
37
+ }
38
+ .carousel.carousel-slider .carousel-item p {
39
+ font-size: 15px;
40
+ }
41
+ .carousel .carousel-item {
42
+ visibility: hidden;
43
+ width: 200px;
44
+ height: 200px;
45
+ position: absolute;
46
+ top: 0;
47
+ left: 0;
48
+ }
49
+ .carousel .carousel-item > img {
50
+ width: 100%;
51
+ }
52
+ .carousel .indicators {
53
+ position: absolute;
54
+ text-align: center;
55
+ left: 0;
56
+ right: 0;
57
+ bottom: 0;
58
+ margin: 0;
59
+ }
60
+ .carousel .indicators .indicator-item {
61
+ display: inline-block;
62
+ position: relative;
63
+ cursor: pointer;
64
+ height: 8px;
65
+ width: 8px;
66
+ margin: 24px 4px;
67
+ background-color: rgba(255, 255, 255, 0.5);
68
+ transition: background-color 0.3s;
69
+ border-radius: 50%;
70
+ }
71
+ .carousel .indicators .indicator-item.active {
72
+ background-color: #fff;
73
+ }
74
+ .carousel.scrolling .carousel-item .materialboxed,
75
+ .carousel .carousel-item:not(.active) .materialboxed {
76
+ pointer-events: none;
77
+ }
78
+
79
+ html {
80
+ box-sizing: border-box;
81
+ }
82
+
83
+ *, *:before, *:after {
84
+ box-sizing: inherit;
85
+ }
86
+
87
+ button,
88
+ input,
89
+ optgroup,
90
+ select,
91
+ textarea {
92
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
93
+ }
94
+
95
+ ul:not(.browser-default) {
96
+ padding-left: 0;
97
+ list-style-type: none;
98
+ }
99
+ ul:not(.browser-default) > li {
100
+ list-style-type: none;
101
+ }
102
+
103
+ a {
104
+ color: #039be5;
105
+ text-decoration: none;
106
+ -webkit-tap-highlight-color: transparent;
107
+ }
108
+
109
+ .valign-wrapper {
110
+ display: flex;
111
+ align-items: center;
112
+ }
113
+
114
+ .clearfix {
115
+ clear: both;
116
+ }
117
+
118
+ .z-depth-0 {
119
+ box-shadow: none !important;
120
+ }
121
+
122
+ /* 2dp elevation modified*/
123
+ .z-depth-1, nav, .sidenav {
124
+ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
125
+ }
126
+
127
+ .z-depth-1-half {
128
+ box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
129
+ }
130
+
131
+ /* 6dp elevation modified*/
132
+ .z-depth-2 {
133
+ box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
134
+ }
135
+
136
+ /* 12dp elevation modified*/
137
+ .z-depth-3 {
138
+ box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
139
+ }
140
+
141
+ /* 16dp elevation */
142
+ .z-depth-4 {
143
+ box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
144
+ }
145
+
146
+ /* 24dp elevation */
147
+ .z-depth-5 {
148
+ box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
149
+ }
150
+
151
+ .hoverable {
152
+ transition: box-shadow 0.25s;
153
+ }
154
+ .hoverable:hover {
155
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
156
+ }
157
+
158
+ .divider {
159
+ height: 1px;
160
+ overflow: hidden;
161
+ background-color: #e0e0e0;
162
+ }
163
+
164
+ blockquote {
165
+ margin: 20px 0;
166
+ padding-left: 1.5rem;
167
+ border-left: 5px solid #ee6e73;
168
+ }
169
+
170
+ i {
171
+ line-height: inherit;
172
+ }
173
+ i.left {
174
+ float: left;
175
+ margin-right: 15px;
176
+ }
177
+ i.right {
178
+ float: right;
179
+ margin-left: 15px;
180
+ }
181
+ i.tiny {
182
+ font-size: 1rem;
183
+ }
184
+ i.small {
185
+ font-size: 2rem;
186
+ }
187
+ i.medium {
188
+ font-size: 4rem;
189
+ }
190
+ i.large {
191
+ font-size: 6rem;
192
+ }
193
+
194
+ img.responsive-img,
195
+ video.responsive-video {
196
+ max-width: 100%;
197
+ height: auto;
198
+ }
199
+
200
+ .pagination li {
201
+ display: inline-block;
202
+ border-radius: 2px;
203
+ text-align: center;
204
+ vertical-align: top;
205
+ height: 30px;
206
+ }
207
+ .pagination li a {
208
+ color: var(--mm-text-primary, #444);
209
+ display: inline-block;
210
+ font-size: 1.2rem;
211
+ padding: 0 10px;
212
+ line-height: 30px;
213
+ }
214
+ .pagination li.active a {
215
+ color: var(--mm-text-on-primary, #fff);
216
+ }
217
+ .pagination li.active {
218
+ background-color: #ee6e73;
219
+ }
220
+ .pagination li.disabled a {
221
+ cursor: default;
222
+ color: var(--mm-text-disabled, #999);
223
+ }
224
+ .pagination li i {
225
+ font-size: 2rem;
226
+ }
227
+ .pagination li.pages ul li {
228
+ display: inline-block;
229
+ float: none;
230
+ }
231
+
232
+ @media only screen and (max-width : 992px) {
233
+ .pagination {
234
+ width: 100%;
235
+ }
236
+ .pagination li.prev,
237
+ .pagination li.next {
238
+ width: 10%;
239
+ }
240
+ .pagination li.pages {
241
+ width: 80%;
242
+ overflow: hidden;
243
+ white-space: nowrap;
244
+ }
245
+ }
246
+ .breadcrumb {
247
+ display: inline-block;
248
+ font-size: 18px;
249
+ color: rgba(255, 255, 255, 0.7);
250
+ }
251
+ .breadcrumb i,
252
+ .breadcrumb [class^=mdi-], .breadcrumb [class*=mdi-],
253
+ .breadcrumb i.material-icons {
254
+ display: inline-block;
255
+ float: left;
256
+ font-size: 24px;
257
+ }
258
+ .breadcrumb:before {
259
+ content: "\e5cc";
260
+ color: rgba(255, 255, 255, 0.7);
261
+ vertical-align: top;
262
+ display: inline-block;
263
+ font-family: "Material Icons";
264
+ font-weight: normal;
265
+ font-style: normal;
266
+ font-size: 25px;
267
+ margin: 0 10px 0 8px;
268
+ -webkit-font-smoothing: antialiased;
269
+ float: left;
270
+ }
271
+ .breadcrumb:first-child:before {
272
+ display: none;
273
+ }
274
+ .breadcrumb:last-child {
275
+ color: #fff;
276
+ }
277
+
278
+ .parallax-container {
279
+ position: relative;
280
+ overflow: hidden;
281
+ height: 500px;
282
+ }
283
+ .parallax-container .parallax {
284
+ position: absolute;
285
+ top: 0;
286
+ left: 0;
287
+ right: 0;
288
+ bottom: 0;
289
+ z-index: -1;
290
+ }
291
+ .parallax-container .parallax img {
292
+ opacity: 0;
293
+ position: absolute;
294
+ left: 50%;
295
+ bottom: 0;
296
+ min-width: 100%;
297
+ min-height: 100%;
298
+ transform: translate3d(0, 0, 0);
299
+ transform: translateX(-50%);
300
+ }
301
+
302
+ .pin-top, .pin-bottom {
303
+ position: relative;
304
+ }
305
+
306
+ .pinned {
307
+ position: fixed !important;
308
+ }
309
+
310
+ /*********************
311
+ Transition Classes
312
+ **********************/
313
+ ul.staggered-list li {
314
+ opacity: 0;
315
+ }
316
+
317
+ .fade-in {
318
+ opacity: 0;
319
+ transform-origin: 0 50%;
320
+ }
321
+
322
+ /*********************
323
+ Media Query Classes
324
+ **********************/
325
+ @media only screen and (max-width : 600px) {
326
+ .hide-on-small-only, .hide-on-small-and-down {
327
+ display: none !important;
328
+ }
329
+ }
330
+
331
+ @media only screen and (max-width : 992px) {
332
+ .hide-on-med-and-down {
333
+ display: none !important;
334
+ }
335
+ }
336
+
337
+ @media only screen and (min-width : 601px) {
338
+ .hide-on-med-and-up {
339
+ display: none !important;
340
+ }
341
+ }
342
+
343
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
344
+ .hide-on-med-only {
345
+ display: none !important;
346
+ }
347
+ }
348
+
349
+ @media only screen and (min-width : 993px) {
350
+ .hide-on-large-only {
351
+ display: none !important;
352
+ }
353
+ }
354
+
355
+ @media only screen and (min-width : 1201px) {
356
+ .hide-on-extra-large-only {
357
+ display: none !important;
358
+ }
359
+ }
360
+
361
+ @media only screen and (min-width : 1201px) {
362
+ .show-on-extra-large {
363
+ display: block !important;
364
+ }
365
+ }
366
+
367
+ @media only screen and (min-width : 993px) {
368
+ .show-on-large {
369
+ display: block !important;
370
+ }
371
+ }
372
+
373
+ @media only screen and (min-width: 600px) and (max-width: 992px) {
374
+ .show-on-medium {
375
+ display: block !important;
376
+ }
377
+ }
378
+
379
+ @media only screen and (max-width : 600px) {
380
+ .show-on-small {
381
+ display: block !important;
382
+ }
383
+ }
384
+
385
+ @media only screen and (min-width : 601px) {
386
+ .show-on-medium-and-up {
387
+ display: block !important;
388
+ }
389
+ }
390
+
391
+ @media only screen and (max-width : 992px) {
392
+ .show-on-medium-and-down {
393
+ display: block !important;
394
+ }
395
+ }
396
+
397
+ @media only screen and (max-width : 600px) {
398
+ .center-on-small-only {
399
+ text-align: center;
400
+ }
401
+ }
402
+
403
+ .page-footer {
404
+ padding-top: 20px;
405
+ color: #fff;
406
+ background-color: #ee6e73;
407
+ }
408
+ .page-footer .footer-copyright {
409
+ overflow: hidden;
410
+ min-height: 50px;
411
+ display: flex;
412
+ align-items: center;
413
+ justify-content: space-between;
414
+ padding: 10px 0px;
415
+ color: rgba(255, 255, 255, 0.8);
416
+ background-color: rgba(51, 51, 51, 0.08);
417
+ }
418
+
419
+ table, th, td {
420
+ border: none;
421
+ }
422
+
423
+ table {
424
+ width: 100%;
425
+ display: table;
426
+ border-collapse: collapse;
427
+ border-spacing: 0;
428
+ }
429
+ table.striped tr {
430
+ border-bottom: none;
431
+ }
432
+ table.striped > tbody > tr:nth-child(odd) {
433
+ background-color: rgba(242, 242, 242, 0.5);
434
+ }
435
+ table.striped > tbody > tr > td {
436
+ border-radius: 0;
437
+ }
438
+ table.highlight > tbody > tr {
439
+ transition: background-color 0.25s ease;
440
+ }
441
+ table.highlight > tbody > tr:hover {
442
+ background-color: rgba(242, 242, 242, 0.5);
443
+ }
444
+ table.centered thead tr th, table.centered tbody tr td {
445
+ text-align: center;
446
+ }
447
+
448
+ tr {
449
+ border-bottom: 1px solid rgba(0, 0, 0, 0.12);
450
+ }
451
+
452
+ td, th {
453
+ padding: 15px 5px;
454
+ display: table-cell;
455
+ text-align: left;
456
+ vertical-align: middle;
457
+ border-radius: 2px;
458
+ }
459
+
460
+ @media only screen and (max-width : 992px) {
461
+ table.responsive-table {
462
+ width: 100%;
463
+ border-collapse: collapse;
464
+ border-spacing: 0;
465
+ display: block;
466
+ position: relative;
467
+ /* sort out borders */
468
+ }
469
+ table.responsive-table td:empty:before {
470
+ content: " ";
471
+ }
472
+ table.responsive-table th,
473
+ table.responsive-table td {
474
+ margin: 0;
475
+ vertical-align: top;
476
+ }
477
+ table.responsive-table th {
478
+ text-align: left;
479
+ }
480
+ table.responsive-table thead {
481
+ display: block;
482
+ float: left;
483
+ }
484
+ table.responsive-table thead tr {
485
+ display: block;
486
+ padding: 0 10px 0 0;
487
+ }
488
+ table.responsive-table thead tr th::before {
489
+ content: " ";
490
+ }
491
+ table.responsive-table tbody {
492
+ display: block;
493
+ width: auto;
494
+ position: relative;
495
+ overflow-x: auto;
496
+ white-space: nowrap;
497
+ }
498
+ table.responsive-table tbody tr {
499
+ display: inline-block;
500
+ vertical-align: top;
501
+ }
502
+ table.responsive-table th {
503
+ display: block;
504
+ text-align: right;
505
+ }
506
+ table.responsive-table td {
507
+ display: block;
508
+ min-height: 1.25em;
509
+ text-align: left;
510
+ }
511
+ table.responsive-table tr {
512
+ border-bottom: none;
513
+ padding: 0 10px;
514
+ }
515
+ table.responsive-table thead {
516
+ border: 0;
517
+ border-right: 1px solid rgba(0, 0, 0, 0.12);
518
+ }
519
+ }
520
+ .collection {
521
+ margin: 0.5rem 0 1rem 0;
522
+ border: 1px solid var(--mm-border-color, #e0e0e0);
523
+ border-radius: 2px;
524
+ overflow: hidden;
525
+ position: relative;
526
+ }
527
+ .collection .collection-item {
528
+ background-color: var(--mm-surface-color, #fff);
529
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
530
+ line-height: 1.5rem;
531
+ padding: 10px 20px;
532
+ margin: 0;
533
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
534
+ }
535
+ .collection .collection-item.avatar {
536
+ min-height: 84px;
537
+ padding-left: 72px;
538
+ position: relative;
539
+ }
540
+ .collection .collection-item.avatar:not(.circle-clipper) > .circle,
541
+ .collection .collection-item.avatar :not(.circle-clipper) > .circle {
542
+ position: absolute;
543
+ width: 42px;
544
+ height: 42px;
545
+ overflow: hidden;
546
+ left: 15px;
547
+ display: inline-block;
548
+ vertical-align: middle;
549
+ }
550
+ .collection .collection-item.avatar i.circle {
551
+ font-size: 18px;
552
+ line-height: 42px;
553
+ color: var(--mm-text-on-primary, #fff);
554
+ background-color: var(--mm-text-disabled, #999);
555
+ text-align: center;
556
+ }
557
+ .collection .collection-item.avatar .title {
558
+ font-size: 16px;
559
+ }
560
+ .collection .collection-item.avatar p {
561
+ margin: 0;
562
+ }
563
+ .collection .collection-item.avatar .secondary-content {
564
+ position: absolute;
565
+ top: 16px;
566
+ right: 16px;
567
+ }
568
+ .collection .collection-item:last-child {
569
+ border-bottom: none;
570
+ }
571
+ .collection .collection-item.active {
572
+ background-color: #26a69a;
573
+ color: rgb(234.25, 250.25, 248.75);
574
+ }
575
+ .collection .collection-item.active .secondary-content {
576
+ color: var(--mm-text-on-primary, #fff);
577
+ }
578
+ .collection a.collection-item {
579
+ display: block;
580
+ transition: 0.25s;
581
+ color: #26a69a;
582
+ }
583
+ .collection a.collection-item:not(.active):hover {
584
+ background-color: #ddd;
585
+ }
586
+ .collection.with-header .collection-header {
587
+ background-color: var(--mm-surface-color, #fff);
588
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
589
+ border-bottom: 1px solid var(--mm-border-color, #e0e0e0);
590
+ padding: 10px 20px;
591
+ }
592
+ .collection.with-header .collection-item {
593
+ padding-left: 30px;
594
+ }
595
+ .collection.with-header .collection-item.avatar {
596
+ padding-left: 72px;
597
+ }
598
+
599
+ .secondary-content {
600
+ float: right;
601
+ color: #26a69a;
602
+ }
603
+
604
+ .collapsible .collection {
605
+ margin: 0;
606
+ border: none;
607
+ }
608
+
609
+ .video-container {
610
+ position: relative;
611
+ padding-bottom: 56.25%;
612
+ height: 0;
613
+ overflow: hidden;
614
+ }
615
+ .video-container iframe, .video-container object, .video-container embed {
616
+ position: absolute;
617
+ top: 0;
618
+ left: 0;
619
+ width: 100%;
620
+ height: 100%;
621
+ }
622
+
623
+ .progress {
624
+ position: relative;
625
+ height: 4px;
626
+ display: block;
627
+ width: 100%;
628
+ background-color: #acece6;
629
+ border-radius: 2px;
630
+ margin: 0.5rem 0 1rem 0;
631
+ overflow: hidden;
632
+ }
633
+ .progress .determinate {
634
+ position: absolute;
635
+ top: 0;
636
+ left: 0;
637
+ bottom: 0;
638
+ background-color: #26a69a;
639
+ transition: width 0.3s linear;
640
+ }
641
+ .progress .indeterminate {
642
+ background-color: #26a69a;
643
+ }
644
+ .progress .indeterminate:before {
645
+ content: "";
646
+ position: absolute;
647
+ background-color: inherit;
648
+ top: 0;
649
+ left: 0;
650
+ bottom: 0;
651
+ will-change: left, right;
652
+ animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
653
+ }
654
+ .progress .indeterminate:after {
655
+ content: "";
656
+ position: absolute;
657
+ background-color: inherit;
658
+ top: 0;
659
+ left: 0;
660
+ bottom: 0;
661
+ will-change: left, right;
662
+ animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
663
+ animation-delay: 1.15s;
664
+ }
665
+
666
+ @keyframes indeterminate {
667
+ 0% {
668
+ left: -35%;
669
+ right: 100%;
670
+ }
671
+ 60% {
672
+ left: 100%;
673
+ right: -90%;
674
+ }
675
+ 100% {
676
+ left: 100%;
677
+ right: -90%;
678
+ }
679
+ }
680
+ @keyframes indeterminate-short {
681
+ 0% {
682
+ left: -200%;
683
+ right: 100%;
684
+ }
685
+ 60% {
686
+ left: 107%;
687
+ right: -8%;
688
+ }
689
+ 100% {
690
+ left: 107%;
691
+ right: -8%;
692
+ }
693
+ }
694
+ /*******************
695
+ Utility Classes
696
+ *******************/
697
+ .hide {
698
+ display: none !important;
699
+ }
700
+
701
+ .left-align {
702
+ text-align: left;
703
+ }
704
+
705
+ .right-align {
706
+ text-align: right;
707
+ }
708
+
709
+ .center, .center-align {
710
+ text-align: center;
711
+ }
712
+
713
+ .left {
714
+ float: left !important;
715
+ }
716
+
717
+ .right {
718
+ float: right !important;
719
+ }
720
+
721
+ .no-select {
722
+ user-select: none;
723
+ }
724
+
725
+ .circle {
726
+ border-radius: 50%;
727
+ }
728
+
729
+ .center-block {
730
+ display: block;
731
+ margin-left: auto;
732
+ margin-right: auto;
733
+ }
734
+
735
+ .truncate {
736
+ display: block;
737
+ white-space: nowrap;
738
+ overflow: hidden;
739
+ text-overflow: ellipsis;
740
+ }
741
+
742
+ .no-padding {
743
+ padding: 0 !important;
744
+ }
745
+
746
+ .sidenav-container {
747
+ position: relative;
748
+ z-index: 997;
749
+ }
750
+
751
+ .sidenav-backdrop {
752
+ position: fixed;
753
+ top: 0;
754
+ left: 0;
755
+ right: 0;
756
+ bottom: 0;
757
+ width: 100%;
758
+ height: 100%;
759
+ background: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
760
+ opacity: 0;
761
+ visibility: hidden;
762
+ transition: opacity 0.3s ease, visibility 0.3s ease;
763
+ z-index: 998;
764
+ cursor: pointer;
765
+ }
766
+ .sidenav-backdrop.show {
767
+ opacity: 1;
768
+ visibility: visible;
769
+ }
770
+
771
+ .sidenav-link {
772
+ display: flex;
773
+ align-items: center;
774
+ padding: 0.75rem 1rem;
775
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
776
+ text-decoration: none;
777
+ transition: background-color 0.2s ease, color 0.2s ease;
778
+ cursor: pointer;
779
+ min-height: 48px;
780
+ }
781
+ .sidenav-link:hover:not(.disabled) {
782
+ background: var(--mm-border-color, rgba(0, 0, 0, 0.12));
783
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
784
+ text-decoration: none;
785
+ }
786
+ .sidenav-link.active {
787
+ background: var(--mm-primary-color-light, rgba(38, 166, 154, 0.1));
788
+ color: var(--mm-primary-color, #26a69a);
789
+ }
790
+ .sidenav-link.active .sidenav-icon {
791
+ color: var(--mm-primary-color, #26a69a);
792
+ }
793
+ .sidenav-link.disabled {
794
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
795
+ cursor: not-allowed;
796
+ }
797
+ .sidenav-link.disabled .sidenav-icon {
798
+ color: var(--mm-text-disabled, rgba(0, 0, 0, 0.38));
799
+ }
800
+
801
+ .sidenav-icon {
802
+ margin-right: 1rem;
803
+ font-size: 1.5rem;
804
+ width: 24px;
805
+ height: 24px;
806
+ display: flex;
807
+ align-items: center;
808
+ justify-content: center;
809
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
810
+ flex-shrink: 0;
811
+ }
812
+
813
+ .sidenav-text {
814
+ font-size: 0.875rem;
815
+ font-weight: 500;
816
+ line-height: 1.5;
817
+ overflow: hidden;
818
+ text-overflow: ellipsis;
819
+ white-space: nowrap;
820
+ }
821
+
822
+ .sidenav-divider {
823
+ height: 1px;
824
+ background: var(--mm-divider-color, rgba(0, 0, 0, 0.12));
825
+ margin: 0.5rem 0;
826
+ }
827
+
828
+ .sidenav-subheader {
829
+ padding: 1rem 1rem 0.5rem 1rem;
830
+ font-size: 0.75rem;
831
+ font-weight: 600;
832
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.6));
833
+ text-transform: uppercase;
834
+ letter-spacing: 0.5px;
835
+ line-height: 1.5;
836
+ }
837
+
838
+ .sidenav-content {
839
+ padding: 0;
840
+ height: 100%;
841
+ display: flex;
842
+ flex-direction: column;
843
+ }
844
+
845
+ .sidenav {
846
+ position: fixed;
847
+ width: 300px;
848
+ left: 0;
849
+ top: 0;
850
+ margin: 0;
851
+ transform: translateX(-100%);
852
+ height: 100%;
853
+ height: calc(100% + 60px);
854
+ height: -moz-calc(100%);
855
+ padding-bottom: 60px;
856
+ background-color: var(--mm-surface-color, #fff);
857
+ z-index: 999;
858
+ overflow-y: auto;
859
+ will-change: transform;
860
+ backface-visibility: hidden;
861
+ transform: translateX(-105%);
862
+ transition: transform 0.3s ease, left 0.3s ease, right 0.3s ease;
863
+ }
864
+ .sidenav.sidenav-left {
865
+ left: 0;
866
+ }
867
+ .sidenav.sidenav-right {
868
+ right: 0;
869
+ left: auto;
870
+ transform: translateX(100%);
871
+ }
872
+ .sidenav.sidenav-overlay {
873
+ position: fixed;
874
+ }
875
+ .sidenav.sidenav-push {
876
+ position: relative;
877
+ box-shadow: var(--mm-border-color, rgba(0, 0, 0, 0.12)) 1px 0 0 0;
878
+ }
879
+ .sidenav.closed.sidenav-left {
880
+ transform: translateX(-100%);
881
+ }
882
+ .sidenav.closed.sidenav-right {
883
+ transform: translateX(100%);
884
+ }
885
+ .sidenav.open {
886
+ transform: translateX(0);
887
+ }
888
+ .sidenav.right-aligned {
889
+ right: 0;
890
+ transform: translateX(105%);
891
+ left: auto;
892
+ transform: translateX(100%);
893
+ }
894
+ .sidenav .collapsible {
895
+ margin: 0;
896
+ }
897
+ .sidenav li {
898
+ float: none;
899
+ line-height: 48px;
900
+ }
901
+ .sidenav li.active {
902
+ background-color: rgba(0, 0, 0, 0.05);
903
+ }
904
+ .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) {
905
+ color: var(--mm-text-primary, rgba(0, 0, 0, 0.87));
906
+ display: block;
907
+ font-size: 14px;
908
+ font-weight: 500;
909
+ height: 48px;
910
+ line-height: 48px;
911
+ padding: 0 32px;
912
+ }
913
+ .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating):hover {
914
+ background-color: var(--mm-border-color, rgba(0, 0, 0, 0.05));
915
+ }
916
+ .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) > i, .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) > [class^=mdi-], .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) li > a > [class*=mdi-], .sidenav li > a:not(.btn):not(.btn-large):not(.btn-flat):not(.btn-floating) > i.material-icons {
917
+ float: left;
918
+ height: 48px;
919
+ line-height: 48px;
920
+ margin: 0 32px 0 0;
921
+ width: 24px;
922
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
923
+ }
924
+ .sidenav li > .btn, .sidenav li > .btn-large, .sidenav li > .btn-flat, .sidenav li > .btn-floating {
925
+ margin: 10px 32px;
926
+ }
927
+ .sidenav .divider {
928
+ margin: 8px 0 0 0;
929
+ }
930
+ .sidenav .subheader {
931
+ cursor: initial;
932
+ pointer-events: none;
933
+ color: var(--mm-text-secondary, rgba(0, 0, 0, 0.54));
934
+ font-size: 14px;
935
+ font-weight: 500;
936
+ line-height: 48px;
937
+ padding: 0 32px;
938
+ height: 48px;
939
+ display: flex;
940
+ align-items: center;
941
+ }
942
+ .sidenav .subheader:hover {
943
+ background-color: transparent;
944
+ }
945
+ .sidenav .user-view {
946
+ position: relative;
947
+ padding: 32px 32px 0;
948
+ margin-bottom: 8px;
949
+ }
950
+ .sidenav .user-view > a {
951
+ height: auto;
952
+ padding: 0;
953
+ }
954
+ .sidenav .user-view > a:hover {
955
+ background-color: transparent;
956
+ }
957
+ .sidenav .user-view .background {
958
+ overflow: hidden;
959
+ position: absolute;
960
+ top: 0;
961
+ right: 0;
962
+ bottom: 0;
963
+ left: 0;
964
+ z-index: -1;
965
+ }
966
+ .sidenav .user-view .circle, .sidenav .user-view .name, .sidenav .user-view .email {
967
+ display: block;
968
+ }
969
+ .sidenav .user-view .circle {
970
+ height: 64px;
971
+ width: 64px;
972
+ }
973
+ .sidenav .user-view .name,
974
+ .sidenav .user-view .email {
975
+ font-size: 14px;
976
+ line-height: 24px;
977
+ }
978
+ .sidenav .user-view .name {
979
+ margin-top: 16px;
980
+ font-weight: 500;
981
+ }
982
+ .sidenav .user-view .email {
983
+ padding-bottom: 16px;
984
+ font-weight: 400;
985
+ }
986
+
987
+ .drag-target {
988
+ height: 100%;
989
+ width: 10px;
990
+ position: fixed;
991
+ top: 0;
992
+ left: 0;
993
+ z-index: 998;
994
+ }
995
+ .drag-target.right-aligned {
996
+ right: 0;
997
+ }
998
+
999
+ .sidenav.sidenav-fixed {
1000
+ left: 0;
1001
+ transform: translateX(0);
1002
+ position: fixed;
1003
+ }
1004
+ .sidenav.sidenav-fixed.right-aligned {
1005
+ right: 0;
1006
+ left: auto;
1007
+ }
1008
+
1009
+ @media only screen and (max-width : 992px) {
1010
+ .sidenav.sidenav-fixed {
1011
+ transform: translateX(-105%);
1012
+ }
1013
+ .sidenav.sidenav-fixed.right-aligned {
1014
+ transform: translateX(105%);
1015
+ }
1016
+ .sidenav > a {
1017
+ padding: 0 16px;
1018
+ }
1019
+ .sidenav .user-view {
1020
+ padding: 16px 16px 0;
1021
+ }
1022
+ }
1023
+ .sidenav .collapsible-body > ul:not(.collapsible) > li.active,
1024
+ .sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active {
1025
+ background-color: #ee6e73;
1026
+ }
1027
+ .sidenav .collapsible-body > ul:not(.collapsible) > li.active a,
1028
+ .sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active a {
1029
+ color: #fff;
1030
+ }
1031
+
1032
+ .sidenav .collapsible-body {
1033
+ padding: 0;
1034
+ }
1035
+
1036
+ .sidenav-overlay {
1037
+ position: fixed;
1038
+ top: 0;
1039
+ left: 0;
1040
+ right: 0;
1041
+ bottom: 0;
1042
+ width: 100%;
1043
+ height: 100%;
1044
+ opacity: 0;
1045
+ background-color: var(--mm-overlay-background, rgba(0, 0, 0, 0.5));
1046
+ z-index: 997;
1047
+ display: none;
1048
+ transition: opacity 0.3s ease;
1049
+ }
1050
+
1051
+ .sidenav-overlay {
1052
+ pointer-events: auto;
1053
+ }
1054
+
1055
+ nav {
1056
+ color: var(--mm-nav-text, #fff);
1057
+ background-color: var(--mm-nav-background, #ee6e73);
1058
+ width: 100%;
1059
+ height: 56px;
1060
+ line-height: 56px;
1061
+ }
1062
+ nav.nav-extended {
1063
+ height: auto;
1064
+ }
1065
+ nav.nav-extended .nav-wrapper {
1066
+ min-height: 56px;
1067
+ height: auto;
1068
+ }
1069
+ nav.nav-extended .nav-content {
1070
+ position: relative;
1071
+ line-height: normal;
1072
+ }
1073
+ nav a {
1074
+ color: var(--mm-nav-text, #fff);
1075
+ }
1076
+ nav i,
1077
+ nav [class^=mdi-], nav [class*=mdi-],
1078
+ nav i.material-icons {
1079
+ display: block;
1080
+ font-size: 24px;
1081
+ height: 56px;
1082
+ line-height: 56px;
1083
+ }
1084
+ nav .nav-wrapper {
1085
+ position: relative;
1086
+ height: 100%;
1087
+ }
1088
+ @media only screen and (min-width : 993px) {
1089
+ nav a.sidenav-trigger {
1090
+ display: none;
1091
+ }
1092
+ }
1093
+ nav .sidenav-trigger {
1094
+ float: left;
1095
+ position: relative;
1096
+ z-index: 1;
1097
+ height: 56px;
1098
+ margin: 0 18px;
1099
+ }
1100
+ nav .sidenav-trigger i {
1101
+ height: 56px;
1102
+ line-height: 56px;
1103
+ }
1104
+ nav .brand-logo {
1105
+ position: absolute;
1106
+ color: #fff;
1107
+ display: inline-block;
1108
+ font-size: 2.1rem;
1109
+ padding: 0;
1110
+ }
1111
+ nav .brand-logo.center {
1112
+ left: 50%;
1113
+ transform: translateX(-50%);
1114
+ }
1115
+ @media only screen and (max-width : 992px) {
1116
+ nav .brand-logo {
1117
+ left: 50%;
1118
+ transform: translateX(-50%);
1119
+ }
1120
+ nav .brand-logo.left, nav .brand-logo.right {
1121
+ padding: 0;
1122
+ transform: none;
1123
+ }
1124
+ nav .brand-logo.left {
1125
+ left: 0.5rem;
1126
+ }
1127
+ nav .brand-logo.right {
1128
+ right: 0.5rem;
1129
+ left: auto;
1130
+ }
1131
+ }
1132
+ nav .brand-logo.right {
1133
+ right: 0.5rem;
1134
+ padding: 0;
1135
+ }
1136
+ nav .brand-logo i,
1137
+ nav .brand-logo [class^=mdi-], nav .brand-logo [class*=mdi-],
1138
+ nav .brand-logo i.material-icons {
1139
+ float: left;
1140
+ margin-right: 15px;
1141
+ }
1142
+ nav .nav-title {
1143
+ display: inline-block;
1144
+ font-size: 32px;
1145
+ padding: 28px 0;
1146
+ }
1147
+ nav ul {
1148
+ margin: 0;
1149
+ }
1150
+ nav ul li {
1151
+ transition: background-color 0.3s;
1152
+ float: left;
1153
+ padding: 0;
1154
+ }
1155
+ nav ul li.active {
1156
+ background-color: var(--mm-primary-color-light, rgba(0, 0, 0, 0.1));
1157
+ }
1158
+ nav ul li.active a {
1159
+ color: var(--mm-nav-active-text, #fff);
1160
+ }
1161
+ nav ul li.active i, nav ul li.active .material-icons {
1162
+ color: var(--mm-nav-active-text, #fff);
1163
+ }
1164
+ nav ul a {
1165
+ transition: background-color 0.3s;
1166
+ font-size: 1rem;
1167
+ color: #fff;
1168
+ display: block;
1169
+ padding: 0 15px;
1170
+ cursor: pointer;
1171
+ }
1172
+ nav ul a.btn, nav ul a.btn-large, nav ul a.btn-flat, nav ul a.btn-floating {
1173
+ margin-top: -2px;
1174
+ margin-left: 15px;
1175
+ margin-right: 15px;
1176
+ }
1177
+ nav ul a.btn > .material-icons, nav ul a.btn-large > .material-icons, nav ul a.btn-flat > .material-icons, nav ul a.btn-floating > .material-icons {
1178
+ height: inherit;
1179
+ line-height: inherit;
1180
+ }
1181
+ nav ul a:hover {
1182
+ background-color: rgba(0, 0, 0, 0.1);
1183
+ }
1184
+ nav ul.left {
1185
+ float: left;
1186
+ }
1187
+ nav form {
1188
+ height: 100%;
1189
+ }
1190
+ nav .input-field {
1191
+ margin: 0;
1192
+ height: 100%;
1193
+ }
1194
+ nav .input-field input {
1195
+ height: 100%;
1196
+ font-size: 1.2rem;
1197
+ border: none;
1198
+ padding-left: 2rem;
1199
+ }
1200
+ nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid {
1201
+ border: none;
1202
+ box-shadow: none;
1203
+ }
1204
+ nav .input-field label {
1205
+ top: 0;
1206
+ left: 0;
1207
+ }
1208
+ nav .input-field label i {
1209
+ color: rgba(255, 255, 255, 0.7);
1210
+ transition: color 0.3s;
1211
+ }
1212
+ nav .input-field label.active i {
1213
+ color: var(--mm-nav-text, #fff);
1214
+ }
1215
+
1216
+ .navbar-fixed {
1217
+ position: relative;
1218
+ height: 56px;
1219
+ z-index: 997;
1220
+ }
1221
+ .navbar-fixed nav {
1222
+ position: fixed;
1223
+ }
1224
+
1225
+ @media only screen and (min-width : 601px) {
1226
+ nav.nav-extended .nav-wrapper {
1227
+ min-height: 64px;
1228
+ }
1229
+ nav, nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i {
1230
+ height: 64px;
1231
+ line-height: 64px;
1232
+ }
1233
+ .navbar-fixed {
1234
+ height: 64px;
1235
+ }
1236
+ }
1237
+ /*
1238
+ @license
1239
+ Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
1240
+ This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
1241
+ The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
1242
+ The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
1243
+ Code distributed by Google as part of the polymer project is also
1244
+ subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
1245
+ */
1246
+ /**************************/
1247
+ /* STYLES FOR THE SPINNER */
1248
+ /**************************/
1249
+ /*
1250
+ * Constants:
1251
+ * STROKEWIDTH = 3px
1252
+ * ARCSIZE = 270 degrees (amount of circle the arc takes up)
1253
+ * ARCTIME = 1333ms (time it takes to expand and contract arc)
1254
+ * ARCSTARTROT = 216 degrees (how much the start location of the arc
1255
+ * should rotate each time, 216 gives us a
1256
+ * 5 pointed star shape (it's 360/5 * 3).
1257
+ * For a 7 pointed star, we might do
1258
+ * 360/7 * 3 = 154.286)
1259
+ * CONTAINERWIDTH = 28px
1260
+ * SHRINK_TIME = 400ms
1261
+ */
1262
+ .preloader-wrapper {
1263
+ display: inline-block;
1264
+ position: relative;
1265
+ width: 50px;
1266
+ height: 50px;
1267
+ }
1268
+ .preloader-wrapper.small {
1269
+ width: 36px;
1270
+ height: 36px;
1271
+ }
1272
+ .preloader-wrapper.big {
1273
+ width: 64px;
1274
+ height: 64px;
1275
+ }
1276
+ .preloader-wrapper.active {
1277
+ /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
1278
+ -webkit-animation: container-rotate 1568ms linear infinite;
1279
+ animation: container-rotate 1568ms linear infinite;
1280
+ }
1281
+
1282
+ @-webkit-keyframes container-rotate {
1283
+ to {
1284
+ -webkit-transform: rotate(360deg);
1285
+ }
1286
+ }
1287
+ @keyframes container-rotate {
1288
+ to {
1289
+ transform: rotate(360deg);
1290
+ }
1291
+ }
1292
+ .spinner-layer {
1293
+ position: absolute;
1294
+ width: 100%;
1295
+ height: 100%;
1296
+ opacity: 0;
1297
+ border-color: #26a69a;
1298
+ }
1299
+
1300
+ .spinner-blue,
1301
+ .spinner-blue-only {
1302
+ border-color: #4285f4;
1303
+ }
1304
+
1305
+ .spinner-red,
1306
+ .spinner-red-only {
1307
+ border-color: #db4437;
1308
+ }
1309
+
1310
+ .spinner-yellow,
1311
+ .spinner-yellow-only {
1312
+ border-color: #f4b400;
1313
+ }
1314
+
1315
+ .spinner-green,
1316
+ .spinner-green-only {
1317
+ border-color: #0f9d58;
1318
+ }
1319
+
1320
+ /**
1321
+ * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
1322
+ *
1323
+ * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
1324
+ * guarantee that the animation will start _exactly_ after that value. So we avoid using
1325
+ * animation-delay and instead set custom keyframes for each color (as redundant as it
1326
+ * seems).
1327
+ *
1328
+ * We write out each animation in full (instead of separating animation-name,
1329
+ * animation-duration, etc.) because under the polyfill, Safari does not recognize those
1330
+ * specific properties properly, treats them as -webkit-animation, and overrides the
1331
+ * other animation rules. See https://github.com/Polymer/platform/issues/53.
1332
+ */
1333
+ .active .spinner-layer.spinner-blue {
1334
+ /* durations: 4 * ARCTIME */
1335
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1336
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1337
+ }
1338
+
1339
+ .active .spinner-layer.spinner-red {
1340
+ /* durations: 4 * ARCTIME */
1341
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1342
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1343
+ }
1344
+
1345
+ .active .spinner-layer.spinner-yellow {
1346
+ /* durations: 4 * ARCTIME */
1347
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1348
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1349
+ }
1350
+
1351
+ .active .spinner-layer.spinner-green {
1352
+ /* durations: 4 * ARCTIME */
1353
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1354
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1355
+ }
1356
+
1357
+ .active .spinner-layer,
1358
+ .active .spinner-layer.spinner-blue-only,
1359
+ .active .spinner-layer.spinner-red-only,
1360
+ .active .spinner-layer.spinner-yellow-only,
1361
+ .active .spinner-layer.spinner-green-only {
1362
+ /* durations: 4 * ARCTIME */
1363
+ opacity: 1;
1364
+ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1365
+ animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1366
+ }
1367
+
1368
+ @-webkit-keyframes fill-unfill-rotate {
1369
+ 12.5% {
1370
+ -webkit-transform: rotate(135deg);
1371
+ } /* 0.5 * ARCSIZE */
1372
+ 25% {
1373
+ -webkit-transform: rotate(270deg);
1374
+ } /* 1 * ARCSIZE */
1375
+ 37.5% {
1376
+ -webkit-transform: rotate(405deg);
1377
+ } /* 1.5 * ARCSIZE */
1378
+ 50% {
1379
+ -webkit-transform: rotate(540deg);
1380
+ } /* 2 * ARCSIZE */
1381
+ 62.5% {
1382
+ -webkit-transform: rotate(675deg);
1383
+ } /* 2.5 * ARCSIZE */
1384
+ 75% {
1385
+ -webkit-transform: rotate(810deg);
1386
+ } /* 3 * ARCSIZE */
1387
+ 87.5% {
1388
+ -webkit-transform: rotate(945deg);
1389
+ } /* 3.5 * ARCSIZE */
1390
+ to {
1391
+ -webkit-transform: rotate(1080deg);
1392
+ } /* 4 * ARCSIZE */
1393
+ }
1394
+ @keyframes fill-unfill-rotate {
1395
+ 12.5% {
1396
+ transform: rotate(135deg);
1397
+ } /* 0.5 * ARCSIZE */
1398
+ 25% {
1399
+ transform: rotate(270deg);
1400
+ } /* 1 * ARCSIZE */
1401
+ 37.5% {
1402
+ transform: rotate(405deg);
1403
+ } /* 1.5 * ARCSIZE */
1404
+ 50% {
1405
+ transform: rotate(540deg);
1406
+ } /* 2 * ARCSIZE */
1407
+ 62.5% {
1408
+ transform: rotate(675deg);
1409
+ } /* 2.5 * ARCSIZE */
1410
+ 75% {
1411
+ transform: rotate(810deg);
1412
+ } /* 3 * ARCSIZE */
1413
+ 87.5% {
1414
+ transform: rotate(945deg);
1415
+ } /* 3.5 * ARCSIZE */
1416
+ to {
1417
+ transform: rotate(1080deg);
1418
+ } /* 4 * ARCSIZE */
1419
+ }
1420
+ @-webkit-keyframes blue-fade-in-out {
1421
+ from {
1422
+ opacity: 1;
1423
+ }
1424
+ 25% {
1425
+ opacity: 1;
1426
+ }
1427
+ 26% {
1428
+ opacity: 0;
1429
+ }
1430
+ 89% {
1431
+ opacity: 0;
1432
+ }
1433
+ 90% {
1434
+ opacity: 1;
1435
+ }
1436
+ 100% {
1437
+ opacity: 1;
1438
+ }
1439
+ }
1440
+ @keyframes blue-fade-in-out {
1441
+ from {
1442
+ opacity: 1;
1443
+ }
1444
+ 25% {
1445
+ opacity: 1;
1446
+ }
1447
+ 26% {
1448
+ opacity: 0;
1449
+ }
1450
+ 89% {
1451
+ opacity: 0;
1452
+ }
1453
+ 90% {
1454
+ opacity: 1;
1455
+ }
1456
+ 100% {
1457
+ opacity: 1;
1458
+ }
1459
+ }
1460
+ @-webkit-keyframes red-fade-in-out {
1461
+ from {
1462
+ opacity: 0;
1463
+ }
1464
+ 15% {
1465
+ opacity: 0;
1466
+ }
1467
+ 25% {
1468
+ opacity: 1;
1469
+ }
1470
+ 50% {
1471
+ opacity: 1;
1472
+ }
1473
+ 51% {
1474
+ opacity: 0;
1475
+ }
1476
+ }
1477
+ @keyframes red-fade-in-out {
1478
+ from {
1479
+ opacity: 0;
1480
+ }
1481
+ 15% {
1482
+ opacity: 0;
1483
+ }
1484
+ 25% {
1485
+ opacity: 1;
1486
+ }
1487
+ 50% {
1488
+ opacity: 1;
1489
+ }
1490
+ 51% {
1491
+ opacity: 0;
1492
+ }
1493
+ }
1494
+ @-webkit-keyframes yellow-fade-in-out {
1495
+ from {
1496
+ opacity: 0;
1497
+ }
1498
+ 40% {
1499
+ opacity: 0;
1500
+ }
1501
+ 50% {
1502
+ opacity: 1;
1503
+ }
1504
+ 75% {
1505
+ opacity: 1;
1506
+ }
1507
+ 76% {
1508
+ opacity: 0;
1509
+ }
1510
+ }
1511
+ @keyframes yellow-fade-in-out {
1512
+ from {
1513
+ opacity: 0;
1514
+ }
1515
+ 40% {
1516
+ opacity: 0;
1517
+ }
1518
+ 50% {
1519
+ opacity: 1;
1520
+ }
1521
+ 75% {
1522
+ opacity: 1;
1523
+ }
1524
+ 76% {
1525
+ opacity: 0;
1526
+ }
1527
+ }
1528
+ @-webkit-keyframes green-fade-in-out {
1529
+ from {
1530
+ opacity: 0;
1531
+ }
1532
+ 65% {
1533
+ opacity: 0;
1534
+ }
1535
+ 75% {
1536
+ opacity: 1;
1537
+ }
1538
+ 90% {
1539
+ opacity: 1;
1540
+ }
1541
+ 100% {
1542
+ opacity: 0;
1543
+ }
1544
+ }
1545
+ @keyframes green-fade-in-out {
1546
+ from {
1547
+ opacity: 0;
1548
+ }
1549
+ 65% {
1550
+ opacity: 0;
1551
+ }
1552
+ 75% {
1553
+ opacity: 1;
1554
+ }
1555
+ 90% {
1556
+ opacity: 1;
1557
+ }
1558
+ 100% {
1559
+ opacity: 0;
1560
+ }
1561
+ }
1562
+ /**
1563
+ * Patch the gap that appear between the two adjacent div.circle-clipper while the
1564
+ * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
1565
+ */
1566
+ .gap-patch {
1567
+ position: absolute;
1568
+ top: 0;
1569
+ left: 45%;
1570
+ width: 10%;
1571
+ height: 100%;
1572
+ overflow: hidden;
1573
+ border-color: inherit;
1574
+ }
1575
+
1576
+ .gap-patch .circle {
1577
+ width: 1000%;
1578
+ left: -450%;
1579
+ }
1580
+
1581
+ .circle-clipper {
1582
+ display: inline-block;
1583
+ position: relative;
1584
+ width: 50%;
1585
+ height: 100%;
1586
+ overflow: hidden;
1587
+ border-color: inherit;
1588
+ }
1589
+ .circle-clipper .circle {
1590
+ width: 200%;
1591
+ height: 100%;
1592
+ border-width: 3px; /* STROKEWIDTH */
1593
+ border-style: solid;
1594
+ border-color: inherit;
1595
+ border-bottom-color: transparent !important;
1596
+ border-radius: 50%;
1597
+ -webkit-animation: none;
1598
+ animation: none;
1599
+ position: absolute;
1600
+ top: 0;
1601
+ right: 0;
1602
+ bottom: 0;
1603
+ }
1604
+ .circle-clipper.left .circle {
1605
+ left: 0;
1606
+ border-right-color: transparent !important;
1607
+ -webkit-transform: rotate(129deg);
1608
+ transform: rotate(129deg);
1609
+ }
1610
+ .circle-clipper.right .circle {
1611
+ left: -100%;
1612
+ border-left-color: transparent !important;
1613
+ -webkit-transform: rotate(-129deg);
1614
+ transform: rotate(-129deg);
1615
+ }
1616
+
1617
+ .active .circle-clipper.left .circle {
1618
+ /* duration: ARCTIME */
1619
+ -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1620
+ animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1621
+ }
1622
+
1623
+ .active .circle-clipper.right .circle {
1624
+ /* duration: ARCTIME */
1625
+ -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1626
+ animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
1627
+ }
1628
+
1629
+ @-webkit-keyframes left-spin {
1630
+ from {
1631
+ -webkit-transform: rotate(130deg);
1632
+ }
1633
+ 50% {
1634
+ -webkit-transform: rotate(-5deg);
1635
+ }
1636
+ to {
1637
+ -webkit-transform: rotate(130deg);
1638
+ }
1639
+ }
1640
+ @keyframes left-spin {
1641
+ from {
1642
+ transform: rotate(130deg);
1643
+ }
1644
+ 50% {
1645
+ transform: rotate(-5deg);
1646
+ }
1647
+ to {
1648
+ transform: rotate(130deg);
1649
+ }
1650
+ }
1651
+ @-webkit-keyframes right-spin {
1652
+ from {
1653
+ -webkit-transform: rotate(-130deg);
1654
+ }
1655
+ 50% {
1656
+ -webkit-transform: rotate(5deg);
1657
+ }
1658
+ to {
1659
+ -webkit-transform: rotate(-130deg);
1660
+ }
1661
+ }
1662
+ @keyframes right-spin {
1663
+ from {
1664
+ transform: rotate(-130deg);
1665
+ }
1666
+ 50% {
1667
+ transform: rotate(5deg);
1668
+ }
1669
+ to {
1670
+ transform: rotate(-130deg);
1671
+ }
1672
+ }
1673
+ #spinnerContainer.cooldown {
1674
+ /* duration: SHRINK_TIME */
1675
+ -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
1676
+ animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
1677
+ }
1678
+
1679
+ @-webkit-keyframes fade-out {
1680
+ from {
1681
+ opacity: 1;
1682
+ }
1683
+ to {
1684
+ opacity: 0;
1685
+ }
1686
+ }
1687
+ @keyframes fade-out {
1688
+ from {
1689
+ opacity: 1;
1690
+ }
1691
+ to {
1692
+ opacity: 0;
1693
+ }
1694
+ }
1695
+ .slider {
1696
+ position: relative;
1697
+ height: 400px;
1698
+ width: 100%;
1699
+ }
1700
+ .slider.fullscreen {
1701
+ height: 100%;
1702
+ width: 100%;
1703
+ position: absolute;
1704
+ top: 0;
1705
+ left: 0;
1706
+ right: 0;
1707
+ bottom: 0;
1708
+ }
1709
+ .slider.fullscreen ul.slides {
1710
+ height: 100%;
1711
+ }
1712
+ .slider.fullscreen ul.indicators {
1713
+ z-index: 2;
1714
+ bottom: 30px;
1715
+ }
1716
+ .slider .slides {
1717
+ background-color: #9e9e9e;
1718
+ margin: 0;
1719
+ height: 400px;
1720
+ }
1721
+ .slider .slides li {
1722
+ opacity: 0;
1723
+ position: absolute;
1724
+ top: 0;
1725
+ left: 0;
1726
+ z-index: 1;
1727
+ width: 100%;
1728
+ height: inherit;
1729
+ overflow: hidden;
1730
+ }
1731
+ .slider .slides li img {
1732
+ height: 100%;
1733
+ width: 100%;
1734
+ background-size: cover;
1735
+ background-position: center;
1736
+ }
1737
+ .slider .slides li .caption {
1738
+ color: #fff;
1739
+ position: absolute;
1740
+ top: 15%;
1741
+ left: 15%;
1742
+ width: 70%;
1743
+ opacity: 0;
1744
+ }
1745
+ .slider .slides li .caption p {
1746
+ color: #e0e0e0;
1747
+ }
1748
+ .slider .slides li.active {
1749
+ z-index: 2;
1750
+ }
1751
+ .slider .indicators {
1752
+ position: absolute;
1753
+ text-align: center;
1754
+ left: 0;
1755
+ right: 0;
1756
+ bottom: 0;
1757
+ margin: 0;
1758
+ }
1759
+ .slider .indicators .indicator-item {
1760
+ display: inline-block;
1761
+ position: relative;
1762
+ cursor: pointer;
1763
+ height: 16px;
1764
+ width: 16px;
1765
+ margin: 0 12px;
1766
+ background-color: #e0e0e0;
1767
+ transition: background-color 0.3s;
1768
+ border-radius: 50%;
1769
+ }
1770
+ .slider .indicators .indicator-item.active {
1771
+ background-color: #4CAF50;
1772
+ }
1773
+
1774
+ .tap-target-wrapper {
1775
+ width: 800px;
1776
+ height: 800px;
1777
+ position: fixed;
1778
+ z-index: 1000;
1779
+ visibility: hidden;
1780
+ transition: visibility 0s 0.3s;
1781
+ }
1782
+
1783
+ .tap-target-wrapper.open {
1784
+ visibility: visible;
1785
+ transition: visibility 0s;
1786
+ }
1787
+ .tap-target-wrapper.open .tap-target {
1788
+ transform: scale(1);
1789
+ opacity: 0.95;
1790
+ transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1);
1791
+ }
1792
+ .tap-target-wrapper.open .tap-target-wave::before {
1793
+ transform: scale(1);
1794
+ }
1795
+ .tap-target-wrapper.open .tap-target-wave::after {
1796
+ visibility: visible;
1797
+ animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
1798
+ transition: opacity 0.3s, transform 0.3s, visibility 0s 1s;
1799
+ }
1800
+
1801
+ .tap-target {
1802
+ position: absolute;
1803
+ font-size: 1rem;
1804
+ border-radius: 50%;
1805
+ background-color: #ee6e73;
1806
+ box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.14), 0 10px 50px 0 rgba(0, 0, 0, 0.12), 0 30px 10px -20px rgba(0, 0, 0, 0.2);
1807
+ width: 100%;
1808
+ height: 100%;
1809
+ opacity: 0;
1810
+ transform: scale(0);
1811
+ transition: transform 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s cubic-bezier(0.42, 0, 0.58, 1);
1812
+ }
1813
+
1814
+ .tap-target-content {
1815
+ position: relative;
1816
+ display: table-cell;
1817
+ }
1818
+
1819
+ .tap-target-wave {
1820
+ position: absolute;
1821
+ border-radius: 50%;
1822
+ z-index: 10001;
1823
+ }
1824
+ .tap-target-wave::before, .tap-target-wave::after {
1825
+ content: "";
1826
+ display: block;
1827
+ position: absolute;
1828
+ width: 100%;
1829
+ height: 100%;
1830
+ border-radius: 50%;
1831
+ background-color: #ffffff;
1832
+ }
1833
+ .tap-target-wave::before {
1834
+ transform: scale(0);
1835
+ transition: transform 0.3s;
1836
+ }
1837
+ .tap-target-wave::after {
1838
+ visibility: hidden;
1839
+ transition: opacity 0.3s, transform 0.3s, visibility 0s;
1840
+ z-index: -1;
1841
+ }
1842
+
1843
+ .tap-target-origin {
1844
+ top: 50%;
1845
+ left: 50%;
1846
+ transform: translate(-50%, -50%);
1847
+ z-index: 10002;
1848
+ position: absolute !important;
1849
+ }
1850
+ .tap-target-origin:not(.btn), .tap-target-origin:not(.btn):hover {
1851
+ background: none;
1852
+ }
1853
+
1854
+ @media only screen and (max-width: 600px) {
1855
+ .tap-target, .tap-target-wrapper {
1856
+ width: 600px;
1857
+ height: 600px;
1858
+ }
1859
+ }
1860
+ /***************
1861
+ Nav List
1862
+ ***************/
1863
+ .table-of-contents.fixed {
1864
+ position: fixed;
1865
+ }
1866
+ .table-of-contents li {
1867
+ padding: 2px 0;
1868
+ }
1869
+ .table-of-contents a {
1870
+ display: inline-block;
1871
+ font-weight: 300;
1872
+ color: #757575;
1873
+ padding-left: 16px;
1874
+ height: 1.5rem;
1875
+ line-height: 1.5rem;
1876
+ letter-spacing: 0.4;
1877
+ display: inline-block;
1878
+ }
1879
+ .table-of-contents a:hover {
1880
+ color: #a8a8a8;
1881
+ padding-left: 15px;
1882
+ border-left: 1px solid #ee6e73;
1883
+ }
1884
+ .table-of-contents a.active {
1885
+ font-weight: 500;
1886
+ padding-left: 14px;
1887
+ border-left: 2px solid #ee6e73;
1888
+ }