sample-piral 0.13.8 → 0.14.0-beta.3156

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.
@@ -1,675 +0,0 @@
1
- html, body, #app, .app-container {
2
- width: 100%;
3
- min-height: 100%;
4
- background: white;
5
- }
6
-
7
- html, body {
8
- height: 100%;
9
- margin: 0;
10
- padding: 0;
11
- font-family: "Roboto", sans-serif;
12
- }
13
-
14
- a {
15
- text-decoration: none;
16
- color: #56aa1c;
17
- }
18
- a:hover {
19
- color: #407e15;
20
- }
21
-
22
- .pi-modal {
23
- display: none;
24
- position: fixed;
25
- z-index: 3;
26
- left: 0;
27
- top: 0;
28
- width: 100%;
29
- height: 100%;
30
- overflow: auto;
31
- background: rgba(0, 0, 0, 0.4);
32
- animation: fade-in 0.4s;
33
- }
34
- .pi-modal .pi-modal-dialog {
35
- position: fixed;
36
- left: 0;
37
- right: 0;
38
- bottom: 0;
39
- top: 0;
40
- max-width: 90%;
41
- max-height: 90%;
42
- margin: auto;
43
- background: #fefefe;
44
- animation: fade-in 0.4s;
45
- }
46
-
47
- body.pi-modal-open {
48
- height: 100vh;
49
- overflow-y: hidden;
50
- padding-right: 15px;
51
- position: fixed;
52
- }
53
- body.pi-modal-open .pi-modal {
54
- display: block;
55
- }
56
-
57
- .text-right {
58
- text-align: right;
59
- }
60
-
61
- .language-picker {
62
- position: relative;
63
- margin: 4px 8px 0 0;
64
- }
65
- .language-picker .current {
66
- cursor: pointer;
67
- }
68
- .language-picker ul {
69
- display: none;
70
- background: #f5f5f6;
71
- border: none;
72
- margin: 0;
73
- padding: 0;
74
- overflow: hidden;
75
- border-radius: 3px 0 3px 3px;
76
- background-clip: padding-box;
77
- margin-bottom: 5px;
78
- position: absolute;
79
- top: 100%;
80
- right: 0;
81
- }
82
- .language-picker ul li {
83
- cursor: pointer;
84
- border-bottom: 1px solid #ebebeb;
85
- padding: 10px 20px;
86
- margin: 0;
87
- outline: 0;
88
- color: #7d8086;
89
- display: flex;
90
- flex-direction: row;
91
- align-items: center;
92
- }
93
- .language-picker ul li span {
94
- padding-left: 8px;
95
- }
96
- .language-picker ul li:hover {
97
- background: rgba(235, 235, 235, 0.9);
98
- color: #737881;
99
- }
100
- .language-picker ul.open {
101
- display: block;
102
- }
103
-
104
- .language-icon {
105
- height: 16px;
106
- width: 16px;
107
- }
108
-
109
- @keyframes fade-in {
110
- from {
111
- opacity: 0;
112
- }
113
- to {
114
- opacity: 1;
115
- }
116
- }
117
- .app-container {
118
- flex: 1;
119
- position: relative;
120
- }
121
-
122
- .pi-notifications {
123
- position: fixed;
124
- display: flex;
125
- align-items: flex-end;
126
- flex-direction: column;
127
- right: 2em;
128
- bottom: 2em;
129
- }
130
- .pi-notifications .pi-item {
131
- box-sizing: border-box;
132
- display: flex;
133
- flex-direction: row;
134
- align-items: center;
135
- text-align: left;
136
- padding: 0.8em;
137
- background-color: white;
138
- max-width: 500px;
139
- position: relative;
140
- box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
141
- }
142
- .pi-notifications .pi-item + .pi-notifications .pi-item {
143
- margin-top: 1em;
144
- }
145
- .pi-notifications .pi-item.success:before {
146
- background-color: #2BDE3F;
147
- }
148
- .pi-notifications .pi-item.error:before {
149
- background-color: #e7431a;
150
- }
151
- .pi-notifications .pi-item.info:before {
152
- background-color: #1D72F3;
153
- }
154
- .pi-notifications .pi-item.warning:before {
155
- background-color: #FFC007;
156
- }
157
- .pi-notifications .pi-item:before {
158
- content: "";
159
- position: absolute;
160
- top: 0;
161
- left: 0;
162
- width: 100%;
163
- height: 2px;
164
- }
165
- .pi-notifications .pi-item .pi-details {
166
- flex: 1;
167
- }
168
- .pi-notifications .pi-item .pi-details .pi-title {
169
- color: #3e3e3e;
170
- font-weight: 700;
171
- margin-top: 0;
172
- margin-bottom: 8px;
173
- }
174
- .pi-notifications .pi-item .pi-details .pi-description {
175
- font-size: 14px;
176
- margin-top: 0;
177
- margin-bottom: 0;
178
- color: #878787;
179
- }
180
- .pi-notifications .pi-item .pi-close {
181
- width: 14px;
182
- cursor: pointer;
183
- height: 14px;
184
- fill: #878787;
185
- margin-left: 1.2em;
186
- background: url("/close.bb892b1b.svg") no-repeat center center;
187
- }
188
- @media screen and (max-width: 650px) {
189
- .pi-notifications {
190
- right: 0;
191
- left: 0;
192
- bottom: 0;
193
- }
194
- .pi-notifications .pi-item {
195
- max-width: 100%;
196
- width: 100%;
197
- }
198
- }
199
-
200
- .app-container, #app {
201
- display: flex;
202
- flex-direction: column;
203
- }
204
-
205
- .app-content {
206
- display: flex;
207
- flex-direction: column;
208
- flex-grow: 1;
209
- padding: 0 2em;
210
- }
211
-
212
- .app-title {
213
- display: flex;
214
- position: relative;
215
- align-items: center;
216
- }
217
-
218
- .app-header {
219
- display: flex;
220
- flex-direction: row;
221
- padding: 0 2em;
222
- margin-bottom: 1em;
223
- align-items: center;
224
- justify-content: space-between;
225
- background: #abcdef;
226
- position: relative;
227
- z-index: 2;
228
- }
229
- .app-header h1 {
230
- white-space: nowrap;
231
- font-size: 2rem;
232
- }
233
- @media screen and (max-width: 650px) {
234
- .app-header {
235
- padding: 0 1em;
236
- }
237
- .app-header h1 {
238
- display: none;
239
- }
240
- }
241
-
242
- .pi-center {
243
- display: flex;
244
- align-items: center;
245
- justify-content: center;
246
- flex-grow: 1;
247
- }
248
-
249
- .app-footer {
250
- font-size: 0.8em;
251
- padding: 1em 0;
252
- background: #d6e7f7;
253
- display: flex;
254
- flex-direction: row;
255
- }
256
- .app-footer .pi-menu {
257
- margin: 0 auto;
258
- max-width: 1000px;
259
- column-width: 300px;
260
- display: block;
261
- }
262
- .app-footer .pi-menu .pi-item {
263
- display: block;
264
- padding: 1em 2em;
265
- }
266
-
267
- .app-menu {
268
- position: fixed;
269
- top: 0;
270
- bottom: 0;
271
- left: 0;
272
- padding: 0;
273
- margin: 0;
274
- width: 300px;
275
- max-width: 100%;
276
- background: #ebf3fb;
277
- transform: translateX(-100%);
278
- transition: all 0.1s ease;
279
- padding-top: 85px;
280
- z-index: 1;
281
- }
282
- .app-menu.is-open {
283
- transform: none;
284
- box-shadow: 30px 0px 30px -30px rgba(0, 0, 0, 0.2);
285
- }
286
- .app-menu .app-menu-content {
287
- overflow-y: auto;
288
- height: 100%;
289
- }
290
- .app-menu .pi-menu {
291
- display: flex;
292
- flex-direction: column;
293
- list-style: none;
294
- }
295
- .app-menu .pi-menu > .pi-item {
296
- flex: 1;
297
- margin: 1px 0;
298
- }
299
- .app-menu .pi-menu > .pi-item > a {
300
- display: block;
301
- border-left: 5px solid #abcdef;
302
- padding: 1em;
303
- }
304
- .app-menu .pi-menu > .pi-item > a:hover {
305
- border-left-color: #559adf;
306
- }
307
-
308
- .pi-spinner {
309
- position: relative;
310
- width: 50px;
311
- height: 50px;
312
- font-size: 0;
313
- }
314
- .pi-spinner:before, .pi-spinner:after {
315
- content: "";
316
- display: block;
317
- position: absolute;
318
- border-width: 4px;
319
- border-style: solid;
320
- border-radius: 50%;
321
- }
322
- @keyframes rotate-animation {
323
- 0% {
324
- transform: rotate(0deg);
325
- }
326
- 100% {
327
- transform: rotate(360deg);
328
- }
329
- }
330
- @keyframes anti-rotate-animation {
331
- 0% {
332
- transform: rotate(0deg);
333
- }
334
- 100% {
335
- transform: rotate(-360deg);
336
- }
337
- }
338
- .pi-spinner:before {
339
- width: 42px;
340
- height: 42px;
341
- border-bottom-color: #56aa1c;
342
- border-right-color: #56aa1c;
343
- border-top-color: rgba(86, 170, 28, 0);
344
- border-left-color: rgba(86, 170, 28, 0);
345
- top: 0;
346
- left: 0;
347
- animation: rotate-animation 1s linear 0s infinite;
348
- }
349
- .pi-spinner:after {
350
- width: 29.4px;
351
- height: 29.4px;
352
- border-bottom-color: #56aa1c;
353
- border-right-color: #56aa1c;
354
- border-top-color: rgba(86, 170, 28, 0);
355
- border-left-color: rgba(86, 170, 28, 0);
356
- top: 6.3px;
357
- left: 6.3px;
358
- animation: anti-rotate-animation 0.85s linear 0s infinite;
359
- }
360
-
361
- .pi-content {
362
- flex: 1;
363
- display: flex;
364
- flex-direction: column;
365
- }
366
-
367
- .pi-dashboard {
368
- flex: 1;
369
- position: relative;
370
- display: grid;
371
- grid-template-columns: repeat(auto-fit, 70px);
372
- grid-template-rows: repeat(auto-fit, 70px);
373
- grid-gap: 10px;
374
- overflow: visible;
375
- }
376
- .pi-dashboard .pi-tile {
377
- display: flex;
378
- position: relative;
379
- }
380
- .pi-dashboard .pi-tile.small {
381
- grid-column: span 1;
382
- grid-row: span 1;
383
- width: 70px;
384
- height: 70px;
385
- }
386
- .pi-dashboard .pi-tile.medium {
387
- grid-column: span 2;
388
- grid-row: span 2;
389
- width: 150px;
390
- height: 150px;
391
- }
392
- .pi-dashboard .pi-tile.wide {
393
- grid-column: span 4;
394
- grid-row: span 2;
395
- width: 310px;
396
- height: 150px;
397
- }
398
- .pi-dashboard .pi-tile.large {
399
- grid-column: span 4;
400
- grid-row: span 4;
401
- width: 310px;
402
- height: 310px;
403
- }
404
- .pi-dashboard .pi-tile:hover {
405
- outline: rgba(29, 29, 29, 0.1) solid 4px;
406
- }
407
-
408
- .pi-search {
409
- position: relative;
410
- flex: 1;
411
- display: flex;
412
- justify-content: center;
413
- }
414
- .pi-search input[type=search] {
415
- font-size: 1em;
416
- border: 1px solid transparent;
417
- background-color: #f1f1f1;
418
- padding: 10px;
419
- font-size: 16px;
420
- max-width: 80%;
421
- width: 250px;
422
- box-sizing: border-box;
423
- transition: width ease 0.1s;
424
- }
425
- @media screen and (max-width: 450px) {
426
- .pi-search input[type=search] {
427
- width: 100px;
428
- }
429
- }
430
- .pi-search:focus-within input[type=search] {
431
- width: 90%;
432
- max-width: 90%;
433
- }
434
- .pi-search:focus-within input[type=search] + .pi-details:not(:empty) {
435
- display: block;
436
- opacity: 1;
437
- }
438
- .pi-search .pi-details {
439
- display: none;
440
- opacity: 0;
441
- position: absolute;
442
- z-index: 2;
443
- top: 100%;
444
- width: 90%;
445
- box-sizing: border-box;
446
- background: #f0f0f0;
447
- padding: 1px;
448
- transition: all 0.1s 0.1s ease;
449
- }
450
- .pi-search .pi-item {
451
- display: block;
452
- padding: 10px;
453
- cursor: pointer;
454
- background-color: white;
455
- border-bottom: 1px solid #d4d4d4;
456
- }
457
- .pi-search .pi-item:hover {
458
- background-color: #e9e9e9;
459
- }
460
- .pi-search .pi-center {
461
- padding: 30px;
462
- background-color: white;
463
- }
464
-
465
- .form-row {
466
- margin: 1em;
467
- }
468
- .form-row label {
469
- display: block;
470
- margin-bottom: 0.2em;
471
- }
472
- .form-row input {
473
- padding: 0.3rem;
474
- font-size: 1rem;
475
- }
476
- .form-row button {
477
- padding: 0.5em 1em;
478
- border: 1px solid black;
479
- font-weight: bold;
480
- border-radius: 4px;
481
- cursor: pointer;
482
- }
483
- .form-row button:disabled {
484
- border: 1px solid #ccc;
485
- color: #ccc;
486
- cursor: default;
487
- }
488
-
489
- .pi-error > img {
490
- width: 600px;
491
- max-width: 100%;
492
- margin: 1em 0;
493
- }
494
- .pi-error .pi-title {
495
- color: #56aa1c;
496
- display: block;
497
- font-size: 1.5em;
498
- }
499
- .pi-error .pi-description {
500
- display: block;
501
- margin: 0.5em 0;
502
- }
503
- .pi-error .pi-details {
504
- display: block;
505
- margin: 0.5em 0;
506
- color: #3e3e3e;
507
- font-size: 0.8em;
508
- }
509
-
510
- .app-user {
511
- position: relative;
512
- }
513
- .app-user .app-user-avatar {
514
- display: flex;
515
- align-items: center;
516
- white-space: nowrap;
517
- cursor: pointer;
518
- }
519
- .app-user .app-user-avatar img {
520
- position: relative;
521
- overflow: hidden;
522
- width: 32px;
523
- min-width: 32px;
524
- height: 32px;
525
- border-radius: 50% !important;
526
- vertical-align: middle;
527
- border-style: none;
528
- box-sizing: border-box;
529
- line-height: 1;
530
- margin-right: 0.5em;
531
- }
532
- .app-user .app-user-avatar::after {
533
- display: inline-block;
534
- box-sizing: border-box;
535
- height: 8px;
536
- width: 8px;
537
- border-style: solid;
538
- border-color: black;
539
- border-width: 0px 2px 2px 0px;
540
- position: relative;
541
- transform: rotate(45deg);
542
- transition: opacity 150ms ease-in-out;
543
- content: "";
544
- }
545
- .app-user .app-user-details {
546
- display: none;
547
- list-style: none;
548
- position: absolute;
549
- background: white;
550
- padding: 0;
551
- right: 0;
552
- border: 1px solid #ececec;
553
- border-radius: 3px;
554
- top: 40px;
555
- cursor: default;
556
- }
557
- .app-user .app-user-details li {
558
- display: block;
559
- padding: 10px;
560
- max-width: 300px;
561
- text-overflow: ellipsis;
562
- overflow: hidden;
563
- white-space: nowrap;
564
- text-align: right;
565
- }
566
- .app-user .app-user-details li > a {
567
- display: block;
568
- }
569
- .app-user .app-user-details li.sep {
570
- border-bottom: 1px solid #ccc;
571
- padding: 0;
572
- }
573
- .app-user .app-user-details li .user-name {
574
- font-weight: bold;
575
- color: #666;
576
- display: block;
577
- font-size: 0.6em;
578
- }
579
- .app-user .app-user-details:before, .app-user .app-user-details:after {
580
- content: "";
581
- display: block;
582
- position: absolute;
583
- bottom: 100%;
584
- width: 0;
585
- height: 0;
586
- }
587
- .app-user .app-user-details:before {
588
- right: 27px;
589
- border: 6px solid transparent;
590
- border-bottom-color: #ececec;
591
- }
592
- .app-user .app-user-details:after {
593
- right: 28px;
594
- border: 5px solid transparent;
595
- border-bottom-color: #fff;
596
- }
597
- .app-user.is-open img {
598
- opacity: 0.8;
599
- }
600
- .app-user.is-open .app-user-details {
601
- display: block;
602
- }
603
- .app-user.is-open::after {
604
- opacity: 0.2;
605
- }
606
-
607
- .hamburger {
608
- padding: 15px 0;
609
- display: inline-block;
610
- cursor: pointer;
611
- transition-property: opacity, filter;
612
- transition-duration: 0.15s;
613
- transition-timing-function: linear;
614
- font: inherit;
615
- color: inherit;
616
- text-transform: none;
617
- background-color: transparent;
618
- border: 0;
619
- margin: 0;
620
- overflow: visible;
621
- transform: scale(0.6);
622
- }
623
- .hamburger:hover {
624
- opacity: 0.7;
625
- }
626
- .hamburger.is-active:hover {
627
- opacity: 0.7;
628
- }
629
- .hamburger.is-active .hamburger-inner,
630
- .hamburger.is-active .hamburger-inner::before,
631
- .hamburger.is-active .hamburger-inner::after {
632
- background-color: #000;
633
- }
634
-
635
- .hamburger-box {
636
- width: 40px;
637
- height: 24px;
638
- display: inline-block;
639
- position: relative;
640
- }
641
-
642
- .hamburger-inner {
643
- display: block;
644
- top: 50%;
645
- margin-top: -2px;
646
- }
647
- .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
648
- width: 40px;
649
- height: 4px;
650
- background-color: #000;
651
- border-radius: 4px;
652
- position: absolute;
653
- transition-property: transform;
654
- transition-duration: 0.15s;
655
- transition-timing-function: ease;
656
- }
657
- .hamburger-inner::before, .hamburger-inner::after {
658
- content: "";
659
- display: block;
660
- }
661
- .hamburger-inner::before {
662
- top: -10px;
663
- }
664
- .hamburger-inner::after {
665
- bottom: -10px;
666
- }
667
-
668
- .hamburger--arrow.is-active .hamburger-inner::before {
669
- transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
670
- }
671
- .hamburger--arrow.is-active .hamburger-inner::after {
672
- transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
673
- }
674
-
675
- /*# sourceMappingURL=/styles.1280bebc.css.map */
@@ -1 +0,0 @@
1
- {"version":3,"sources":["styles/_layout.scss","styles/index.scss","styles/_burger.scss"],"names":[],"mappings":"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","file":"styles.1280bebc.css","sourceRoot":"../../../../src/samples/sample-piral/src","sourcesContent":["html, body, #app, .app-container {\n width: 100%;\n min-height: 100%;\n background: $bg-color;\n}\n\nhtml, body {\n height: 100%;\n margin: 0;\n padding: 0;\n font-family: 'Roboto', sans-serif;\n}\n\na {\n text-decoration: none;\n color: $basic-dark-color;\n\n &:hover {\n color: darken($color: $basic-dark-color, $amount: 10%)\n }\n}\n\n.pi-modal {\n display: none;\n position: fixed;\n z-index: 3;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n overflow: auto;\n background: rgba(0, 0, 0, 0.4);\n animation: fade-in 0.4s;\n\n .pi-modal-dialog {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n max-width: 90%;\n max-height: 90%;\n margin: auto;\n background: #fefefe;\n animation: fade-in 0.4s;\n }\n}\n\nbody.pi-modal-open {\n height: 100vh;\n overflow-y: hidden;\n padding-right: 15px;\n position: fixed;\n\n .pi-modal {\n display: block;\n }\n}\n\n.text-right {\n text-align: right;\n}\n\n.language-picker {\n position: relative;\n margin: 4px 8px 0 0;\n\n .current {\n cursor: pointer;\n }\n\n ul {\n display: none;\n background: #f5f5f6;\n border: none;\n margin: 0;\n padding: 0;\n overflow: hidden;\n border-radius: 3px 0 3px 3px;\n background-clip: padding-box;\n margin-bottom: 5px;\n position: absolute;\n top: 100%;\n right: 0;\n\n li {\n cursor: pointer;\n border-bottom: 1px solid #ebebeb;\n padding: 10px 20px;\n margin: 0;\n outline: 0;\n color: #7d8086;\n display: flex;\n flex-direction: row;\n align-items: center;\n\n span {\n padding-left: 8px;\n }\n\n &:hover {\n background: rgba(235, 235, 235, 0.9);\n color: #737881;\n }\n }\n\n &.open {\n display: block;\n }\n }\n}\n\n.language-icon {\n height: 16px;\n width: 16px;\n}\n\n@keyframes fade-in {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n\n.app-container {\n flex: 1;\n position: relative;\n}\n\n.pi-notifications {\n position: fixed;\n display: flex;\n align-items: flex-end;\n flex-direction: column;\n right: 2em;\n bottom: 2em;\n\n .pi-item {\n box-sizing: border-box;\n display: flex;\n flex-direction: row;\n align-items: center;\n text-align: left;\n padding: 0.8em;\n background-color: $bg-color;\n max-width: 500px;\n position: relative;\n box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.2);\n\n &+& {\n margin-top: 1em;\n }\n\n &.success:before {\n background-color: #2BDE3F;\n }\n\n &.error:before {\n background-color: #e7431a;\n }\n\n &.info:before {\n background-color: #1D72F3;\n }\n\n &.warning:before {\n background-color: #FFC007;\n }\n\n &:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 2px;\n }\n\n .pi-details {\n flex: 1;\n\n .pi-title {\n color: #3e3e3e;\n font-weight: 700;\n margin-top: 0;\n margin-bottom: 8px;\n }\n\n .pi-description {\n font-size: 14px;\n margin-top: 0;\n margin-bottom: 0;\n color: #878787;\n }\n }\n\n .pi-close {\n width: 14px;\n cursor: pointer;\n height: 14px;\n fill: #878787;\n margin-left: 1.2em;\n background: url('../images/close.svg') no-repeat center center;\n }\n }\n\n @media screen and (max-width: $breakpoint-tablet) {\n right: 0;\n left: 0;\n bottom: 0;\n\n .pi-item {\n max-width: 100%;\n width: 100%;\n }\n }\n}\n\n.app-container, #app {\n display: flex;\n flex-direction: column;\n}\n\n.app-content {\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 2em;\n}\n\n.app-title {\n display: flex;\n position: relative;\n align-items: center;\n}\n\n.app-header {\n display: flex;\n flex-direction: row;\n padding: 0 2em;\n margin-bottom: 1em;\n align-items: center;\n justify-content: space-between;\n background: $header-color;\n position: relative;\n z-index: 2;\n\n h1 {\n white-space: nowrap;\n font-size: 2rem;\n }\n\n @media screen and (max-width: $breakpoint-tablet) {\n padding: 0 1em;\n\n h1 {\n display: none;\n }\n }\n}\n\n.pi-center {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-grow: 1;\n}\n\n.app-footer {\n font-size: 0.8em;\n padding: 1em 0;\n background: $footer-color;\n display: flex;\n flex-direction: row;\n\n .pi-menu {\n margin: 0 auto;\n max-width: 1000px;\n column-width: 300px;\n display: block;\n\n .pi-item {\n display: block;\n padding: 1em 2em;\n }\n }\n}\n\n.app-menu {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n padding: 0;\n margin: 0;\n width: 300px;\n max-width: 100%;\n background: lighten($header-color, 15%);\n transform: translateX(-100%);\n transition: all 0.1s ease;\n padding-top: 85px;\n z-index: 1;\n\n &.is-open {\n transform: none;\n box-shadow: $menu-shadow-size 0px $menu-shadow-size (-$menu-shadow-size) rgba(0, 0, 0, 0.2);\n }\n\n .app-menu-content {\n overflow-y: auto;\n height: 100%;\n }\n\n .pi-menu {\n display: flex;\n flex-direction: column;\n list-style: none;\n\n > .pi-item {\n flex: 1;\n margin: 1px 0;\n\n > a {\n display: block;\n border-left: 5px solid $header-color;\n padding: 1em;\n\n &:hover {\n border-left-color: $menu-color;\n }\n }\n }\n }\n}\n\n.pi-spinner {\n position: relative;\n width: $basic-spinner-dimensions;\n height: $basic-spinner-dimensions;\n font-size: 0;\n\n &:before,\n &:after {\n content: \"\";\n display: block;\n position: absolute;\n border-width: 4px;\n border-style: solid;\n border-radius: 50%;\n }\n\n @keyframes rotate-animation {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n }\n\n @keyframes anti-rotate-animation {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(-360deg);\n }\n }\n\n &:before {\n width: $main-spinner-dimensions;\n height: $main-spinner-dimensions;\n border-bottom-color: $basic-dark-color;\n border-right-color: $basic-dark-color;\n border-top-color: rgba($basic-dark-color, 0);\n border-left-color: rgba($basic-dark-color, 0);\n top: 0;\n left: 0;\n animation: rotate-animation 1s linear 0s infinite;\n }\n\n &:after {\n width: $small-spinner-dimensions;\n height: $small-spinner-dimensions;\n border-bottom-color: $basic-dark-color;\n border-right-color: $basic-dark-color;\n border-top-color: rgba($basic-dark-color, 0);\n border-left-color: rgba($basic-dark-color, 0);\n top: ($main-spinner-dimensions - $small-spinner-dimensions) / 2;\n left: ($main-spinner-dimensions - $small-spinner-dimensions) / 2;\n animation: anti-rotate-animation 0.85s linear 0s infinite;\n }\n}\n\n$tile-height: 70px;\n$tile-width: 70px;\n$tile-gap: 10px;\n\n.pi-content {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.pi-dashboard {\n flex: 1;\n position: relative;\n display: grid;\n grid-template-columns: repeat(auto-fit, $tile-width);\n grid-template-rows: repeat(auto-fit, $tile-height);\n grid-gap: $tile-gap;\n overflow: visible;\n\n .pi-tile {\n display: flex;\n position: relative;\n\n &.small {\n grid-column: span 1;\n grid-row: span 1;\n width: $tile-width;\n height: $tile-height;\n }\n\n &.medium {\n grid-column: span 2;\n grid-row: span 2;\n width: 2 * $tile-width + 1 * $tile-gap;\n height: 2 * $tile-height + 1 * $tile-gap;\n }\n\n &.wide {\n grid-column: span 4;\n grid-row: span 2;\n width: 4 * $tile-width + 3 * $tile-gap;\n height: 2 * $tile-height + 1 * $tile-gap;\n }\n\n &.large {\n grid-column: span 4;\n grid-row: span 4;\n width: 4 * $tile-width + 3 * $tile-gap;\n height: 4 * $tile-height + 3 * $tile-gap;\n }\n\n &:hover {\n outline: rgba(29, 29, 29, 0.1) solid 4px;\n }\n }\n}\n\n.pi-search {\n position: relative;\n flex: 1;\n display: flex;\n justify-content: center;\n\n input[type=search] {\n font-size: 1em;\n border: 1px solid transparent;\n background-color: #f1f1f1;\n padding: 10px;\n font-size: 16px;\n max-width: 80%;\n width: 250px;\n box-sizing: border-box;\n transition: width ease 0.1s;\n\n @media screen and (max-width: $breakpoint-mobile) {\n width: 100px;\n }\n }\n\n &:focus-within input[type=search] {\n width: 90%;\n max-width: 90%;\n\n & + .pi-details:not(:empty) {\n display: block;\n opacity: 1;\n }\n }\n\n .pi-details {\n display: none;\n opacity: 0;\n position: absolute;\n z-index: 2;\n top: 100%;\n width: 90%;\n box-sizing: border-box;\n background: #f0f0f0;\n padding: 1px;\n transition: all 0.1s 0.1s ease;\n }\n\n .pi-item {\n display: block;\n padding: 10px;\n cursor: pointer;\n background-color: white;\n border-bottom: 1px solid #d4d4d4;\n }\n\n .pi-item:hover {\n background-color: #e9e9e9;\n }\n\n .pi-center {\n padding: 30px;\n background-color: white;\n }\n}\n\n.form-row {\n margin: 1em;\n\n label {\n display: block;\n margin-bottom: 0.2em;\n }\n\n input {\n padding: 0.3rem;\n font-size: 1rem;\n }\n\n button {\n padding: 0.5em 1em;\n border: 1px solid black;\n font-weight: bold;\n border-radius: 4px;\n cursor: pointer;\n }\n\n button:disabled {\n border: 1px solid #ccc;\n color: #ccc;\n cursor: default;\n }\n}\n\n.pi-error {\n > img {\n width: 600px;\n max-width: 100%;\n margin: 1em 0;\n }\n\n .pi-title {\n color: $basic-dark-color;\n display: block;\n font-size: 1.5em;\n }\n\n .pi-description {\n display: block;\n margin: 0.5em 0;\n }\n\n .pi-details {\n display: block;\n margin: 0.5em 0;\n color: #3e3e3e;\n font-size: 0.8em;\n }\n}\n\n.app-user {\n position: relative;\n\n .app-user-avatar {\n display: flex;\n align-items: center;\n white-space: nowrap;\n cursor: pointer;\n\n img {\n position: relative;\n overflow: hidden;\n width: 32px;\n min-width: 32px;\n height: 32px;\n border-radius: 50% !important;\n vertical-align: middle;\n border-style: none;\n box-sizing: border-box;\n line-height: 1;\n margin-right: 0.5em;\n }\n\n &::after {\n display: inline-block;\n box-sizing: border-box;\n height: 8px;\n width: 8px;\n border-style: solid;\n border-color: black;\n border-width: 0px 2px 2px 0px;\n position: relative;\n transform: rotate(45deg);\n transition: opacity 150ms ease-in-out;\n content: '';\n }\n }\n\n .app-user-details {\n display: none;\n list-style: none;\n position: absolute;\n background: white;\n padding: 0;\n right: 0;\n border: 1px solid #ececec;\n border-radius: 3px;\n top: 40px;\n cursor: default;\n\n li {\n display: block;\n padding: 10px;\n max-width: 300px;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n text-align: right;\n\n & > a {\n display: block;\n }\n\n &.sep {\n border-bottom: 1px solid #ccc;\n padding: 0;\n }\n\n .user-name {\n font-weight: bold;\n color: #666;\n display: block;\n font-size: 0.6em;\n }\n }\n\n &:before, &:after {\n content: '';\n display: block;\n position: absolute;\n bottom: 100%;\n width: 0;\n height: 0;\n }\n\n &:before {\n right: 27px;\n border: 6px solid transparent;\n border-bottom-color: #ececec;\n }\n\n &:after {\n right: 28px;\n border: 5px solid transparent;\n border-bottom-color: #fff;\n }\n }\n\n &.is-open {\n img {\n opacity: 0.8;\n }\n\n .app-user-details {\n display: block;\n }\n\n &::after {\n opacity: 0.2;\n }\n }\n}\n","$bg-color: white;\n$basic-dark-color: #56aa1c;\n$header-color: #abcdef;\n$footer-color: lighten($header-color, 10%);\n$menu-color: darken($header-color, 20%);\n$border-width: 4px;\n$basic-spinner-dimensions: 50px;\n$main-spinner-dimensions: $basic-spinner-dimensions - $border-width * 2;\n$small-spinner-dimensions: $main-spinner-dimensions * 0.7;\n$menu-shadow-size: 30px;\n\n$hamburger-padding: 15px 0 !default;\n$hamburger-layer-width: 40px !default;\n$hamburger-layer-height: 4px !default;\n$hamburger-layer-spacing: 6px !default;\n$hamburger-layer-color: #000 !default;\n$hamburger-layer-border-radius: 4px !default;\n$hamburger-hover-opacity: 0.7 !default;\n$hamburger-active-layer-color: $hamburger-layer-color !default;\n$hamburger-active-hover-opacity: $hamburger-hover-opacity !default;\n$hamburger-hover-use-filter: false !default;\n$hamburger-hover-filter: opacity(50%) !default;\n$hamburger-active-hover-filter: $hamburger-hover-filter !default;\n\n$breakpoint-mobile: 450px;\n$breakpoint-tablet: 650px;\n\n@import './layout';\n@import './burger';\n",".hamburger {\n padding: $hamburger-padding;\n display: inline-block;\n cursor: pointer;\n\n transition-property: opacity, filter;\n transition-duration: 0.15s;\n transition-timing-function: linear;\n\n // Normalize (<button>)\n font: inherit;\n color: inherit;\n text-transform: none;\n background-color: transparent;\n border: 0;\n margin: 0;\n overflow: visible;\n transform: scale(0.6);\n\n &:hover {\n @if $hamburger-hover-use-filter == true {\n filter: $hamburger-hover-filter;\n }\n @else {\n opacity: $hamburger-hover-opacity;\n }\n }\n\n &.is-active {\n &:hover {\n @if $hamburger-hover-use-filter == true {\n filter: $hamburger-active-hover-filter;\n }\n @else {\n opacity: $hamburger-active-hover-opacity;\n }\n }\n\n .hamburger-inner,\n .hamburger-inner::before,\n .hamburger-inner::after {\n background-color: $hamburger-active-layer-color;\n }\n }\n}\n\n.hamburger-box {\n width: $hamburger-layer-width;\n height: $hamburger-layer-height * 3 + $hamburger-layer-spacing * 2;\n display: inline-block;\n position: relative;\n}\n\n.hamburger-inner {\n display: block;\n top: 50%;\n margin-top: $hamburger-layer-height / -2;\n\n &,\n &::before,\n &::after {\n width: $hamburger-layer-width;\n height: $hamburger-layer-height;\n background-color: $hamburger-layer-color;\n border-radius: $hamburger-layer-border-radius;\n position: absolute;\n transition-property: transform;\n transition-duration: 0.15s;\n transition-timing-function: ease;\n }\n\n &::before,\n &::after {\n content: \"\";\n display: block;\n }\n\n &::before {\n top: ($hamburger-layer-spacing + $hamburger-layer-height) * -1;\n }\n\n &::after {\n bottom: ($hamburger-layer-spacing + $hamburger-layer-height) * -1;\n }\n}\n\n.hamburger--arrow.is-active {\n .hamburger-inner {\n &::before {\n transform: translate3d($hamburger-layer-width * -0.2, 0, 0) rotate(-45deg) scale(0.7, 1);\n }\n\n &::after {\n transform: translate3d($hamburger-layer-width * -0.2, 0, 0) rotate(45deg) scale(0.7, 1);\n }\n }\n}\n"]}