discord-message-transcript-base 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,720 @@
1
+ export const DEFAULT_CSS = `
2
+ body {
3
+ background-color: #3a3c43;
4
+ color: #dbdee1;
5
+ font-family: "Whitney", "Helvetica Neue", Helvetica, Arial, sans-serif;
6
+ margin: 0;
7
+ padding: 0;
8
+ width: 100%;
9
+ }
10
+ header {
11
+ height: fit-content;
12
+ border-bottom: 2px solid black;
13
+ margin-top: 2rem;
14
+ padding-left: 2rem;
15
+ padding-bottom: 1rem;
16
+ display: flex;
17
+ flex-direction: column;
18
+ display: flex;
19
+ flex-direction: row;
20
+ }
21
+ a {
22
+ text-decoration: none;
23
+ color: #1E90FF;
24
+ }
25
+ p {
26
+ margin: 0;
27
+ }
28
+ h1 {
29
+ margin: 0.5rem 0;
30
+ }
31
+ h2 {
32
+ margin: 0.3rem 0;
33
+ }
34
+ h3 {
35
+ margin: 0.15rem
36
+ }
37
+ h4 {
38
+ margin: 0;
39
+ }
40
+ code {
41
+ border: 1px solid #202225;
42
+ border-radius: 0.25rem;
43
+ }
44
+ blockquote {
45
+ margin: 0.5rem 0;
46
+ border-left: 0.25rem solid #4f545c;
47
+ padding: 0.4rem 0.6rem;
48
+ border-radius: 0.25rem;
49
+ color: #9f9fa6;
50
+ }
51
+ .line {
52
+ display: flex;
53
+ align-items: baseline;
54
+ gap: 0.5rem
55
+ }
56
+ .badge {
57
+ background-color: #5865f2;
58
+ color: white;
59
+ font-weight: 600;
60
+ font-size: 80%;
61
+ padding: 0.1rem 0.35rem;
62
+ border-radius: 0.25rem;
63
+ letter-spacing: 0.03rem;
64
+ height: fit-content;
65
+ width: fit-content;
66
+ align-self: flex-start;
67
+ }
68
+ .badgeTag {
69
+ background-color: #747F8D50;
70
+ color: white;
71
+ font-weight: 600;
72
+ font-size: 70%;
73
+ padding: 0.1rem 0.35rem;
74
+ border-radius: 0.25rem;
75
+ letter-spacing: 0.03rem;
76
+ height: fit-content;
77
+ width: fit-content;
78
+ align-self: center;
79
+ }
80
+ .mention {
81
+ background-color: #5664fa41;
82
+ padding: 0.2rem;
83
+ border-radius: 0.25rem;
84
+ transition: background-color 0.2s ease;
85
+ }
86
+ .mention:hover {
87
+ background-color: #5664fa7e;
88
+ }
89
+ .guildInitialsIcon {
90
+ width: 7rem;
91
+ height: 7rem;
92
+ border-radius: 50%;
93
+ background-color: #4f545c;
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ font-size: 3rem;
98
+ font-weight: 600;
99
+ }
100
+ `;
101
+ export const MESSAGE_CSS = `
102
+ .messageDiv {
103
+ display: flex;
104
+ flex-direction: column;
105
+ gap: 0.2rem;
106
+ padding: 0.5rem;
107
+ border-radius: 1rem;
108
+ }
109
+ .messageDiv.highlight, .messageDiv:hover {
110
+ background-color: #40434b;
111
+ transition: background-color 0.3s ease-in-out;
112
+ }
113
+ .messageBotton {
114
+ display: flex;
115
+ flex-direction: row;
116
+ gap: 1rem;
117
+ padding: 0.5rem;
118
+ border-radius: 0.25rem;
119
+ }
120
+ .messageImg {
121
+ width: 3.5rem;
122
+ height: 3.5rem;
123
+ border-radius: 50%;
124
+ }
125
+ .messageDivRight {
126
+ display: flex;
127
+ flex-direction: column;
128
+ gap: 0.25rem
129
+ }
130
+ .messageUser {
131
+ display: flex;
132
+ flex-direction: row;
133
+ gap: 0.75rem;
134
+ }
135
+ .messageUsername {
136
+ margin: 0;
137
+ }
138
+ .messageTimeStamp {
139
+ color: #999999;
140
+ font-size: 77.5%;
141
+ align-self: center;
142
+ }
143
+ .messageContent {
144
+ line-height: 1.5;
145
+ }
146
+ .pList {
147
+ white-space: pre-wrap;
148
+ }
149
+ .subtext {
150
+ font-size: 85%;
151
+ color: #808080;
152
+ }
153
+ .spoilerMsg {
154
+ display: inline-block;
155
+ background-color: #202225;
156
+ color: #202225;
157
+ padding: 0 0.2rem;
158
+ border-radius: 0.2rem;
159
+ cursor: pointer;
160
+ transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
161
+ }
162
+ .spoilerMsg.revealed {
163
+ background-color: transparent;
164
+ color: inherit;
165
+ }
166
+ .messageReply {
167
+ display: flex;
168
+ align-items: center;
169
+ gap: 0.5rem;
170
+ font-size: 0.8rem;
171
+ color: #b5bac1;
172
+ cursor: pointer;
173
+ margin-left: 2rem;
174
+ }
175
+ .messageReplySvg {
176
+ flex-shrink: 0;
177
+ width: 2.25rem;
178
+ height: 2.25rem;
179
+ color: #b5bac1;
180
+ }
181
+ .messageReplyImg {
182
+ width: 1.75rem;
183
+ height: 1.75rem;
184
+ border-radius: 50%;
185
+ flex-shrink: 0;
186
+ }
187
+ .messageReplyAuthor {
188
+ font-weight: 600;
189
+ color: #dbdee1;
190
+ margin-right: 0.3rem;
191
+ }
192
+ .badgeReply {
193
+ background-color: #5865f2;
194
+ color: white;
195
+ font-weight: 600;
196
+ font-size: 70%;
197
+ padding: 0.1rem 0.3rem;
198
+ border-radius: 0.25rem;
199
+ letter-spacing: 0.03rem;
200
+ height: fit-content;
201
+ align-self: center;
202
+ flex-shrink: 0;
203
+ }
204
+ .messageReplyText {
205
+ flex-grow: 1;
206
+ white-space: nowrap;
207
+ overflow: hidden;
208
+ text-overflow: ellipsis;
209
+ color: #b5bac1;
210
+ font-size: 0.75rem;
211
+ }
212
+ `;
213
+ export const EMBED_CSS = `
214
+ .embed {
215
+ background-color: #2b2d31;
216
+ border: 0.15rem solid #2b2d31;
217
+ border-left: 0.25rem solid;
218
+ border-radius: 0.25rem;
219
+ padding: 0.5rem 0.75rem;
220
+ margin-top: 0.5rem;
221
+ display: flex;
222
+ flex-direction: column;
223
+ gap: 0.5rem;
224
+ max-width: 40rem;
225
+ min-width: 30rem;
226
+ }
227
+ .embed a {
228
+ color: #00aff4;
229
+ text-decoration: none;
230
+ }
231
+ .embed a:hover {
232
+ text-decoration: underline;
233
+ }
234
+ .embedHeader {
235
+ display: flex;
236
+ justify-content: space-between;
237
+ align-items: flex-start;
238
+ gap: 0.5rem;
239
+ }
240
+ .embedHeaderLeft {
241
+ display: flex;
242
+ flex-direction: column;
243
+ gap: 0.25rem;
244
+ }
245
+ .embedHeaderLeftAuthor {
246
+ display: flex;
247
+ align-items: center;
248
+ gap: 0.5rem;
249
+ font-size: 0.875rem;
250
+ font-weight: 500;
251
+ color: #ffffff;
252
+ margin-bottom: 0.5rem;
253
+ }
254
+ .embedHeaderLeftAuthorImg {
255
+ width: 1.5rem;
256
+ height: 1.5rem;
257
+ border-radius: 50%;
258
+ }
259
+ .embedHeaderLeftAuthorName {
260
+ color: #ffffff;
261
+ font-weight: 500;
262
+ }
263
+ .embedHeaderLeftTitle {
264
+ font-size: 1rem;
265
+ font-weight: bold;
266
+ color: #ffffff;
267
+ margin-bottom: 0.75rem;
268
+ }
269
+ .embedHeaderThumbnail {
270
+ max-width: 80px;
271
+ max-height: 80px;
272
+ object-fit: contain;
273
+ border-radius: 0.25rem;
274
+ flex-shrink: 0;
275
+ }
276
+ .embedDescription {
277
+ font-size: 0.875rem;
278
+ color: #dcddde;
279
+ }
280
+ .embedFields {
281
+ display: flex;
282
+ flex-wrap: wrap;
283
+ gap: 0.5rem;
284
+ }
285
+ .embedFieldsField {
286
+ flex: 1;
287
+ min-width: 150px;
288
+ }
289
+ .embedFieldsFieldTitle {
290
+ font-size: 0.75rem;
291
+ font-weight: bold;
292
+ color: #ffffff;
293
+ margin-bottom: 0.25rem;
294
+ }
295
+ .embedFieldsFieldValue {
296
+ font-size: 0.875rem;
297
+ color: #dcddde;
298
+ }
299
+ .embedImage {
300
+ margin-top: 0.5rem;
301
+ max-width: 100%;
302
+ height: auto;
303
+ }
304
+ .embedImage img {
305
+ max-width: 100%;
306
+ max-height: 300px;
307
+ object-fit: contain;
308
+ border-radius: 0.25rem;
309
+ }
310
+ .embedFooter {
311
+ display: flex;
312
+ align-items: center;
313
+ gap: 0.5rem;
314
+ font-size: 0.75rem;
315
+ color: #999999;
316
+ margin-top: 0.5rem;
317
+ }
318
+ .embedFooterImg {
319
+ width: 1.25rem;
320
+ height: 1.25rem;
321
+ border-radius: 50%;
322
+ }
323
+ .embedFooterText {
324
+ color: #999999;
325
+ }
326
+ `;
327
+ export const ATTACHMENT_CSS = `
328
+ .attachmentImage, .attachmentVideo {
329
+ max-width: 400px;
330
+ height: auto;
331
+ border-radius: 0.25rem;
332
+ margin-top: 0.5rem;
333
+ }
334
+ .attachmentAudio {
335
+ width: 300px;
336
+ margin-top: 0.5rem;
337
+ }
338
+ .attachmentFile {
339
+ background-color: #2b2d31;
340
+ border: 1px solid #202225;
341
+ border-radius: 0.75rem;
342
+ padding: 0.75rem;
343
+ display: flex;
344
+ align-items: center;
345
+ gap: 0.75rem;
346
+ max-width: 400px;
347
+ margin-top: 0.5rem;
348
+ width: fit-content;
349
+ }
350
+ .attachmentFileIcon {
351
+ width: 2.5rem;
352
+ height: 2.5rem;
353
+ fill: #b9bbbe;
354
+ flex-shrink: 0;
355
+ }
356
+ .attachmentFileInfo {
357
+ display: flex;
358
+ flex-direction: column;
359
+ gap: 0.1rem;
360
+ overflow: hidden;
361
+ flex-grow: 1;
362
+ }
363
+ .attachmentFileName {
364
+ color: #ffffff;
365
+ text-decoration: none;
366
+ white-space: nowrap;
367
+ overflow: hidden;
368
+ text-overflow: ellipsis;
369
+ }
370
+ .attachmentFileSize {
371
+ font-size: 0.75rem;
372
+ color: #72767d;
373
+ }
374
+ .attachmentDownload {
375
+ display: block;
376
+ flex-shrink: 0;
377
+ }
378
+ .attachmentDownloadIcon {
379
+ width: 1.5rem;
380
+ height: 1.5rem;
381
+ fill: #b9bbbe;
382
+ transition: fill 0.2s ease;
383
+ }
384
+ .attachmentDownload:hover .attachmentDownloadIcon {
385
+ fill: #ffffff;
386
+ }
387
+ .spoilerAttachment {
388
+ position: relative;
389
+ display: inline-block;
390
+ border-radius: 0.5rem;
391
+ overflow: hidden;
392
+ cursor: pointer;
393
+ }
394
+ .spoilerAttachment .spoilerAttachmentContent {
395
+ filter: blur(64px);
396
+ pointer-events: none;
397
+ transition: filter 0.2s ease;
398
+ width: 100%;
399
+ height: 100%;
400
+ }
401
+ .spoilerAttachment .spoilerAttachmentOverlay {
402
+ position: absolute;
403
+ inset: 0;
404
+ background: rgba(32, 34, 37, 0.85);
405
+ color: #fff;
406
+ font-weight: 600;
407
+ letter-spacing: 0.05em;
408
+ display: flex;
409
+ align-items: center;
410
+ justify-content: center;
411
+ z-index: 2;
412
+ user-select: none;
413
+ }
414
+ .spoilerAttachment.revealed .spoilerAttachmentContent {
415
+ filter: none;
416
+ pointer-events: auto;
417
+ }
418
+ .spoilerAttachment.revealed .spoilerAttachmentOverlay {
419
+ display: none;
420
+ }
421
+ `;
422
+ export const ACTIONROW_CSS = `
423
+ .actionRow {
424
+ display: flex;
425
+ gap: 0.5rem;
426
+ margin-top: 0.5rem;
427
+ }
428
+ `;
429
+ export const BUTTON_CSS = `
430
+ .button {
431
+ display: flex;
432
+ align-items: center;
433
+ gap: 0.5rem;
434
+ padding: 0rem 0.8rem;
435
+ height: 2.5rem;
436
+ border-radius: 0.6rem;
437
+ color: white;
438
+ font-weight: 600;
439
+ cursor: pointer;
440
+ transition: filter 0.2s ease;
441
+ }
442
+ .button:hover {
443
+ filter: brightness(1.1);
444
+ }
445
+ .buttonEmoji {
446
+ font-size: 1.25rem;
447
+ }
448
+ .buttonLabel {
449
+ font-size: 0.875rem;
450
+ }
451
+ .buttonLink {
452
+ display: flex;
453
+ align-items: center;
454
+ gap: 0.5rem;
455
+ color: white;
456
+ font-weight: 600;
457
+ }
458
+ .buttonLinkIcon {
459
+ width: 1.25rem;
460
+ height: 1.25rem;
461
+ }
462
+ `;
463
+ export const COMPONENTS_CSS = `
464
+ .selector {
465
+ width: 100%;
466
+ position: relative;
467
+ }
468
+ .selectorInput {
469
+ background-color: #2b2d31;
470
+ border: 1px solid #202225;
471
+ border-radius: 0.75rem;
472
+ padding: 0.75rem;
473
+ min-width: 17.5rem;
474
+ cursor: pointer;
475
+ user-select: none;
476
+ }
477
+ .selectorInputText {
478
+ color: #808080;
479
+ }
480
+ .selectorOptionMenu {
481
+ display: none;
482
+ position: absolute;
483
+ top: 100%;
484
+ left: 0;
485
+ width: 100%;
486
+ background-color: #2b2d31;
487
+ border: 1px solid #202225;
488
+ border-radius: 1rem;
489
+ margin-top: 0.25rem;
490
+ padding: 0.5rem;
491
+ z-index: 10;
492
+ box-sizing: border-box;
493
+ }
494
+ .selector.active .selectorOptionMenu {
495
+ display: block;
496
+ }
497
+ .selectorOption {
498
+ display: flex;
499
+ align-items: center;
500
+ gap: 0.5rem;
501
+ padding: 0.75rem;
502
+ border-radius: 0.75rem;
503
+ cursor: pointer;
504
+ transition: background-color 0.2s ease;
505
+ }
506
+ .selectorOption:hover {
507
+ background-color: #4f545c;
508
+ }
509
+ .selectorOptionEmoji {
510
+ font-size: 1.25rem;
511
+ }
512
+ .selectorOptionRight {
513
+ display: flex;
514
+ flex-direction: column;
515
+ }
516
+ .selectorOptionTitle {
517
+ font-weight: 500;
518
+ }
519
+ .selectorOptionDesc {
520
+ font-size: 0.75rem;
521
+ color: #808080;
522
+ }
523
+ `;
524
+ export const COMPONENTSV2_CSS = `
525
+ .mediaGallery {
526
+ display: flex;
527
+ flex-wrap: wrap;
528
+ gap: 0.25rem;
529
+ width: 100%;
530
+ max-width: 40rem;
531
+ aspect-ratio: 1 / 1;
532
+ padding: 0.35rem;
533
+ overflow: hidden;
534
+ }
535
+ .mediaGalleryItem {
536
+ flex-grow: 1;
537
+ flex-basis: 0;
538
+ min-width: 30%;
539
+ display: flex;
540
+ }
541
+ .mediaGalleryImg {
542
+ width: 100%;
543
+ height: 100%;
544
+ object-fit: cover;
545
+ display: block;
546
+ border-radius: 1rem;
547
+ }
548
+ .container {
549
+ background-color: #2b2d31;
550
+ border-radius: 0.5rem;
551
+ padding: 1rem;
552
+ max-width: 40rem;
553
+ min-width: 30rem;
554
+ border-left: 0.25rem solid;
555
+ }
556
+ .section {
557
+ display: flex;
558
+ flex-direction: row;
559
+ justify-content: space-between;
560
+ padding: 0.5rem 0;
561
+ }
562
+ .sectionRight {
563
+ margin-right: 0.5rem;
564
+ margin-left: 1rem;
565
+ }
566
+ .sectionThumbnail {
567
+ width: 5rem;
568
+ height: 5rem;
569
+ border-radius: 0.5rem;
570
+ }
571
+ .textDisplay {
572
+ padding: 0.5rem 0;
573
+ }
574
+ .separator {
575
+ border: 1px solid #808080;
576
+ }
577
+ `;
578
+ export const POLL_CSS = `
579
+ .pollDiv {
580
+ background-color: #2b2d31;
581
+ border-radius: 0.5rem;
582
+ padding: 1rem;
583
+ margin-top: 0.5rem;
584
+ max-width: 40rem;
585
+ min-width: 25rem
586
+ }
587
+ .pollQuestion {
588
+ font-size: 1.1rem;
589
+ font-weight: bold;
590
+ margin-bottom: 1rem;
591
+ display: flex;
592
+ align-items: center;
593
+ gap: 0.5rem;
594
+ }
595
+ .pollAnswers {
596
+ display: flex;
597
+ flex-direction: column;
598
+ gap: 0.5rem;
599
+ }
600
+ .pollAnswer {
601
+ background-color: #3a3c42;
602
+ border-radius: 0.3rem;
603
+ padding: 0.75rem;
604
+ cursor: pointer;
605
+ border: 1px solid transparent;
606
+ transition: border-color 0.2s ease;
607
+ position: relative;
608
+ overflow: hidden;
609
+ }
610
+ .pollAnswer:hover {
611
+ border-color: #4d515a;
612
+ }
613
+ .pollAnswerBar {
614
+ position: absolute;
615
+ top: 0;
616
+ left: 0;
617
+ height: 100%;
618
+ background-color: #5664fa7a;
619
+ border-radius: 0.2rem;
620
+ z-index: 1;
621
+ }
622
+ .pollAnswerContent {
623
+ position: relative;
624
+ z-index: 2;
625
+ display: flex;
626
+ align-items: center;
627
+ justify-content: space-between;
628
+ }
629
+ .pollAnswerDetails {
630
+ display: flex;
631
+ align-items: center;
632
+ gap: 0.5rem;
633
+ }
634
+ .pollAnswerEmoji {
635
+ font-size: 1.25rem;
636
+ }
637
+ .pollAnswerText {
638
+ font-weight: 500;
639
+ }
640
+ .pollAnswerVotes {
641
+ font-size: 0.8rem;
642
+ color: #b5bac1;
643
+ font-weight: bold;
644
+ }
645
+ .pollFooter {
646
+ margin-top: 1rem;
647
+ font-size: 0.75rem;
648
+ color: #949ba4;
649
+ }
650
+ `;
651
+ export const POLL_RESULT_EMBED_CSS = `
652
+ .pollResultEmbed {
653
+ background-color: #2b2d31;
654
+ border-radius: 0.5rem;
655
+ padding: 1rem;
656
+ margin-top: 0.5rem;
657
+ border: 1px solid #3a3c42;
658
+ min-width: 20rem;
659
+ max-width: 40rem;
660
+ display: flex;
661
+ flex-direction: row;
662
+ justify-content: space-between;
663
+ }
664
+ .pollResultEmbedWinner {
665
+ display: flex;
666
+ align-items: center;
667
+ gap: 0.5rem;
668
+ font-size: 1rem;
669
+ font-weight: 600;
670
+ margin-bottom: 0.4rem;
671
+ }
672
+ .pollResultEmbedCheckmark {
673
+ color: #57f287;
674
+ font-size: 1.1em;
675
+ }
676
+ .pollResultEmbedSubtitle {
677
+ font-size: 0.9rem;
678
+ color: #b5bac1;
679
+ }
680
+ .pollResultEmbedButtonDiv {
681
+ margin-right: 0.5rem;
682
+ margin-left: 1rem;
683
+ align-self: center;
684
+ }
685
+ .pollResultEmbedButton {
686
+ background-color: black;
687
+ color: white;
688
+ padding: 0.5rem 1rem;
689
+ border-radius: 0.3rem;
690
+ text-decoration: none;
691
+ font-weight: 500;
692
+ transition: background-color 0.2s ease;
693
+ cursor: pointer;
694
+ }
695
+ .pollResultEmbedButton:hover {
696
+ filter: brightness(1.1);
697
+ }
698
+ `;
699
+ export const REACTIONS_CSS = `
700
+ .reactionsDiv {
701
+ display: flex;
702
+ flex-wrap: wrap;
703
+ gap: 0.5rem;
704
+ margin-top: 0.5rem;
705
+ }
706
+ .reaction {
707
+ align-items: center;
708
+ background-color: #2b2d31;
709
+ border: 1px solid #3a3c42;
710
+ border-radius: 1rem;
711
+ padding: 0.25rem 0.6rem;
712
+ font-size: 1rem;
713
+ color: #dcddde;
714
+ font-weight: bold;
715
+ cursor: pointer;
716
+ }
717
+ .reaction:hover {
718
+ filter: brightness(1.1);
719
+ }
720
+ `;
@@ -0,0 +1 @@
1
+ export declare const MINIFIED_CSS = "body{background-color:#3a3c43;color:#dbdee1;font-family:\"Whitney\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;margin:0;padding:0;width:100%}header{height:fit-content;border-bottom:2px solid black;margin-top:2rem;padding-left:2rem;padding-bottom:1rem;display:flex;flex-direction:column;display:flex;flex-direction:row}a{text-decoration:none;color:#1E90FF}p{margin:0}h1{margin:.5rem 0}h2{margin:.3rem 0}h3{margin:.15rem}h4{margin:0}code{border:1px solid #202225;border-radius:.25rem}blockquote{margin:.5rem 0;border-left:.25rem solid #4f545c;padding:.4rem .6rem;border-radius:.25rem;color:#9f9fa6}.c1{display:flex;align-items:baseline;gap:.5rem}.c2{background-color:#5865f2;color:white;font-weight:600;font-size:80%;padding:.1rem .35rem;border-radius:.25rem;letter-spacing:.03rem;height:fit-content;width:fit-content;align-self:flex-start}.c3{background-color:#747F8D50;color:white;font-weight:600;font-size:70%;padding:.1rem .35rem;border-radius:.25rem;letter-spacing:.03rem;height:fit-content;width:fit-content;align-self:center}.c4{background-color:#5664fa41;padding:.2rem;border-radius:.25rem;transition:background-color .2s ease}.c4:hover{background-color:#5664fa7e}.c5{width:7rem;height:7rem;border-radius:50%;background-color:#4f545c;display:flex;align-items:center;justify-content:center;font-size:3rem;font-weight:600}.c6{display:flex;flex-direction:column;gap:.2rem;padding:.5rem;border-radius:1rem}.c6.highlight,.c6:hover{background-color:#40434b;transition:background-color .3s ease-in-out}.c7{display:flex;flex-direction:row;gap:1rem;padding:.5rem;border-radius:.25rem}.c8{width:3.5rem;height:3.5rem;border-radius:50%}.c9{display:flex;flex-direction:column;gap:.25rem}.c10{display:flex;flex-direction:row;gap:.75rem}.c11{margin:0}.c12{color:#999;font-size:77.5%;align-self:center}.c13{line-height:1.5}.c14{white-space:pre-wrap}.c15{font-size:85%;color:#808080}.c16{display:inline-block;background-color:#202225;color:#202225;padding:0 .2rem;border-radius:.2rem;cursor:pointer;transition:background-color .1s ease-in-out,color .1s ease-in-out}.c16.revealed{background-color:transparent;color:inherit}.c17{display:flex;align-items:center;gap:.5rem;font-size:.8rem;color:#b5bac1;cursor:pointer;margin-left:2rem}.c18{flex-shrink:0;width:2.25rem;height:2.25rem;color:#b5bac1}.c19{width:1.75rem;height:1.75rem;border-radius:50%;flex-shrink:0}.c20{font-weight:600;color:#dbdee1;margin-right:.3rem}.c21{background-color:#5865f2;color:white;font-weight:600;font-size:70%;padding:.1rem .3rem;border-radius:.25rem;letter-spacing:.03rem;height:fit-content;align-self:center;flex-shrink:0}.c22{flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#b5bac1;font-size:.75rem}.c23{background-color:#2b2d31;border:.15rem solid #2b2d31;border-left:.25rem solid;border-radius:.25rem;padding:.5rem .75rem;margin-top:.5rem;display:flex;flex-direction:column;gap:.5rem;max-width:40rem;min-width:30rem}.c23 a{color:#00aff4;text-decoration:none}.c23 a:hover{text-decoration:underline}.c24{display:flex;justify-content:space-between;align-items:flex-start;gap:.5rem}.c25{display:flex;flex-direction:column;gap:.25rem}.c26{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500;color:#fff;margin-bottom:.5rem}.c27{width:1.5rem;height:1.5rem;border-radius:50%}.c28{color:#fff;font-weight:500}.c29{font-size:1rem;font-weight:700;color:#fff;margin-bottom:.75rem}.c30{max-width:80px;max-height:80px;object-fit:contain;border-radius:.25rem;flex-shrink:0}.c31{font-size:.875rem;color:#dcddde}.c32{display:flex;flex-wrap:wrap;gap:.5rem}.c33{flex:1;min-width:150px}.c34{font-size:.75rem;font-weight:700;color:#fff;margin-bottom:.25rem}.c35{font-size:.875rem;color:#dcddde}.c36{margin-top:.5rem;max-width:100%;height:auto}.c36 img{max-width:100%;max-height:300px;object-fit:contain;border-radius:.25rem}.c37{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:#999;margin-top:.5rem}.c38{width:1.25rem;height:1.25rem;border-radius:50%}.c39{color:#999}.c40,.c41{max-width:400px;height:auto;border-radius:.25rem;margin-top:.5rem}.c42{width:300px;margin-top:.5rem}.c43{background-color:#2b2d31;border:1px solid #202225;border-radius:.75rem;padding:.75rem;display:flex;align-items:center;gap:.75rem;max-width:400px;margin-top:.5rem;width:fit-content}.c44{width:2.5rem;height:2.5rem;fill:#b9bbbe;flex-shrink:0}.c45{display:flex;flex-direction:column;gap:.1rem;overflow:hidden;flex-grow:1}.c46{color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.c47{font-size:.75rem;color:#72767d}.c48{display:block;flex-shrink:0}.c49{width:1.5rem;height:1.5rem;fill:#b9bbbe;transition:fill .2s ease}.c48:hover .c49{fill:#fff}.c50{position:relative;display:inline-block;border-radius:.5rem;overflow:hidden;cursor:pointer}.c50 .c51{filter:blur(64px);pointer-events:none;transition:filter .2s ease;width:100%;height:100%}.c50 .c52{position:absolute;inset:0;background:rgba(32,34,37,.85);color:#fff;font-weight:600;letter-spacing:.05em;display:flex;align-items:center;justify-content:center;z-index:2;user-select:none}.c50.revealed .c51{filter:none;pointer-events:auto}.c50.revealed .c52{display:none}.c53{display:flex;gap:.5rem;margin-top:.5rem}.c54{display:flex;align-items:center;gap:.5rem;padding:0 .8rem;height:2.5rem;border-radius:.6rem;color:white;font-weight:600;cursor:pointer;transition:filter .2s ease}.c54:hover{filter:brightness(1.1)}.c55{font-size:1.25rem}.c56{font-size:.875rem}.c57{display:flex;align-items:center;gap:.5rem;color:white;font-weight:600}.c58{width:1.25rem;height:1.25rem}.c59{width:100%;position:relative}.c60{background-color:#2b2d31;border:1px solid #202225;border-radius:.75rem;padding:.75rem;min-width:17.5rem;cursor:pointer;user-select:none}.c61{color:#808080}.c62{display:none;position:absolute;top:100%;left:0;width:100%;background-color:#2b2d31;border:1px solid #202225;border-radius:1rem;margin-top:.25rem;padding:.5rem;z-index:10;box-sizing:border-box}.c59.active .c62{display:block}.c63{display:flex;align-items:center;gap:.5rem;padding:.75rem;border-radius:.75rem;cursor:pointer;transition:background-color .2s ease}.c63:hover{background-color:#4f545c}.c64{font-size:1.25rem}.c65{display:flex;flex-direction:column}.c66{font-weight:500}.c67{font-size:.75rem;color:#808080}.c68{display:flex;flex-wrap:wrap;gap:.25rem;width:100%;max-width:40rem;aspect-ratio:1/1;border:1px solid #202225;padding:.35rem;overflow:hidden}.c69{flex-grow:1;flex-basis:0;min-width:30%;display:flex}.c70{width:100%;height:100%;object-fit:cover;display:block;border-radius:1rem}.c71{background-color:#2b2d31;border-radius:.5rem;padding:1rem;max-width:40rem;min-width:30rem;border-left:.25rem solid}.c72{display:flex;flex-direction:row;justify-content:space-between;padding:.5rem 0}.c73{margin-right:.5rem;margin-left:1rem}.c74{width:5rem;height:5rem;border-radius:.5rem}.c75{padding:.5rem 0}.c76{border:1px solid #808080}.c77{background-color:#2b2d31;border-radius:.5rem;padding:1rem;margin-top:.5rem;max-width:40rem;min-width:25rem}.c78{font-size:1.1rem;font-weight:700;margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}.c79{display:flex;flex-direction:column;gap:.5rem}.c80{background-color:#3a3c42;border-radius:.3rem;padding:.75rem;cursor:pointer;border:1px solid transparent;transition:border-color .2s ease;position:relative;overflow:hidden}.c80:hover{border-color:#4d515a}.c81{position:absolute;top:0;left:0;height:100%;background-color:#5664fa7a;border-radius:.2rem;z-index:1}.c82{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between}.c83{display:flex;align-items:center;gap:.5rem}.c84{font-size:1.25rem}.c85{font-weight:500}.c86{font-size:.8rem;color:#b5bac1;font-weight:700}.c87{margin-top:1rem;font-size:.75rem;color:#949ba4}.c88{background-color:#2b2d31;border-radius:.5rem;padding:1rem;margin-top:.5rem;border:1px solid #3a3c42;min-width:20rem;max-width:40rem;display:flex;flex-direction:row;justify-content:space-between}.c89{display:flex;align-items:center;gap:.5rem;font-size:1rem;font-weight:600;margin-bottom:.4rem}.c90{color:#57f287;font-size:1.1em}.c91{font-size:.9rem;color:#b5bac1}.c92{margin-right:.5rem;margin-left:1rem;align-self:center}.c93{background-color:black;color:white;padding:.5rem 1rem;border-radius:.3rem;text-decoration:none;font-weight:500;transition:background-color .2s ease;cursor:pointer}.c93:hover{filter:brightness(1.1)}.c94{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.5rem}.c95{align-items:center;background-color:#2b2d31;border:1px solid #3a3c42;border-radius:1rem;padding:.25rem .6rem;font-size:1rem;color:#dcddde;font-weight:700;cursor:pointer}.c95:hover{filter:brightness(1.1)}";