fre-e_coin_master_spins_genera-tor_2023__30 2.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fre-e_coin_master_spins_genera-tor_2023__30 might be problematic. Click here for more details.

@@ -0,0 +1,838 @@
1
+ @font-face {
2
+ font-family: 'plex-sans';
3
+ font-style: normal;
4
+ font-weight: 700;
5
+ src: url('font/plex-sans-bold.woff2') format('woff2'), url('font/plex-sans-bold.woff') format('woff');
6
+ }
7
+
8
+ @font-face {
9
+ font-family: 'plex-sans';
10
+ font-style: normal;
11
+ font-weight: 400;
12
+ src: url('font/plex-sans-regular.woff2') format('woff2'), url('font/plex-sans-regular.woff') format('woff');
13
+ }
14
+
15
+ :root {
16
+ --app_border_width: 2px;
17
+ --app_border_color: rgb(42, 54, 71);
18
+ --app_background: rgb(26, 36, 50);
19
+ --app_foreground: rgb(255, 255, 255);
20
+ }
21
+
22
+ * {
23
+ font-family: 'plex-sans';
24
+ box-sizing: border-box;
25
+ outline: none;
26
+ }
27
+ html {
28
+ display: flex;
29
+ flex-flow: column nowrap;
30
+ justify-content: center;
31
+ align-items: center;
32
+ border: none;
33
+ width: 100%;
34
+ }
35
+ body {
36
+ /* width: 324px; */
37
+ width: 340px;
38
+ /* padding: var(--app_border_width); */
39
+ /* border: 1px solid rgba(255, 255, 255, 0.5); */
40
+ }
41
+ html, body {
42
+ background: var(--app_background);
43
+ color: var(--app_foreground);
44
+ line-height: 1.15;
45
+ text-size-adjust: 100%;
46
+ padding: 0;
47
+ margin: 0;
48
+ }
49
+ div {
50
+ display: block;
51
+ }
52
+ a {
53
+ text-decoration: none;
54
+ }
55
+ button, input, optgroup, select, textarea {
56
+ font-family: inherit;
57
+ font-size: 100%;
58
+ line-height: 1.15;
59
+ margin: 0px;
60
+ }
61
+ button, select {
62
+ text-transform: none;
63
+ }
64
+ button, input {
65
+ overflow: visible;
66
+ }
67
+ input {
68
+ writing-mode: horizontal-tb !important;
69
+ font-style: ;
70
+ font-variant-ligatures: ;
71
+ font-variant-caps: ;
72
+ font-variant-numeric: ;
73
+ font-variant-east-asian: ;
74
+ font-weight: ;
75
+ font-stretch: ;
76
+ font-size: ;
77
+ font-family: ;
78
+ text-rendering: auto;
79
+ color: fieldtext;
80
+ letter-spacing: normal;
81
+ word-spacing: normal;
82
+ line-height: normal;
83
+ text-transform: none;
84
+ text-indent: 0px;
85
+ text-shadow: none;
86
+ display: inline-block;
87
+ text-align: start;
88
+ appearance: auto;
89
+ -webkit-rtl-ordering: logical;
90
+ cursor: text;
91
+ background-color: field;
92
+ margin: 0em;
93
+ padding: 1px 2px;
94
+ border-width: 2px;
95
+ border-style: inset;
96
+ border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
97
+ border-image: initial;
98
+ }
99
+ .text_input {
100
+ background-color: transparent;
101
+ padding: 8px 8px 8px 16px;
102
+ color: rgb(255, 255, 255);
103
+ outline: none;
104
+ border: none;
105
+ width: 100%;
106
+ font-size: 14px;
107
+ }
108
+ .text_input.small {
109
+ width: 30%;
110
+ }
111
+ .text_input.text_right {
112
+ text-align: right;
113
+ }
114
+ .hidden {
115
+ display: none !important;
116
+ }
117
+ .hiddenleft {
118
+ transform: translateX(-100%) translateZ(0px);
119
+ }
120
+ .red {
121
+ color: #ff6961 !important;
122
+ }
123
+
124
+ /* Remove arrows from number input */
125
+ input::-webkit-outer-spin-button,
126
+ input::-webkit-inner-spin-button {
127
+ -webkit-appearance: none;
128
+ margin: 0;
129
+ }
130
+ input[type=number] {
131
+ -moz-appearance: textfield;
132
+ }
133
+
134
+ /* SCROLLBAR */
135
+
136
+ ::-webkit-scrollbar {
137
+ width: 6px;
138
+ right: 2px;
139
+ bottom: 2px;
140
+ top: 2px;
141
+ border-radius: 3px;
142
+ }
143
+ ::-webkit-scrollbar-track {
144
+ background: transparent;
145
+ }
146
+ ::-webkit-scrollbar-thumb {
147
+ background: rgba(255, 255, 255, 0.2);
148
+ }
149
+
150
+ /* LOADING OVERLAY */
151
+
152
+ #loading_overlay {
153
+ display: flex;
154
+ flex-direction: column;
155
+ justify-content: center;
156
+ align-items: center;
157
+ position: absolute;
158
+ top: 0;
159
+ bottom: 0;
160
+ left: 0;
161
+ right: 0;
162
+ background: #222;
163
+ z-index: 10;
164
+ }
165
+ #loading_overlay .loading_text {
166
+ margin-top: 8px;
167
+ font-size: 14px;
168
+ text-align: center;
169
+ }
170
+ #loading_overlay .loading_text.timeout > div {
171
+ opacity: 0;
172
+ animation: fadein 10s linear forwards;
173
+ }
174
+ #loading_overlay .loading_text.timeout > div:nth-child(1) {
175
+ animation-delay: 2000ms;
176
+ }
177
+ #loading_overlay .loading_text.timeout > div:nth-child(2) {
178
+ animation-delay: 4000ms;
179
+ }
180
+ #loading_overlay .loading_text.timeout > div:nth-child(3) {
181
+ animation-delay: 6000ms;
182
+ }
183
+ @keyframes fadein {
184
+ 0% {opacity: 0;}
185
+ 50% {opacity: 0;}
186
+ 100% {opacity: 1;}
187
+ }
188
+
189
+ /* MISC */
190
+
191
+ .clickable {
192
+ cursor: pointer !important;
193
+ }
194
+ .clickable:hover {
195
+ opacity: 0.8 !important;
196
+ }
197
+
198
+ /* APP */
199
+
200
+ #app_container {
201
+ padding: calc(8px - var(--app_border_width));
202
+ border: var(--app_border_width) solid var(--app_border_color);
203
+ }
204
+ #app_frame {
205
+ display: flex;
206
+ flex-direction: column;
207
+ overflow: hidden;
208
+ transition: height ease 0.2s, min-height ease 0.2s;
209
+ min-height: 237px !important;
210
+ }
211
+
212
+ /* HEADER */
213
+
214
+ .header {
215
+ box-sizing: border-box;
216
+ padding: 16px;
217
+ display: flex;
218
+ place-content: space-between;
219
+ font-weight: 400;
220
+ }
221
+ .header.spacedright {
222
+ margin-right: 32px;
223
+ }
224
+ .nav_icon {
225
+ border: none;
226
+ cursor: pointer;
227
+ display: flex;
228
+ -webkit-box-align: center;
229
+ align-items: center;
230
+ -webkit-box-pack: center;
231
+ justify-content: center;
232
+ background: rgba(2, 13, 28, 0.05);
233
+ border-radius: 50%;
234
+ width: 32px;
235
+ height: 32px;
236
+ position: relative;
237
+ transition: all 0.3s ease 0s;
238
+ fill: rgba(255, 255, 255, 1);
239
+ background: rgba(255, 255, 255, 0.1) !important;
240
+ }
241
+ .nav_icon:hover {
242
+ opacity: 0.9;
243
+ }
244
+ .nav_icon:disabled,
245
+ .nav_icon:disabled:hover {
246
+ background: none !important;
247
+ cursor: unset;
248
+ opacity: 0.9;
249
+ }
250
+ .header_label_container {
251
+ box-sizing: border-box;
252
+ margin-right: 0px;
253
+ display: flex;
254
+ flex: 1 1 0%;
255
+ -webkit-box-pack: center;
256
+ justify-content: center;
257
+ -webkit-box-align: center;
258
+ align-items: center;
259
+ }
260
+ .header_label {
261
+ box-sizing: border-box;
262
+ font-size: 24px;
263
+ font-weight: bold;
264
+ display: flex;
265
+ color: rgb(255, 255, 255);
266
+ }
267
+
268
+ /* PLAN */
269
+
270
+ .plan_info_box {
271
+ position: relative;
272
+ width: 100%;
273
+ height: 100%;
274
+ }
275
+ .plan_info_container {
276
+ display: flex;
277
+ box-sizing: border-box;
278
+ position: relative;
279
+ }
280
+ .plan_info {
281
+ box-sizing: border-box;
282
+ width: 100%;
283
+ padding: 0px 16px 16px;
284
+ display: flex;
285
+ }
286
+ .plan_label {
287
+ box-sizing: border-box;
288
+ font-weight: bold;
289
+ font-size: 14px;
290
+ color: rgb(255, 255, 255);
291
+ }
292
+ .plan_value {
293
+ box-sizing: border-box;
294
+ margin-left: auto;
295
+ display: flex;
296
+ }
297
+ .plan_button {
298
+ display: flex;
299
+ background-color: transparent;
300
+ color: rgba(255, 255, 255, 0.9);
301
+ width: auto;
302
+ padding: 0px;
303
+ border: none;
304
+ -webkit-box-align: center;
305
+ align-items: center;
306
+ -webkit-box-pack: center;
307
+ justify-content: center;
308
+ transition: color 0.3s ease 0s, transform 0.1s ease-out 0s, opacity 0.3s ease 0s;
309
+ }
310
+ .plan_button.link {
311
+ color: #0a95ff;
312
+ }
313
+ .plan_button.link,
314
+ .plan_button.link:hover,
315
+ .plan_button_label {
316
+ box-sizing: border-box;
317
+ font-size: 14px;
318
+ }
319
+
320
+ /* WARNING */
321
+
322
+ .warning_box {
323
+ display: flex;
324
+ flex-direction: column;
325
+ justify-content: center;
326
+ background: var(--app_background);
327
+ position: absolute;
328
+ top: 0;
329
+ bottom: 8px;
330
+ left: 4px;
331
+ right: 4px;
332
+ border: 1px solid #FCD62E;
333
+ border-radius: 0.25rem;
334
+ padding: 0.5rem;
335
+ margin: 0 4px;
336
+ z-index: 1;
337
+ }
338
+ .warning_box * {
339
+ color: var(--app_foreground);
340
+ font-size: 14px;
341
+ text-align: center;
342
+ }
343
+
344
+ /* KEY */
345
+
346
+ .key_label {
347
+ display: flex;
348
+ flex-direction: row;
349
+ flex-wrap: nowrap;
350
+ justify-content: space-between;
351
+ width: 100%;
352
+ }
353
+ .key_label > .instructions {
354
+ font-weight: normal;
355
+ line-height: 16px;
356
+ margin-left: 6px;
357
+ color: var(--app_foreground);
358
+ font-size: 10px;
359
+ }
360
+ .settings_text[data-settings="key"] {
361
+ background: var(--app_background);
362
+ position: absolute;
363
+ width: calc(100% - 32px);
364
+ transition: all ease 0.1s;
365
+ z-index: 1;
366
+ }
367
+ .edit_icon {
368
+ z-index: 2;
369
+ }
370
+
371
+ /* MENU */
372
+
373
+ .menu {
374
+ box-sizing: border-box;
375
+ padding-left: 16px;
376
+ }
377
+ .menu_item_container {
378
+ border-top: none;
379
+ border-right: none;
380
+ border-left: none;
381
+ border-image: initial;
382
+ cursor: pointer;
383
+ display: flex;
384
+ -webkit-box-align: center;
385
+ align-items: center;
386
+ background-color: transparent;
387
+ width: 100%;
388
+ padding: 16px;
389
+ margin-top: 2px;
390
+ border-bottom: 2px solid rgba(255, 255, 255, 0.05);
391
+ color: rgba(255, 255, 255, 0.5);
392
+ transition: color 0.5s ease 0s, border 0.5s ease 0s;
393
+ -webkit-box-pack: justify !important;
394
+ justify-content: space-between !important;
395
+ }
396
+ .menu_item_container:hover {
397
+ color: rgb(255, 255, 255);
398
+ }
399
+ button.menu_item_container {
400
+ padding-left: 0px !important;
401
+ }
402
+ .button_label_container {
403
+ box-sizing: border-box;
404
+ -webkit-box-align: center;
405
+ align-items: center;
406
+ display: flex;
407
+ }
408
+ .button_label_container svg {
409
+ fill: rgb(255, 255, 255);
410
+ }
411
+ .button_label {
412
+ box-sizing: border-box;
413
+ margin-left: 16px;
414
+ font-size: 14px;
415
+ font-weight: bold;
416
+ }
417
+ .menu_item_arrow {
418
+ fill: rgb(255, 255, 255);
419
+ height: 16px;
420
+ width: 16px;
421
+ }
422
+
423
+ /* #export {
424
+ color: rgba(255, 255, 255, 0.5);
425
+ font-size: 1.2em;
426
+ cursor: pointer;
427
+ transition: color 0.5s ease 0s, border 0.5s ease 0s;
428
+ }
429
+ #export:hover {
430
+ color: rgb(255, 255, 255);
431
+ } */
432
+
433
+ /* TAB */
434
+
435
+ .bbflex {
436
+ box-sizing: border-box;
437
+ display: flex;
438
+ -webkit-box-align: center;
439
+ align-items: center;
440
+ }
441
+ .scrolling_container {
442
+ box-sizing: border-box;
443
+ margin-top: 8px;
444
+ margin-left: 16px;
445
+ margin-right: 16px;
446
+ padding-bottom: 16px;
447
+ }
448
+ .settings_item_container {
449
+ box-sizing: border-box;
450
+ margin-bottom: 8px;
451
+ border: 1px solid rgba(255, 255, 255, 0.08);
452
+ border-radius: 8px;
453
+ box-sizing: border-box;
454
+ }
455
+ .settings_item_container > a {
456
+ color: rgba(255, 255, 255, 0.5);
457
+ text-decoration: none;
458
+ transition: color 0.5s ease 0s, border 0.5s ease 0s;
459
+ }
460
+ .settings_item {
461
+ width: 100%;
462
+ background-color: rgba(255, 255, 255, 0.08);
463
+ min-height: 48px;
464
+ padding: 14px 16px 0px;
465
+ border-radius: 8px;
466
+ }
467
+ .settings_item > div {
468
+ -webkit-box-pack: justify;
469
+ justify-content: space-between;
470
+ -webkit-box-align: center;
471
+ align-items: center;
472
+ }
473
+ .settings_item_label {
474
+ font-size: 14px;
475
+ font-weight: 600;
476
+ color: rgb(255, 255, 255);
477
+ padding-left: 16px;
478
+ height: 20px;
479
+ -webkit-box-align: center;
480
+ align-items: center;
481
+ }
482
+ .settings_toggle {
483
+ height: 20px;
484
+ max-width: 36px;
485
+ min-width: 36px;
486
+ border-radius: 10px;
487
+ padding: 2px;
488
+ transition: background-color 0.3s ease 0s;
489
+ opacity: 1;
490
+ cursor: pointer;
491
+ }
492
+ .settings_toggle > div {
493
+ width: 16px;
494
+ height: 16px;
495
+ border-radius: 50%;
496
+ transform: translate(16px);
497
+ transition: transform 0.3s ease 0s, background-color 0.3s ease 0s;
498
+ }
499
+ .settings_toggle.on {
500
+ background-color: rgb(0, 106, 255);
501
+ }
502
+ .settings_toggle.off {
503
+ background-color: rgb(255, 255, 255);
504
+ }
505
+ .settings_toggle.on > div {
506
+ background-color: rgb(255, 255, 255);
507
+ transform: translate(16px);
508
+ }
509
+ .settings_toggle.off > div {
510
+ background-color: rgb(2, 13, 28);
511
+ transform: translate(0px);
512
+ }
513
+ .settings_description_container {
514
+ padding: 10px 16px 8px;
515
+ -webkit-box-pack: justify;
516
+ justify-content: space-between;
517
+ }
518
+ .settings_description {
519
+ font-size: 12px;
520
+ color: rgba(255, 255, 255, 0.5);
521
+ }
522
+ .settings_button {
523
+ color: rgba(255, 255, 255, 0.5);
524
+ font-size: 14px;
525
+ gap: 16px;
526
+ }
527
+ .settings_button > div {
528
+ cursor: pointer;
529
+ transition: all 0.3s ease 0s;
530
+ }
531
+ .settings_button > div:hover {
532
+ color: rgb(255, 255, 255);
533
+ }
534
+ .settings_dropdown_selected {
535
+ color: rgba(255, 255, 255, 0.5);
536
+ -webkit-box-align: center;
537
+ align-items: center;
538
+ font-size: 14px;
539
+ cursor: pointer;
540
+ white-space: nowrap;
541
+ }
542
+ .settings_dropdown_selected > div {
543
+ box-sizing: border-box;
544
+ margin-right: 8px;
545
+ }
546
+ .settings_dropdown_options {
547
+ position: relative;
548
+ transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
549
+ opacity: 0;
550
+ visibility: hidden;
551
+ }
552
+ .settings_dropdown_options > div {
553
+ position: absolute;
554
+ background-color: rgb(255, 255, 255);
555
+ border-radius: 4px;
556
+ right: 0px;
557
+ top: 50%;
558
+ transform: translateY(-50%);
559
+ border: 1px solid rgba(0, 0, 0, 0.15);
560
+ width: auto;
561
+ min-width: 60px;
562
+ white-space: nowrap;
563
+ box-shadow: rgb(0 0 0 / 15%) 0px 2px 4px 0px;
564
+ box-sizing: border-box;
565
+ padding: 4px;
566
+ }
567
+ .settings_dropdown_selected:hover > .settings_dropdown_options {
568
+ opacity: 1;
569
+ visibility: visible;
570
+ }
571
+ .settings_dropdown_options > div > div {
572
+ color: rgba(0, 0, 0, 0.5);
573
+ font-weight: 700;
574
+ border-radius: 4px;
575
+ -webkit-box-pack: center;
576
+ justify-content: center;
577
+ -webkit-box-align: center;
578
+ align-items: center;
579
+ line-height: normal;
580
+ font-size: 12px;
581
+ height: 23px;
582
+ cursor: pointer;
583
+ padding: 0px 4px;
584
+ }
585
+ .settings_dropdown_options > div > div:hover {
586
+ background-color: rgba(0, 0, 0, 0.08);
587
+ }
588
+ .settings_dropdown_options > div > div.selected {
589
+ color: rgb(0, 106, 255);
590
+ }
591
+
592
+ .tab_content_wrapper {
593
+ position: relative;
594
+ overflow: hidden;
595
+ width: 100%;
596
+ height: auto;
597
+ min-height: 0px;
598
+ /* max-height: 402px; */
599
+ max-height: 550px;
600
+ }
601
+ .tab_content {
602
+ position: relative;
603
+ overflow: auto;
604
+ margin-bottom: -15px;
605
+ min-height: 15px;
606
+ /* max-height: 417px; */
607
+ max-height: 550px;
608
+ }
609
+
610
+ /* FOOTER */
611
+
612
+ #footer {
613
+ display: flex;
614
+ flex-direction: row;
615
+ padding: 8px;
616
+ margin-top: 8px;
617
+ font-size: 11px;
618
+ }
619
+ #footer * {
620
+ color: rgba(255, 255, 255, 0.6);
621
+ }
622
+ #footer > *:nth-child(1) {
623
+ flex-grow: 1;
624
+ }
625
+
626
+ /* LOADING ANIM */
627
+
628
+ .loading {
629
+ display: inline-block;
630
+ position: relative;
631
+ width: 32px;
632
+ height: 16px;
633
+ }
634
+ .loading div {
635
+ position: absolute;
636
+ top: 5px;
637
+ width: 6px;
638
+ height: 6px;
639
+ border-radius: 50%;
640
+ background: rgba(255, 255, 255, 0.8);
641
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
642
+ }
643
+ .loading div:nth-child(1) {
644
+ left: 4px;
645
+ animation: loading1 0.6s infinite;
646
+ }
647
+ .loading div:nth-child(2) {
648
+ left: 4px;
649
+ animation: loading2 0.6s infinite;
650
+ }
651
+ .loading div:nth-child(3) {
652
+ left: 16px;
653
+ animation: loading2 0.6s infinite;
654
+ }
655
+ .loading div:nth-child(4) {
656
+ left: 28px;
657
+ animation: loading3 0.6s infinite;
658
+ }
659
+ @keyframes loading1 {
660
+ 0% {
661
+ transform: scale(0);
662
+ }
663
+ 100% {
664
+ transform: scale(1);
665
+ }
666
+ }
667
+ @keyframes loading3 {
668
+ 0% {
669
+ transform: scale(1);
670
+ }
671
+ 100% {
672
+ transform: scale(0);
673
+ }
674
+ }
675
+ @keyframes loading2 {
676
+ 0% {
677
+ transform: translate(0, 0);
678
+ }
679
+ 100% {
680
+ transform: translate(12px, 0);
681
+ }
682
+ }
683
+
684
+ /* POWER ANIM */
685
+
686
+ #power .btn {
687
+ width: 32px;
688
+ height: 32px;
689
+ transition: transform 0.3s ease 0s;
690
+ }
691
+ #power .btn svg {
692
+ fill: rgb(255, 255, 255);
693
+ }
694
+ #power .btn.off {
695
+ transform: rotate(-180deg);
696
+ }
697
+ #power .btn_outline {
698
+ position: absolute;
699
+ z-index: 2;
700
+ height: 100%;
701
+ }
702
+ #power .btn_outline.spinning {
703
+ animation: 1s linear 0s infinite normal none running spinning;
704
+ }
705
+ @keyframes spinning {
706
+ 0% {transform: rotate(0deg);}
707
+ 100% {transform: rotate(360deg);}
708
+ }
709
+
710
+ /* GLOW ANIM */
711
+
712
+ .hover_glow {
713
+ border: none;
714
+ outline: none;
715
+ cursor: pointer;
716
+ position: relative;
717
+ z-index: 0;
718
+ border-radius: 50%;
719
+ }
720
+ .hover_glow:before {
721
+ content: '';
722
+ background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
723
+ position: absolute;
724
+ top: -2px;
725
+ left:-2px;
726
+ background-size: 400%;
727
+ z-index: -1;
728
+ filter: blur(5px);
729
+ width: calc(100% + 4px);
730
+ height: calc(100% + 4px);
731
+ animation: glowing 20s linear infinite;
732
+ opacity: 0;
733
+ transition: opacity .3s ease-in-out;
734
+ border-radius: 50%;
735
+ }
736
+ .hover_glow:active:after {
737
+ background: transparent;
738
+ }
739
+ .hover_glow:hover:before {
740
+ opacity: 1;
741
+ }
742
+ .hover_glow:after {
743
+ z-index: -1;
744
+ content: '';
745
+ position: absolute;
746
+ width: 100%;
747
+ height: 100%;
748
+ left: 0;
749
+ top: 0;
750
+ border-radius: 50%;
751
+ }
752
+ .hover_glow.static:before {
753
+ opacity: 1 !important;
754
+ }
755
+ @keyframes glowing {
756
+ 0% {background-position: 0 0;}
757
+ 50% {background-position: 400% 0;}
758
+ 100% {background-position: 0 0;}
759
+ }
760
+
761
+
762
+ /* BLACKLIST */
763
+
764
+ .settings_item_header {
765
+ box-sizing: border-box;
766
+ padding-top: 4px;
767
+ padding-bottom: 8px;
768
+ font-size: 12px;
769
+ background-color: rgb(26, 36, 50);
770
+ width: 100%;
771
+ letter-spacing: 2px;
772
+ font-weight: bold;
773
+ color: rgba(255, 255, 255, 0.5);
774
+ text-transform: uppercase;
775
+ overflow: hidden;
776
+ white-space: nowrap;
777
+ text-overflow: ellipsis;
778
+ position: relative;
779
+ top: 12px;
780
+ z-index: 1;
781
+ }
782
+ .settings_item_container.list_item {
783
+ border-radius: 0;
784
+ border: none;
785
+ border-bottom: 2px solid rgba(255, 255, 255, 0.05);
786
+ padding-top: 16px;
787
+ padding-bottom: 16px;
788
+ margin-bottom: 0px;
789
+ }
790
+ .list_item_row {
791
+ box-sizing: border-box;
792
+ -webkit-box-align: center;
793
+ align-items: center;
794
+ -webkit-box-pack: justify;
795
+ justify-content: space-between;
796
+ width: 100%;
797
+ display: flex;
798
+ }
799
+ #current_page_host {
800
+ box-sizing: border-box;
801
+ font-size: 14px;
802
+ font-weight: bold;
803
+ color: rgb(255, 255, 255);
804
+ width: fit-content;
805
+ overflow: hidden;
806
+ white-space: nowrap;
807
+ text-overflow: ellipsis;
808
+ max-width: 220px;
809
+ }
810
+ .settings_text.text_input.list_input {
811
+ flex-grow: 1;
812
+ padding-left: 0;
813
+ }
814
+ .list_item_button {
815
+ border: none;
816
+ cursor: pointer;
817
+ display: flex;
818
+ -webkit-box-align: center;
819
+ align-items: center;
820
+ -webkit-box-pack: center;
821
+ justify-content: center;
822
+ background-color: transparent;
823
+ padding: 0px;
824
+ transition: background-color 0.3s ease 0s, color 0.3s ease 0s, transform 0.1s ease-out 0s, opacity 0.3s ease 0s;
825
+ opacity: 0.5;
826
+ height: 32px;
827
+ width: 32px;
828
+ margin-right: -4px;
829
+ }
830
+ .list_item_button:hover {
831
+ opacity: 1.0;
832
+ }
833
+ .list_item_button:disabled,
834
+ .list_item_button:disabled:hover {
835
+ opacity: 0.3;
836
+ cursor: unset;
837
+ }
838
+