flameresttable 1.0.106 → 1.0.107

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,1135 @@
1
+ /*
2
+ * @See https://github.com/sindresorhus/github-markdown-css/blob/main/github-markdown.css
3
+ * @Author: sindresorhus
4
+ * @Date: 2023-06-12 22:11:14
5
+ * @Last Modified by: yky
6
+ * @Last Modified time: 2023-06-12 22:11:14
7
+ */
8
+
9
+ /* stylelint-disable */
10
+ .vuetify-pro-tiptap-editor__content.markdown-theme-github {
11
+ --color-prettylights-syntax-comment: #6e7781;
12
+ --color-prettylights-syntax-constant: #0550ae;
13
+ --color-prettylights-syntax-entity: #8250df;
14
+ --color-prettylights-syntax-storage-modifier-import: #24292f;
15
+ --color-prettylights-syntax-entity-tag: #116329;
16
+ --color-prettylights-syntax-keyword: #cf222e;
17
+ --color-prettylights-syntax-string: #0a3069;
18
+ --color-prettylights-syntax-variable: #953800;
19
+ --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
20
+ --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
21
+ --color-prettylights-syntax-invalid-illegal-bg: #82071e;
22
+ --color-prettylights-syntax-carriage-return-text: #f6f8fa;
23
+ --color-prettylights-syntax-carriage-return-bg: #cf222e;
24
+ --color-prettylights-syntax-string-regexp: #116329;
25
+ --color-prettylights-syntax-markup-list: #3b2300;
26
+ --color-prettylights-syntax-markup-heading: #0550ae;
27
+ --color-prettylights-syntax-markup-italic: #24292f;
28
+ --color-prettylights-syntax-markup-bold: #24292f;
29
+ --color-prettylights-syntax-markup-deleted-text: #82071e;
30
+ --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
31
+ --color-prettylights-syntax-markup-inserted-text: #116329;
32
+ --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
33
+ --color-prettylights-syntax-markup-changed-text: #953800;
34
+ --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
35
+ --color-prettylights-syntax-markup-ignored-text: #eaeef2;
36
+ --color-prettylights-syntax-markup-ignored-bg: #0550ae;
37
+ --color-prettylights-syntax-meta-diff-range: #8250df;
38
+ --color-prettylights-syntax-brackethighlighter-angle: #57606a;
39
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
40
+ --color-prettylights-syntax-constant-other-reference-link: #0a3069;
41
+ --color-fg-default: #24292f;
42
+ --color-fg-muted: #57606a;
43
+ --color-fg-subtle: #6e7781;
44
+ --color-canvas-default: #fff;
45
+ --color-canvas-subtle: #f6f8fa;
46
+ --color-border-default: #d0d7de;
47
+ --color-border-muted: hsl(210deg 18% 87% / 100%);
48
+ --color-neutral-muted: rgb(175 184 193 / 20%);
49
+ --color-accent-fg: #0969da;
50
+ --color-accent-emphasis: #0969da;
51
+ --color-attention-subtle: #fff8c5;
52
+ --color-danger-fg: #cf222e;
53
+
54
+ margin: 0;
55
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif,
56
+ 'Apple Color Emoji', 'Segoe UI Emoji';
57
+ font-size: 16px;
58
+ line-height: 1.5;
59
+ color: var(--color-fg-default);
60
+ word-wrap: break-word;
61
+ background-color: var(--color-canvas-default);
62
+ text-size-adjust: 100%;
63
+ text-size-adjust: 100%;
64
+
65
+ &.__dark {
66
+ --color-prettylights-syntax-comment: #8b949e;
67
+ --color-prettylights-syntax-constant: #79c0ff;
68
+ --color-prettylights-syntax-entity: #d2a8ff;
69
+ --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
70
+ --color-prettylights-syntax-entity-tag: #7ee787;
71
+ --color-prettylights-syntax-keyword: #ff7b72;
72
+ --color-prettylights-syntax-string: #a5d6ff;
73
+ --color-prettylights-syntax-variable: #ffa657;
74
+ --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
75
+ --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
76
+ --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
77
+ --color-prettylights-syntax-carriage-return-text: #f0f6fc;
78
+ --color-prettylights-syntax-carriage-return-bg: #b62324;
79
+ --color-prettylights-syntax-string-regexp: #7ee787;
80
+ --color-prettylights-syntax-markup-list: #f2cc60;
81
+ --color-prettylights-syntax-markup-heading: #1f6feb;
82
+ --color-prettylights-syntax-markup-italic: #c9d1d9;
83
+ --color-prettylights-syntax-markup-bold: #c9d1d9;
84
+ --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
85
+ --color-prettylights-syntax-markup-deleted-bg: #67060c;
86
+ --color-prettylights-syntax-markup-inserted-text: #aff5b4;
87
+ --color-prettylights-syntax-markup-inserted-bg: #033a16;
88
+ --color-prettylights-syntax-markup-changed-text: #ffdfb6;
89
+ --color-prettylights-syntax-markup-changed-bg: #5a1e02;
90
+ --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
91
+ --color-prettylights-syntax-markup-ignored-bg: #1158c7;
92
+ --color-prettylights-syntax-meta-diff-range: #d2a8ff;
93
+ --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
94
+ --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
95
+ --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
96
+ --color-fg-default: #c9d1d9;
97
+ --color-fg-muted: #8b949e;
98
+ --color-fg-subtle: #6e7681;
99
+ --color-canvas-default: #212121;
100
+ --color-canvas-subtle: #161b22;
101
+ --color-border-default: #30363d;
102
+ --color-border-muted: #21262d;
103
+ --color-neutral-muted: rgb(110 118 129 / 40%);
104
+ --color-accent-fg: #58a6ff;
105
+ --color-accent-emphasis: #1f6feb;
106
+ --color-attention-subtle: rgb(187 128 9 / 15%);
107
+ --color-danger-fg: #f85149;
108
+ }
109
+
110
+ &::before {
111
+ display: table;
112
+ content: '';
113
+ }
114
+
115
+ &::after {
116
+ display: table;
117
+ clear: both;
118
+ content: '';
119
+ }
120
+
121
+ .octicon {
122
+ display: inline-block;
123
+ vertical-align: text-bottom;
124
+ fill: currentcolor;
125
+ }
126
+
127
+ h1:hover .anchor .octicon-link::before,
128
+ h2:hover .anchor .octicon-link::before,
129
+ h3:hover .anchor .octicon-link::before,
130
+ h4:hover .anchor .octicon-link::before,
131
+ h5:hover .anchor .octicon-link::before,
132
+ h6:hover .anchor .octicon-link::before {
133
+ display: inline-block;
134
+ width: 16px;
135
+ height: 16px;
136
+ content: ' ';
137
+ background-color: currentcolor;
138
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
139
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
140
+ }
141
+
142
+ details,
143
+ figcaption,
144
+ figure {
145
+ display: block;
146
+ }
147
+
148
+ summary {
149
+ display: list-item;
150
+ }
151
+
152
+ [hidden] {
153
+ display: none !important;
154
+ }
155
+
156
+ a {
157
+ color: var(--color-accent-fg);
158
+ text-decoration: none;
159
+ background-color: transparent;
160
+ }
161
+
162
+ abbr[title] {
163
+ text-decoration: underline dotted;
164
+ border-bottom: none;
165
+ }
166
+
167
+ b,
168
+ strong {
169
+ font-weight: var(--base-text-weight-semibold, 600);
170
+ }
171
+
172
+ dfn {
173
+ font-style: italic;
174
+ }
175
+
176
+ h1 {
177
+ padding-bottom: 0.3em;
178
+ margin: 0.67em 0;
179
+ font-size: 2em;
180
+ font-weight: var(--base-text-weight-semibold, 600);
181
+ border-bottom: 1px solid var(--color-border-muted);
182
+ }
183
+
184
+ mark {
185
+ color: var(--color-fg-default);
186
+ background-color: var(--color-attention-subtle);
187
+ }
188
+
189
+ small {
190
+ font-size: 90%;
191
+ }
192
+
193
+ sub,
194
+ sup {
195
+ position: relative;
196
+ font-size: 75%;
197
+ line-height: 0;
198
+ vertical-align: baseline;
199
+ }
200
+
201
+ sub {
202
+ bottom: -0.25em;
203
+ }
204
+
205
+ sup {
206
+ top: -0.5em;
207
+ }
208
+
209
+ img {
210
+ box-sizing: content-box;
211
+ max-width: 100%;
212
+ background-color: var(--color-canvas-default);
213
+ border-style: none;
214
+ display: inline-block;
215
+ float: none;
216
+
217
+ &[data-display='inline'] {
218
+ padding-right: 12px;
219
+ padding-left: 12px;
220
+ }
221
+
222
+ &[data-display='block'] {
223
+ display: block;
224
+ }
225
+
226
+ &[data-display='left'] {
227
+ float: left;
228
+ padding-right: 12px;
229
+ padding-left: 0;
230
+ }
231
+
232
+ &[data-display='right'] {
233
+ float: right;
234
+ padding-right: 0;
235
+ padding-left: 12px;
236
+ }
237
+ }
238
+
239
+ code,
240
+ kbd,
241
+ pre,
242
+ samp {
243
+ font-family: monospace;
244
+ font-size: 1em;
245
+ }
246
+
247
+ figure {
248
+ margin: 1em 40px;
249
+ }
250
+
251
+ hr {
252
+ box-sizing: content-box;
253
+ height: 0.25em;
254
+ padding: 0;
255
+ margin: 24px 0;
256
+ overflow: hidden;
257
+ background: transparent;
258
+ background-color: var(--color-border-default);
259
+ border: 0;
260
+ border-bottom: 1px solid var(--color-border-muted);
261
+ }
262
+
263
+ input {
264
+ margin: 0;
265
+ overflow: visible;
266
+ font: inherit;
267
+ font-family: inherit;
268
+ font-size: inherit;
269
+ line-height: inherit;
270
+ }
271
+
272
+ [type='button'],
273
+ [type='reset'],
274
+ [type='submit'] {
275
+ appearance: button;
276
+ }
277
+
278
+ [type='checkbox'],
279
+ [type='radio'] {
280
+ box-sizing: border-box;
281
+ padding: 0;
282
+ }
283
+
284
+ [type='number']::-webkit-inner-spin-button,
285
+ [type='number']::-webkit-outer-spin-button {
286
+ height: auto;
287
+ }
288
+
289
+ [type='search']::-webkit-search-cancel-button,
290
+ [type='search']::-webkit-search-decoration {
291
+ appearance: none;
292
+ }
293
+
294
+ ::input-placeholder {
295
+ color: inherit;
296
+ opacity: 0.54;
297
+ }
298
+
299
+ ::-webkit-file-upload-button {
300
+ font: inherit;
301
+ appearance: button;
302
+ }
303
+
304
+ a:hover {
305
+ text-decoration: underline;
306
+ }
307
+
308
+ ::placeholder {
309
+ color: var(--color-fg-subtle);
310
+ opacity: 1;
311
+ }
312
+
313
+ hr::before {
314
+ display: table;
315
+ content: '';
316
+ }
317
+
318
+ hr::after {
319
+ display: table;
320
+ clear: both;
321
+ content: '';
322
+ }
323
+
324
+ table {
325
+ display: block;
326
+ width: max-content;
327
+ max-width: 100%;
328
+ overflow: auto;
329
+ border-spacing: 0;
330
+ border-collapse: collapse;
331
+ }
332
+
333
+ td,
334
+ th {
335
+ padding: 0;
336
+ }
337
+
338
+ details summary {
339
+ cursor: pointer;
340
+ }
341
+
342
+ details:not([open])>*:not(summary) {
343
+ display: none !important;
344
+ }
345
+
346
+ a:focus,
347
+ [role='button']:focus,
348
+ input[type='radio']:focus,
349
+ input[type='checkbox']:focus {
350
+ outline: 2px solid var(--color-accent-fg);
351
+ outline-offset: -2px;
352
+ box-shadow: none;
353
+ }
354
+
355
+ a:focus:not(:focus-visible),
356
+ [role='button']:focus:not(:focus-visible),
357
+ input[type='radio']:focus:not(:focus-visible),
358
+ input[type='checkbox']:focus:not(:focus-visible) {
359
+ outline: solid 1px transparent;
360
+ }
361
+
362
+ a:focus-visible,
363
+ [role='button']:focus-visible,
364
+ input[type='radio']:focus-visible,
365
+ input[type='checkbox']:focus-visible {
366
+ outline: 2px solid var(--color-accent-fg);
367
+ outline-offset: -2px;
368
+ box-shadow: none;
369
+ }
370
+
371
+ a:not([class]):focus,
372
+ a:not([class]):focus-visible,
373
+ input[type='radio']:focus,
374
+ input[type='radio']:focus-visible,
375
+ input[type='checkbox']:focus,
376
+ input[type='checkbox']:focus-visible {
377
+ outline-offset: 0;
378
+ }
379
+
380
+ kbd {
381
+ display: inline-block;
382
+ padding: 3px 5px;
383
+ font:
384
+ 11px ui-monospace,
385
+ SFMono-Regular,
386
+ 'SF Mono',
387
+ Menlo,
388
+ Consolas,
389
+ 'Liberation Mono',
390
+ monospace;
391
+ line-height: 10px;
392
+ color: var(--color-fg-default);
393
+ vertical-align: middle;
394
+ background-color: var(--color-canvas-subtle);
395
+ border: solid 1px var(--color-neutral-muted);
396
+ border-bottom-color: var(--color-neutral-muted);
397
+ border-radius: 6px;
398
+ box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
399
+ }
400
+
401
+ h1,
402
+ h2,
403
+ h3,
404
+ h4,
405
+ h5,
406
+ h6 {
407
+ margin-top: 24px;
408
+ margin-bottom: 16px;
409
+ font-weight: var(--base-text-weight-semibold, 600);
410
+ line-height: 1.25;
411
+ }
412
+
413
+ h2 {
414
+ padding-bottom: 0.3em;
415
+ font-size: 1.5em;
416
+ font-weight: var(--base-text-weight-semibold, 600);
417
+ border-bottom: 1px solid var(--color-border-muted);
418
+ }
419
+
420
+ h3 {
421
+ font-size: 1.25em;
422
+ font-weight: var(--base-text-weight-semibold, 600);
423
+ }
424
+
425
+ h4 {
426
+ font-size: 1em;
427
+ font-weight: var(--base-text-weight-semibold, 600);
428
+ }
429
+
430
+ h5 {
431
+ font-size: 0.875em;
432
+ font-weight: var(--base-text-weight-semibold, 600);
433
+ }
434
+
435
+ h6 {
436
+ font-size: 0.85em;
437
+ font-weight: var(--base-text-weight-semibold, 600);
438
+ color: var(--color-fg-muted);
439
+ }
440
+
441
+ p {
442
+ margin-top: 0;
443
+ margin-bottom: 10px;
444
+
445
+ &:empty::after {
446
+ content: '\00A0';
447
+ }
448
+ }
449
+
450
+ blockquote {
451
+ padding: 0 1em;
452
+ margin: 0;
453
+ color: var(--color-fg-muted);
454
+ border-left: 0.25em solid var(--color-border-default);
455
+ }
456
+
457
+ ul,
458
+ ol {
459
+ padding-left: 2em;
460
+ margin-top: 0;
461
+ margin-bottom: 0;
462
+ }
463
+
464
+ ol ol,
465
+ ul ol {
466
+ list-style-type: lower-roman;
467
+ }
468
+
469
+ ul ul ol,
470
+ ul ol ol,
471
+ ol ul ol,
472
+ ol ol ol {
473
+ list-style-type: lower-alpha;
474
+ }
475
+
476
+ dd {
477
+ margin-left: 0;
478
+ }
479
+
480
+ tt,
481
+ code,
482
+ samp {
483
+ font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
484
+ font-size: 12px;
485
+ }
486
+
487
+ pre {
488
+ margin-top: 0;
489
+ margin-bottom: 0;
490
+ font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
491
+ font-size: 12px;
492
+ word-wrap: normal;
493
+ }
494
+
495
+ .octicon {
496
+ display: inline-block;
497
+ overflow: visible !important;
498
+ vertical-align: text-bottom;
499
+ fill: currentcolor;
500
+ }
501
+
502
+ input::-webkit-outer-spin-button,
503
+ input::-webkit-inner-spin-button {
504
+ margin: 0;
505
+ appearance: none;
506
+ appearance: none;
507
+ }
508
+
509
+ >*:first-child {
510
+ margin-top: 0 !important;
511
+ }
512
+
513
+ >*:last-child {
514
+ margin-bottom: 0 !important;
515
+ }
516
+
517
+ a:not([href]) {
518
+ color: inherit;
519
+ text-decoration: none;
520
+ }
521
+
522
+ .absent {
523
+ color: var(--color-danger-fg);
524
+ }
525
+
526
+ .anchor {
527
+ float: left;
528
+ padding-right: 4px;
529
+ margin-left: -20px;
530
+ line-height: 1;
531
+ }
532
+
533
+ .anchor:focus {
534
+ outline: none;
535
+ }
536
+
537
+ p,
538
+ blockquote,
539
+ ul,
540
+ ol,
541
+ dl,
542
+ table,
543
+ pre,
544
+ details {
545
+ margin-top: 0;
546
+ margin-bottom: 16px;
547
+ }
548
+
549
+ blockquote> :first-child {
550
+ margin-top: 0;
551
+ }
552
+
553
+ blockquote> :last-child {
554
+ margin-bottom: 0;
555
+ }
556
+
557
+ h1 .octicon-link,
558
+ h2 .octicon-link,
559
+ h3 .octicon-link,
560
+ h4 .octicon-link,
561
+ h5 .octicon-link,
562
+ h6 .octicon-link {
563
+ color: var(--color-fg-default);
564
+ vertical-align: middle;
565
+ visibility: hidden;
566
+ }
567
+
568
+ h1:hover .anchor,
569
+ h2:hover .anchor,
570
+ h3:hover .anchor,
571
+ h4:hover .anchor,
572
+ h5:hover .anchor,
573
+ h6:hover .anchor {
574
+ text-decoration: none;
575
+ }
576
+
577
+ h1:hover .anchor .octicon-link,
578
+ h2:hover .anchor .octicon-link,
579
+ h3:hover .anchor .octicon-link,
580
+ h4:hover .anchor .octicon-link,
581
+ h5:hover .anchor .octicon-link,
582
+ h6:hover .anchor .octicon-link {
583
+ visibility: visible;
584
+ }
585
+
586
+ h1 tt,
587
+ h1 code,
588
+ h2 tt,
589
+ h2 code,
590
+ h3 tt,
591
+ h3 code,
592
+ h4 tt,
593
+ h4 code,
594
+ h5 tt,
595
+ h5 code,
596
+ h6 tt,
597
+ h6 code {
598
+ padding: 0 0.2em;
599
+ font-size: inherit;
600
+ }
601
+
602
+ summary h1,
603
+ summary h2,
604
+ summary h3,
605
+ summary h4,
606
+ summary h5,
607
+ summary h6 {
608
+ display: inline-block;
609
+ }
610
+
611
+ summary h1 .anchor,
612
+ summary h2 .anchor,
613
+ summary h3 .anchor,
614
+ summary h4 .anchor,
615
+ summary h5 .anchor,
616
+ summary h6 .anchor {
617
+ margin-left: -40px;
618
+ }
619
+
620
+ summary h1,
621
+ summary h2 {
622
+ padding-bottom: 0;
623
+ border-bottom: 0;
624
+ }
625
+
626
+ ul.no-list,
627
+ ol.no-list {
628
+ padding: 0;
629
+ list-style-type: none;
630
+ }
631
+
632
+ ol[type='a'] {
633
+ list-style-type: lower-alpha;
634
+ }
635
+
636
+ ol[type='A'] {
637
+ list-style-type: upper-alpha;
638
+ }
639
+
640
+ ol[type='i'] {
641
+ list-style-type: lower-roman;
642
+ }
643
+
644
+ ol[type='I'] {
645
+ list-style-type: upper-roman;
646
+ }
647
+
648
+ ol[type='1'] {
649
+ list-style-type: decimal;
650
+ }
651
+
652
+ div>ol:not([type]) {
653
+ list-style-type: decimal;
654
+ }
655
+
656
+ ul ul,
657
+ ul ol,
658
+ ol ol,
659
+ ol ul {
660
+ margin-top: 0;
661
+ margin-bottom: 0;
662
+ }
663
+
664
+ li>p {
665
+ margin-top: 16px;
666
+ }
667
+
668
+ li+li {
669
+ margin-top: 0.25em;
670
+ }
671
+
672
+ dl {
673
+ padding: 0;
674
+ }
675
+
676
+ dl dt {
677
+ padding: 0;
678
+ margin-top: 16px;
679
+ font-size: 1em;
680
+ font-style: italic;
681
+ font-weight: var(--base-text-weight-semibold, 600);
682
+ }
683
+
684
+ dl dd {
685
+ padding: 0 16px;
686
+ margin-bottom: 16px;
687
+ }
688
+
689
+ table th {
690
+ font-weight: var(--base-text-weight-semibold, 600);
691
+ }
692
+
693
+ table th,
694
+ table td {
695
+ padding: 6px 13px;
696
+ border: 1px solid var(--color-border-default);
697
+ }
698
+
699
+ table tr {
700
+ background-color: var(--color-canvas-default);
701
+ border-top: 1px solid var(--color-border-muted);
702
+ }
703
+
704
+ table tr:nth-child(2n) {
705
+ background-color: var(--color-canvas-subtle);
706
+ }
707
+
708
+ table img {
709
+ background-color: transparent;
710
+ }
711
+
712
+ img[align='right'] {
713
+ padding-left: 20px;
714
+ }
715
+
716
+ img[align='left'] {
717
+ padding-right: 20px;
718
+ }
719
+
720
+ .emoji {
721
+ max-width: none;
722
+ vertical-align: text-top;
723
+ background-color: transparent;
724
+ }
725
+
726
+ span.frame {
727
+ display: block;
728
+ overflow: hidden;
729
+ }
730
+
731
+ span.frame>span {
732
+ display: block;
733
+ float: left;
734
+ width: auto;
735
+ padding: 7px;
736
+ margin: 13px 0 0;
737
+ overflow: hidden;
738
+ border: 1px solid var(--color-border-default);
739
+ }
740
+
741
+ span.frame span img {
742
+ display: block;
743
+ float: left;
744
+ }
745
+
746
+ span.frame span span {
747
+ display: block;
748
+ padding: 5px 0 0;
749
+ clear: both;
750
+ color: var(--color-fg-default);
751
+ }
752
+
753
+ span.align-center {
754
+ display: block;
755
+ overflow: hidden;
756
+ clear: both;
757
+ }
758
+
759
+ span.align-center>span {
760
+ display: block;
761
+ margin: 13px auto 0;
762
+ overflow: hidden;
763
+ text-align: center;
764
+ }
765
+
766
+ span.align-center span img {
767
+ margin: 0 auto;
768
+ text-align: center;
769
+ }
770
+
771
+ span.align-right {
772
+ display: block;
773
+ overflow: hidden;
774
+ clear: both;
775
+ }
776
+
777
+ span.align-right>span {
778
+ display: block;
779
+ margin: 13px 0 0;
780
+ overflow: hidden;
781
+ text-align: right;
782
+ }
783
+
784
+ span.align-right span img {
785
+ margin: 0;
786
+ text-align: right;
787
+ }
788
+
789
+ span.float-left {
790
+ display: block;
791
+ float: left;
792
+ margin-right: 13px;
793
+ overflow: hidden;
794
+ }
795
+
796
+ span.float-left span {
797
+ margin: 13px 0 0;
798
+ }
799
+
800
+ span.float-right {
801
+ display: block;
802
+ float: right;
803
+ margin-left: 13px;
804
+ overflow: hidden;
805
+ }
806
+
807
+ span.float-right>span {
808
+ display: block;
809
+ margin: 13px auto 0;
810
+ overflow: hidden;
811
+ text-align: right;
812
+ }
813
+
814
+ code,
815
+ tt {
816
+ padding: 0.2em 0.4em;
817
+ margin: 0;
818
+ font-size: 85%;
819
+ white-space: break-spaces;
820
+ background-color: var(--color-neutral-muted);
821
+ border-radius: 6px;
822
+ }
823
+
824
+ code br,
825
+ tt br {
826
+ display: none;
827
+ }
828
+
829
+ del code {
830
+ text-decoration: inherit;
831
+ }
832
+
833
+ samp {
834
+ font-size: 85%;
835
+ }
836
+
837
+ pre code {
838
+ font-size: 100%;
839
+ }
840
+
841
+ pre>code {
842
+ padding: 0;
843
+ margin: 0;
844
+ word-break: normal;
845
+ white-space: pre;
846
+ background: transparent;
847
+ border: 0;
848
+ }
849
+
850
+ .highlight {
851
+ margin-bottom: 16px;
852
+ }
853
+
854
+ .highlight pre {
855
+ margin-bottom: 0;
856
+ word-break: normal;
857
+ }
858
+
859
+ .highlight pre,
860
+ pre {
861
+ padding: 16px;
862
+ overflow: auto;
863
+ font-size: 85%;
864
+ line-height: 1.45;
865
+ background-color: var(--color-canvas-subtle);
866
+ border-radius: 6px;
867
+ }
868
+
869
+ pre code,
870
+ pre tt {
871
+ display: inline;
872
+ max-width: auto;
873
+ padding: 0;
874
+ margin: 0;
875
+ overflow: visible;
876
+ line-height: inherit;
877
+ word-wrap: normal;
878
+ background-color: transparent;
879
+ border: 0;
880
+ }
881
+
882
+ .csv-data td,
883
+ .csv-data th {
884
+ padding: 5px;
885
+ overflow: hidden;
886
+ font-size: 12px;
887
+ line-height: 1;
888
+ text-align: left;
889
+ white-space: nowrap;
890
+ }
891
+
892
+ .csv-data .blob-num {
893
+ padding: 10px 8px 9px;
894
+ text-align: right;
895
+ background: var(--color-canvas-default);
896
+ border: 0;
897
+ }
898
+
899
+ .csv-data tr {
900
+ border-top: 0;
901
+ }
902
+
903
+ .csv-data th {
904
+ font-weight: var(--base-text-weight-semibold, 600);
905
+ background: var(--color-canvas-subtle);
906
+ border-top: 0;
907
+ }
908
+
909
+ [data-footnote-ref]::before {
910
+ content: '[';
911
+ }
912
+
913
+ [data-footnote-ref]::after {
914
+ content: ']';
915
+ }
916
+
917
+ .footnotes {
918
+ font-size: 12px;
919
+ color: var(--color-fg-muted);
920
+ border-top: 1px solid var(--color-border-default);
921
+ }
922
+
923
+ .footnotes ol {
924
+ padding-left: 16px;
925
+ }
926
+
927
+ .footnotes ol ul {
928
+ display: inline-block;
929
+ padding-left: 16px;
930
+ margin-top: 16px;
931
+ }
932
+
933
+ .footnotes li {
934
+ position: relative;
935
+ }
936
+
937
+ .footnotes li:target::before {
938
+ position: absolute;
939
+ inset: -8px -8px -8px -24px;
940
+ pointer-events: none;
941
+ content: '';
942
+ border: 2px solid var(--color-accent-emphasis);
943
+ border-radius: 6px;
944
+ }
945
+
946
+ .footnotes li:target {
947
+ color: var(--color-fg-default);
948
+ }
949
+
950
+ .footnotes .data-footnote-backref g-emoji {
951
+ font-family: monospace;
952
+ }
953
+
954
+ .pl-c {
955
+ color: var(--color-prettylights-syntax-comment);
956
+ }
957
+
958
+ .pl-c1,
959
+ .pl-s .pl-v {
960
+ color: var(--color-prettylights-syntax-constant);
961
+ }
962
+
963
+ .pl-e,
964
+ .pl-en {
965
+ color: var(--color-prettylights-syntax-entity);
966
+ }
967
+
968
+ .pl-smi,
969
+ .pl-s .pl-s1 {
970
+ color: var(--color-prettylights-syntax-storage-modifier-import);
971
+ }
972
+
973
+ .pl-ent {
974
+ color: var(--color-prettylights-syntax-entity-tag);
975
+ }
976
+
977
+ .pl-k {
978
+ color: var(--color-prettylights-syntax-keyword);
979
+ }
980
+
981
+ .pl-s,
982
+ .pl-pds,
983
+ .pl-s .pl-pse .pl-s1,
984
+ .pl-sr,
985
+ .pl-sr .pl-cce,
986
+ .pl-sr .pl-sre,
987
+ .pl-sr .pl-sra {
988
+ color: var(--color-prettylights-syntax-string);
989
+ }
990
+
991
+ .pl-v,
992
+ .pl-smw {
993
+ color: var(--color-prettylights-syntax-variable);
994
+ }
995
+
996
+ .pl-bu {
997
+ color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
998
+ }
999
+
1000
+ .pl-ii {
1001
+ color: var(--color-prettylights-syntax-invalid-illegal-text);
1002
+ background-color: var(--color-prettylights-syntax-invalid-illegal-bg);
1003
+ }
1004
+
1005
+ .pl-c2 {
1006
+ color: var(--color-prettylights-syntax-carriage-return-text);
1007
+ background-color: var(--color-prettylights-syntax-carriage-return-bg);
1008
+ }
1009
+
1010
+ .pl-sr .pl-cce {
1011
+ font-weight: bold;
1012
+ color: var(--color-prettylights-syntax-string-regexp);
1013
+ }
1014
+
1015
+ .pl-ml {
1016
+ color: var(--color-prettylights-syntax-markup-list);
1017
+ }
1018
+
1019
+ .pl-mh,
1020
+ .pl-mh .pl-en,
1021
+ .pl-ms {
1022
+ font-weight: bold;
1023
+ color: var(--color-prettylights-syntax-markup-heading);
1024
+ }
1025
+
1026
+ .pl-mi {
1027
+ font-style: italic;
1028
+ color: var(--color-prettylights-syntax-markup-italic);
1029
+ }
1030
+
1031
+ .pl-mb {
1032
+ font-weight: bold;
1033
+ color: var(--color-prettylights-syntax-markup-bold);
1034
+ }
1035
+
1036
+ .pl-md {
1037
+ color: var(--color-prettylights-syntax-markup-deleted-text);
1038
+ background-color: var(--color-prettylights-syntax-markup-deleted-bg);
1039
+ }
1040
+
1041
+ .pl-mi1 {
1042
+ color: var(--color-prettylights-syntax-markup-inserted-text);
1043
+ background-color: var(--color-prettylights-syntax-markup-inserted-bg);
1044
+ }
1045
+
1046
+ .pl-mc {
1047
+ color: var(--color-prettylights-syntax-markup-changed-text);
1048
+ background-color: var(--color-prettylights-syntax-markup-changed-bg);
1049
+ }
1050
+
1051
+ .pl-mi2 {
1052
+ color: var(--color-prettylights-syntax-markup-ignored-text);
1053
+ background-color: var(--color-prettylights-syntax-markup-ignored-bg);
1054
+ }
1055
+
1056
+ .pl-mdr {
1057
+ font-weight: bold;
1058
+ color: var(--color-prettylights-syntax-meta-diff-range);
1059
+ }
1060
+
1061
+ .pl-ba {
1062
+ color: var(--color-prettylights-syntax-brackethighlighter-angle);
1063
+ }
1064
+
1065
+ .pl-sg {
1066
+ color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
1067
+ }
1068
+
1069
+ .pl-corl {
1070
+ color: var(--color-prettylights-syntax-constant-other-reference-link);
1071
+ text-decoration: underline;
1072
+ }
1073
+
1074
+ g-emoji {
1075
+ display: inline-block;
1076
+ min-width: 1ch;
1077
+ font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
1078
+ font-size: 1em;
1079
+ font-style: normal !important;
1080
+ font-weight: var(--base-text-weight-normal, 400);
1081
+ line-height: 1;
1082
+ vertical-align: -0.075em;
1083
+ }
1084
+
1085
+ g-emoji img {
1086
+ width: 1em;
1087
+ height: 1em;
1088
+ }
1089
+
1090
+ .task-list-item {
1091
+ list-style-type: none;
1092
+ }
1093
+
1094
+ .task-list-item label {
1095
+ font-weight: var(--base-text-weight-normal, 400);
1096
+ }
1097
+
1098
+ .task-list-item.enabled label {
1099
+ cursor: pointer;
1100
+ }
1101
+
1102
+ .task-list-item+.task-list-item {
1103
+ margin-top: 4px;
1104
+ }
1105
+
1106
+ .task-list-item .handle {
1107
+ display: none;
1108
+ }
1109
+
1110
+ .task-list-item-checkbox {
1111
+ margin: 0 0.2em 0.25em -1.4em;
1112
+ vertical-align: middle;
1113
+ }
1114
+
1115
+ .contains-task-list:dir(rtl) .task-list-item-checkbox {
1116
+ margin: 0 -1.6em 0.25em 0.2em;
1117
+ }
1118
+
1119
+ .contains-task-list {
1120
+ position: relative;
1121
+ }
1122
+
1123
+ .contains-task-list:hover .task-list-item-convert-container,
1124
+ .contains-task-list:focus-within .task-list-item-convert-container {
1125
+ display: block;
1126
+ width: auto;
1127
+ height: 24px;
1128
+ overflow: visible;
1129
+ clip: auto;
1130
+ }
1131
+
1132
+ &::-webkit-calendar-picker-indicator {
1133
+ filter: invert(50%);
1134
+ }
1135
+ }