hyperclayjs 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.
Files changed (56) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +360 -0
  3. package/README.template.md +276 -0
  4. package/communication/behaviorCollector.js +230 -0
  5. package/communication/sendMessage.js +48 -0
  6. package/communication/uploadFile.js +348 -0
  7. package/core/adminContenteditable.js +36 -0
  8. package/core/adminInputs.js +58 -0
  9. package/core/adminOnClick.js +31 -0
  10. package/core/adminResources.js +33 -0
  11. package/core/adminSystem.js +15 -0
  12. package/core/editmode.js +8 -0
  13. package/core/editmodeSystem.js +18 -0
  14. package/core/enablePersistentFormInputValues.js +62 -0
  15. package/core/isAdminOfCurrentResource.js +13 -0
  16. package/core/optionVisibilityRuleGenerator.js +160 -0
  17. package/core/savePage.js +196 -0
  18. package/core/savePageCore.js +236 -0
  19. package/core/setPageTypeOnDocumentElement.js +23 -0
  20. package/custom-attributes/ajaxElements.js +94 -0
  21. package/custom-attributes/autosize.js +17 -0
  22. package/custom-attributes/domHelpers.js +175 -0
  23. package/custom-attributes/events.js +15 -0
  24. package/custom-attributes/inputHelpers.js +11 -0
  25. package/custom-attributes/onclickaway.js +27 -0
  26. package/custom-attributes/onclone.js +35 -0
  27. package/custom-attributes/onpagemutation.js +20 -0
  28. package/custom-attributes/onrender.js +30 -0
  29. package/custom-attributes/preventEnter.js +13 -0
  30. package/custom-attributes/sortable.js +76 -0
  31. package/dom-utilities/All.js +412 -0
  32. package/dom-utilities/getDataFromForm.js +60 -0
  33. package/dom-utilities/insertStyleTag.js +28 -0
  34. package/dom-utilities/onDomReady.js +7 -0
  35. package/dom-utilities/onLoad.js +7 -0
  36. package/hyperclay.js +465 -0
  37. package/module-dependency-graph.json +612 -0
  38. package/package.json +95 -0
  39. package/string-utilities/copy-to-clipboard.js +35 -0
  40. package/string-utilities/emmet-html.js +54 -0
  41. package/string-utilities/query.js +1 -0
  42. package/string-utilities/slugify.js +21 -0
  43. package/ui/info.js +39 -0
  44. package/ui/prompts.js +179 -0
  45. package/ui/theModal.js +677 -0
  46. package/ui/toast.js +273 -0
  47. package/utilities/cookie.js +45 -0
  48. package/utilities/debounce.js +12 -0
  49. package/utilities/mutation.js +403 -0
  50. package/utilities/nearest.js +97 -0
  51. package/utilities/pipe.js +1 -0
  52. package/utilities/throttle.js +21 -0
  53. package/vendor/Sortable.js +3351 -0
  54. package/vendor/idiomorph.min.js +8 -0
  55. package/vendor/tailwind-base.css +1471 -0
  56. package/vendor/tailwind-play.js +169 -0
@@ -0,0 +1,1471 @@
1
+ /* FILE CHANGED (search "FILE CHANGED" to see where)
2
+ - removed padding left from unordered lists so they line up with ordered lists
3
+ - changed color of ordered list markers to match unordered list markers
4
+ */
5
+
6
+ /*
7
+
8
+ Includes:
9
+ • Tailwind Reset
10
+ • Plugin: Typography (.prose)
11
+ • Plugin: Form Reset (.form-input, .form-textarea, .form-select, .form-multiselect, .form-radio, .form-checkbox)
12
+ • Plugin: Line Clamp (.line-clamp-[1-6])
13
+
14
+
15
+ */
16
+
17
+ /*
18
+ ! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
19
+ */
20
+
21
+ /*
22
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
23
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
24
+ */
25
+
26
+ *,
27
+ ::before,
28
+ ::after {
29
+ box-sizing: border-box;
30
+ /* 1 */
31
+ border-width: 0;
32
+ /* 2 */
33
+ border-style: solid;
34
+ /* 2 */
35
+ border-color: #e5e7eb;
36
+ /* 2 */
37
+ }
38
+
39
+ ::before,
40
+ ::after {
41
+ --tw-content: '';
42
+ }
43
+
44
+ /*
45
+ 1. Use a consistent sensible line-height in all browsers.
46
+ 2. Prevent adjustments of font size after orientation changes in iOS.
47
+ 3. Use a more readable tab size.
48
+ 4. Use the user's configured `sans` font-family by default.
49
+ 5. Use the user's configured `sans` font-feature-settings by default.
50
+ */
51
+
52
+ html {
53
+ line-height: 1.5;
54
+ /* 1 */
55
+ -webkit-text-size-adjust: 100%;
56
+ /* 2 */
57
+ -moz-tab-size: 4;
58
+ /* 3 */
59
+ -o-tab-size: 4;
60
+ tab-size: 4;
61
+ /* 3 */
62
+ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
63
+ /* 4 */
64
+ font-feature-settings: normal;
65
+ /* 5 */
66
+ }
67
+
68
+ /*
69
+ 1. Remove the margin in all browsers.
70
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
71
+ */
72
+
73
+ body {
74
+ margin: 0;
75
+ /* 1 */
76
+ line-height: inherit;
77
+ /* 2 */
78
+ }
79
+
80
+ /*
81
+ 1. Add the correct height in Firefox.
82
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
83
+ 3. Ensure horizontal rules are visible by default.
84
+ */
85
+
86
+ hr {
87
+ height: 0;
88
+ /* 1 */
89
+ color: inherit;
90
+ /* 2 */
91
+ border-top-width: 1px;
92
+ /* 3 */
93
+ }
94
+
95
+ /*
96
+ Add the correct text decoration in Chrome, Edge, and Safari.
97
+ */
98
+
99
+ abbr:where([title]) {
100
+ -webkit-text-decoration: underline dotted;
101
+ text-decoration: underline dotted;
102
+ }
103
+
104
+ /*
105
+ Remove the default font size and weight for headings.
106
+ */
107
+
108
+ h1,
109
+ h2,
110
+ h3,
111
+ h4,
112
+ h5,
113
+ h6 {
114
+ font-size: inherit;
115
+ font-weight: inherit;
116
+ }
117
+
118
+ /*
119
+ Reset links to optimize for opt-in styling instead of opt-out.
120
+ */
121
+
122
+ a {
123
+ color: inherit;
124
+ text-decoration: inherit;
125
+ }
126
+
127
+ /*
128
+ Add the correct font weight in Edge and Safari.
129
+ */
130
+
131
+ b,
132
+ strong {
133
+ font-weight: bolder;
134
+ }
135
+
136
+ /*
137
+ 1. Use the user's configured `mono` font family by default.
138
+ 2. Correct the odd `em` font sizing in all browsers.
139
+ */
140
+
141
+ code,
142
+ kbd,
143
+ samp,
144
+ pre {
145
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
146
+ /* 1 */
147
+ font-size: 1em;
148
+ /* 2 */
149
+ }
150
+
151
+ /*
152
+ Add the correct font size in all browsers.
153
+ */
154
+
155
+ small {
156
+ font-size: 80%;
157
+ }
158
+
159
+ /*
160
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
161
+ */
162
+
163
+ sub,
164
+ sup {
165
+ font-size: 75%;
166
+ line-height: 0;
167
+ position: relative;
168
+ vertical-align: baseline;
169
+ }
170
+
171
+ sub {
172
+ bottom: -0.25em;
173
+ }
174
+
175
+ sup {
176
+ top: -0.5em;
177
+ }
178
+
179
+ /*
180
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
181
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
182
+ 3. Remove gaps between table borders by default.
183
+ */
184
+
185
+ table {
186
+ text-indent: 0;
187
+ /* 1 */
188
+ border-color: inherit;
189
+ /* 2 */
190
+ border-collapse: collapse;
191
+ /* 3 */
192
+ }
193
+
194
+ /*
195
+ 1. Change the font styles in all browsers.
196
+ 2. Remove the margin in Firefox and Safari.
197
+ 3. Remove default padding in all browsers.
198
+ */
199
+
200
+ button,
201
+ input,
202
+ optgroup,
203
+ select,
204
+ textarea {
205
+ font-family: inherit;
206
+ /* 1 */
207
+ font-size: 100%;
208
+ /* 1 */
209
+ font-weight: inherit;
210
+ /* 1 */
211
+ line-height: inherit;
212
+ /* 1 */
213
+ color: inherit;
214
+ /* 1 */
215
+ margin: 0;
216
+ /* 2 */
217
+ padding: 0;
218
+ /* 3 */
219
+ }
220
+
221
+ /*
222
+ Remove the inheritance of text transform in Edge and Firefox.
223
+ */
224
+
225
+ button,
226
+ select {
227
+ text-transform: none;
228
+ }
229
+
230
+ /*
231
+ 1. Correct the inability to style clickable types in iOS and Safari.
232
+ 2. Remove default button styles.
233
+ */
234
+
235
+ button,
236
+ [type='button'],
237
+ [type='reset'],
238
+ [type='submit'] {
239
+ -webkit-appearance: button;
240
+ /* 1 */
241
+ background-color: transparent;
242
+ /* 2 */
243
+ background-image: none;
244
+ /* 2 */
245
+ }
246
+
247
+ /*
248
+ Use the modern Firefox focus style for all focusable elements.
249
+ */
250
+
251
+ :-moz-focusring {
252
+ outline: auto;
253
+ }
254
+
255
+ /*
256
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
257
+ */
258
+
259
+ :-moz-ui-invalid {
260
+ box-shadow: none;
261
+ }
262
+
263
+ /*
264
+ Add the correct vertical alignment in Chrome and Firefox.
265
+ */
266
+
267
+ progress {
268
+ vertical-align: baseline;
269
+ }
270
+
271
+ /*
272
+ Correct the cursor style of increment and decrement buttons in Safari.
273
+ */
274
+
275
+ ::-webkit-inner-spin-button,
276
+ ::-webkit-outer-spin-button {
277
+ height: auto;
278
+ }
279
+
280
+ /*
281
+ 1. Correct the odd appearance in Chrome and Safari.
282
+ 2. Correct the outline style in Safari.
283
+ */
284
+
285
+ [type='search'] {
286
+ -webkit-appearance: textfield;
287
+ /* 1 */
288
+ outline-offset: -2px;
289
+ /* 2 */
290
+ }
291
+
292
+ /*
293
+ Remove the inner padding in Chrome and Safari on macOS.
294
+ */
295
+
296
+ ::-webkit-search-decoration {
297
+ -webkit-appearance: none;
298
+ }
299
+
300
+ /*
301
+ 1. Correct the inability to style clickable types in iOS and Safari.
302
+ 2. Change font properties to `inherit` in Safari.
303
+ */
304
+
305
+ ::-webkit-file-upload-button {
306
+ -webkit-appearance: button;
307
+ /* 1 */
308
+ font: inherit;
309
+ /* 2 */
310
+ }
311
+
312
+ /*
313
+ Add the correct display in Chrome and Safari.
314
+ */
315
+
316
+ summary {
317
+ display: list-item;
318
+ }
319
+
320
+ /*
321
+ Removes the default spacing and border for appropriate elements.
322
+ */
323
+
324
+ blockquote,
325
+ dl,
326
+ dd,
327
+ h1,
328
+ h2,
329
+ h3,
330
+ h4,
331
+ h5,
332
+ h6,
333
+ hr,
334
+ figure,
335
+ p,
336
+ pre {
337
+ margin: 0;
338
+ }
339
+
340
+ fieldset {
341
+ margin: 0;
342
+ padding: 0;
343
+ }
344
+
345
+ legend {
346
+ padding: 0;
347
+ }
348
+
349
+ ol,
350
+ ul,
351
+ menu {
352
+ list-style: none;
353
+ margin: 0;
354
+ padding: 0;
355
+ }
356
+
357
+ /*
358
+ Prevent resizing textareas horizontally by default.
359
+ */
360
+
361
+ textarea {
362
+ resize: vertical;
363
+ }
364
+
365
+ /*
366
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
367
+ 2. Set the default placeholder color to the user's configured gray 400 color.
368
+ */
369
+
370
+ input::-moz-placeholder, textarea::-moz-placeholder {
371
+ opacity: 1;
372
+ /* 1 */
373
+ color: #9ca3af;
374
+ /* 2 */
375
+ }
376
+
377
+ input::placeholder,
378
+ textarea::placeholder {
379
+ opacity: 1;
380
+ /* 1 */
381
+ color: #9ca3af;
382
+ /* 2 */
383
+ }
384
+
385
+ /*
386
+ Set the default cursor for buttons.
387
+ */
388
+
389
+ button,
390
+ [role="button"] {
391
+ cursor: pointer;
392
+ }
393
+
394
+ /*
395
+ Make sure disabled buttons don't get the pointer cursor.
396
+ */
397
+
398
+ :disabled {
399
+ cursor: default;
400
+ }
401
+
402
+ /*
403
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
404
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
405
+ This can trigger a poorly considered lint error in some tools but is included by design.
406
+ */
407
+
408
+ img,
409
+ svg,
410
+ video,
411
+ canvas,
412
+ audio,
413
+ iframe,
414
+ embed,
415
+ object {
416
+ display: block;
417
+ /* 1 */
418
+ vertical-align: middle;
419
+ /* 2 */
420
+ }
421
+
422
+ /*
423
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
424
+ */
425
+
426
+ img,
427
+ video {
428
+ max-width: 100%;
429
+ height: auto;
430
+ }
431
+
432
+ /* Make elements with the HTML hidden attribute stay hidden by default */
433
+
434
+ [hidden] {
435
+ display: none;
436
+ }
437
+
438
+ *, ::before, ::after {
439
+ --tw-border-spacing-x: 0;
440
+ --tw-border-spacing-y: 0;
441
+ --tw-translate-x: 0;
442
+ --tw-translate-y: 0;
443
+ --tw-rotate: 0;
444
+ --tw-skew-x: 0;
445
+ --tw-skew-y: 0;
446
+ --tw-scale-x: 1;
447
+ --tw-scale-y: 1;
448
+ --tw-pan-x: ;
449
+ --tw-pan-y: ;
450
+ --tw-pinch-zoom: ;
451
+ --tw-scroll-snap-strictness: proximity;
452
+ --tw-ordinal: ;
453
+ --tw-slashed-zero: ;
454
+ --tw-numeric-figure: ;
455
+ --tw-numeric-spacing: ;
456
+ --tw-numeric-fraction: ;
457
+ --tw-ring-inset: ;
458
+ --tw-ring-offset-width: 0px;
459
+ --tw-ring-offset-color: #fff;
460
+ --tw-ring-color: rgb(59 130 246 / 0.5);
461
+ --tw-ring-offset-shadow: 0 0 #0000;
462
+ --tw-ring-shadow: 0 0 #0000;
463
+ --tw-shadow: 0 0 #0000;
464
+ --tw-shadow-colored: 0 0 #0000;
465
+ --tw-blur: ;
466
+ --tw-brightness: ;
467
+ --tw-contrast: ;
468
+ --tw-grayscale: ;
469
+ --tw-hue-rotate: ;
470
+ --tw-invert: ;
471
+ --tw-saturate: ;
472
+ --tw-sepia: ;
473
+ --tw-drop-shadow: ;
474
+ --tw-backdrop-blur: ;
475
+ --tw-backdrop-brightness: ;
476
+ --tw-backdrop-contrast: ;
477
+ --tw-backdrop-grayscale: ;
478
+ --tw-backdrop-hue-rotate: ;
479
+ --tw-backdrop-invert: ;
480
+ --tw-backdrop-opacity: ;
481
+ --tw-backdrop-saturate: ;
482
+ --tw-backdrop-sepia: ;
483
+ }
484
+
485
+ ::backdrop {
486
+ --tw-border-spacing-x: 0;
487
+ --tw-border-spacing-y: 0;
488
+ --tw-translate-x: 0;
489
+ --tw-translate-y: 0;
490
+ --tw-rotate: 0;
491
+ --tw-skew-x: 0;
492
+ --tw-skew-y: 0;
493
+ --tw-scale-x: 1;
494
+ --tw-scale-y: 1;
495
+ --tw-pan-x: ;
496
+ --tw-pan-y: ;
497
+ --tw-pinch-zoom: ;
498
+ --tw-scroll-snap-strictness: proximity;
499
+ --tw-ordinal: ;
500
+ --tw-slashed-zero: ;
501
+ --tw-numeric-figure: ;
502
+ --tw-numeric-spacing: ;
503
+ --tw-numeric-fraction: ;
504
+ --tw-ring-inset: ;
505
+ --tw-ring-offset-width: 0px;
506
+ --tw-ring-offset-color: #fff;
507
+ --tw-ring-color: rgb(59 130 246 / 0.5);
508
+ --tw-ring-offset-shadow: 0 0 #0000;
509
+ --tw-ring-shadow: 0 0 #0000;
510
+ --tw-shadow: 0 0 #0000;
511
+ --tw-shadow-colored: 0 0 #0000;
512
+ --tw-blur: ;
513
+ --tw-brightness: ;
514
+ --tw-contrast: ;
515
+ --tw-grayscale: ;
516
+ --tw-hue-rotate: ;
517
+ --tw-invert: ;
518
+ --tw-saturate: ;
519
+ --tw-sepia: ;
520
+ --tw-drop-shadow: ;
521
+ --tw-backdrop-blur: ;
522
+ --tw-backdrop-brightness: ;
523
+ --tw-backdrop-contrast: ;
524
+ --tw-backdrop-grayscale: ;
525
+ --tw-backdrop-hue-rotate: ;
526
+ --tw-backdrop-invert: ;
527
+ --tw-backdrop-opacity: ;
528
+ --tw-backdrop-saturate: ;
529
+ --tw-backdrop-sepia: ;
530
+ }
531
+
532
+ /* prose */
533
+
534
+ /*
535
+ generated with:
536
+ <div class="prose prose-slate prose-lg"></div>
537
+
538
+ then renamed `.prose-slate` and `.prose-lg` classes to `.prose`
539
+
540
+ */
541
+
542
+ .prose {
543
+ --tw-prose-body: #374151;
544
+ --tw-prose-headings: #111827;
545
+ --tw-prose-lead: #4b5563;
546
+ --tw-prose-links: #111827;
547
+ --tw-prose-bold: #111827;
548
+ --tw-prose-counters: #6b7280;
549
+ --tw-prose-bullets: #d1d5db;
550
+ --tw-prose-hr: #e5e7eb;
551
+ --tw-prose-quotes: #111827;
552
+ --tw-prose-quote-borders: #e5e7eb;
553
+ --tw-prose-captions: #6b7280;
554
+ --tw-prose-code: #111827;
555
+ --tw-prose-pre-code: #e5e7eb;
556
+ --tw-prose-pre-bg: #1f2937;
557
+ --tw-prose-th-borders: #d1d5db;
558
+ --tw-prose-td-borders: #e5e7eb;
559
+ --tw-prose-invert-body: #d1d5db;
560
+ --tw-prose-invert-headings: #fff;
561
+ --tw-prose-invert-lead: #9ca3af;
562
+ --tw-prose-invert-links: #fff;
563
+ --tw-prose-invert-bold: #fff;
564
+ --tw-prose-invert-counters: #9ca3af;
565
+ --tw-prose-invert-bullets: #4b5563;
566
+ --tw-prose-invert-hr: #374151;
567
+ --tw-prose-invert-quotes: #f3f4f6;
568
+ --tw-prose-invert-quote-borders: #374151;
569
+ --tw-prose-invert-captions: #9ca3af;
570
+ --tw-prose-invert-code: #fff;
571
+ --tw-prose-invert-pre-code: #d1d5db;
572
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
573
+ --tw-prose-invert-th-borders: #4b5563;
574
+ --tw-prose-invert-td-borders: #374151;
575
+ font-size: 1rem;
576
+ line-height: 1.75;
577
+ }
578
+
579
+ .prose {
580
+ --tw-prose-body: #334155;
581
+ --tw-prose-headings: #0f172a;
582
+ --tw-prose-lead: #475569;
583
+ --tw-prose-links: #0f172a;
584
+ --tw-prose-bold: #0f172a;
585
+ --tw-prose-counters: #64748b;
586
+ --tw-prose-bullets: #cbd5e1;
587
+ --tw-prose-hr: #e2e8f0;
588
+ --tw-prose-quotes: #0f172a;
589
+ --tw-prose-quote-borders: #e2e8f0;
590
+ --tw-prose-captions: #64748b;
591
+ --tw-prose-code: #0f172a;
592
+ --tw-prose-pre-code: #e2e8f0;
593
+ --tw-prose-pre-bg: #1e293b;
594
+ --tw-prose-th-borders: #cbd5e1;
595
+ --tw-prose-td-borders: #e2e8f0;
596
+ --tw-prose-invert-body: #cbd5e1;
597
+ --tw-prose-invert-headings: #fff;
598
+ --tw-prose-invert-lead: #94a3b8;
599
+ --tw-prose-invert-links: #fff;
600
+ --tw-prose-invert-bold: #fff;
601
+ --tw-prose-invert-counters: #94a3b8;
602
+ --tw-prose-invert-bullets: #475569;
603
+ --tw-prose-invert-hr: #334155;
604
+ --tw-prose-invert-quotes: #f1f5f9;
605
+ --tw-prose-invert-quote-borders: #334155;
606
+ --tw-prose-invert-captions: #94a3b8;
607
+ --tw-prose-invert-code: #fff;
608
+ --tw-prose-invert-pre-code: #cbd5e1;
609
+ --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
610
+ --tw-prose-invert-th-borders: #475569;
611
+ --tw-prose-invert-td-borders: #334155;
612
+ }
613
+
614
+ .prose {
615
+ color: var(--tw-prose-body);
616
+ max-width: 65ch;
617
+ }
618
+
619
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
620
+ color: var(--tw-prose-lead);
621
+ font-size: 1.25em;
622
+ line-height: 1.6;
623
+ margin-top: 1.2em;
624
+ margin-bottom: 1.2em;
625
+ }
626
+
627
+ .prose :where(a):not(:where([class~="not-prose"] *)) {
628
+ color: var(--tw-prose-links);
629
+ text-decoration: underline;
630
+ font-weight: 500;
631
+ }
632
+
633
+ .prose :where(strong):not(:where([class~="not-prose"] *)) {
634
+ color: var(--tw-prose-bold);
635
+ font-weight: 600;
636
+ }
637
+
638
+ .prose :where(a strong):not(:where([class~="not-prose"] *)) {
639
+ color: inherit;
640
+ }
641
+
642
+ .prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
643
+ color: inherit;
644
+ }
645
+
646
+ .prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
647
+ color: inherit;
648
+ }
649
+
650
+ .prose :where(ol):not(:where([class~="not-prose"] *)) {
651
+ list-style-type: decimal;
652
+ margin-top: 1.25em;
653
+ margin-bottom: 1.25em;
654
+ /* FILE CHANGED - removed padding left from unordered lists so they line up with ordered lists */
655
+ /* padding-left: 1.625em; */
656
+ }
657
+
658
+ .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
659
+ list-style-type: upper-alpha;
660
+ }
661
+
662
+ .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
663
+ list-style-type: lower-alpha;
664
+ }
665
+
666
+ .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
667
+ list-style-type: upper-alpha;
668
+ }
669
+
670
+ .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
671
+ list-style-type: lower-alpha;
672
+ }
673
+
674
+ .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
675
+ list-style-type: upper-roman;
676
+ }
677
+
678
+ .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
679
+ list-style-type: lower-roman;
680
+ }
681
+
682
+ .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
683
+ list-style-type: upper-roman;
684
+ }
685
+
686
+ .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
687
+ list-style-type: lower-roman;
688
+ }
689
+
690
+ .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
691
+ list-style-type: decimal;
692
+ }
693
+
694
+ .prose :where(ul):not(:where([class~="not-prose"] *)) {
695
+ list-style-type: disc;
696
+ margin-top: 1.25em;
697
+ margin-bottom: 1.25em;
698
+ padding-left: 1.625em;
699
+ }
700
+
701
+ .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
702
+ font-weight: 400;
703
+ color: var(--tw-prose-counters);
704
+ }
705
+
706
+ /* FILE CHANGED - styling ordered lists the same as bullet lists */
707
+ .prose :where(ol > li):not(:where([class~="not-prose"] *))::before {
708
+ font-weight: 400;
709
+ color: var(--tw-prose-counters);
710
+ }
711
+
712
+ .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
713
+ color: var(--tw-prose-bullets);
714
+ }
715
+
716
+ .prose :where(hr):not(:where([class~="not-prose"] *)) {
717
+ border-color: var(--tw-prose-hr);
718
+ border-top-width: 1px;
719
+ margin-top: 3em;
720
+ margin-bottom: 3em;
721
+ }
722
+
723
+ .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
724
+ font-weight: 500;
725
+ font-style: italic;
726
+ color: var(--tw-prose-quotes);
727
+ border-left-width: 0.25rem;
728
+ border-left-color: var(--tw-prose-quote-borders);
729
+ quotes: "\201C""\201D""\2018""\2019";
730
+ margin-top: 1.6em;
731
+ margin-bottom: 1.6em;
732
+ padding-left: 1em;
733
+ }
734
+
735
+ .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
736
+ content: open-quote;
737
+ }
738
+
739
+ .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
740
+ content: close-quote;
741
+ }
742
+
743
+ .prose :where(h1):not(:where([class~="not-prose"] *)) {
744
+ color: var(--tw-prose-headings);
745
+ font-weight: 800;
746
+ font-size: 2.25em;
747
+ margin-top: 0;
748
+ margin-bottom: 0.8888889em;
749
+ line-height: 1.1111111;
750
+ }
751
+
752
+ .prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
753
+ font-weight: 900;
754
+ color: inherit;
755
+ }
756
+
757
+ .prose :where(h2):not(:where([class~="not-prose"] *)) {
758
+ color: var(--tw-prose-headings);
759
+ font-weight: 700;
760
+ font-size: 1.5em;
761
+ margin-top: 2em;
762
+ margin-bottom: 1em;
763
+ line-height: 1.3333333;
764
+ }
765
+
766
+ .prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
767
+ font-weight: 800;
768
+ color: inherit;
769
+ }
770
+
771
+ .prose :where(h3):not(:where([class~="not-prose"] *)) {
772
+ color: var(--tw-prose-headings);
773
+ font-weight: 600;
774
+ font-size: 1.25em;
775
+ margin-top: 1.6em;
776
+ margin-bottom: 0.6em;
777
+ line-height: 1.6;
778
+ }
779
+
780
+ .prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
781
+ font-weight: 700;
782
+ color: inherit;
783
+ }
784
+
785
+ .prose :where(h4):not(:where([class~="not-prose"] *)) {
786
+ color: var(--tw-prose-headings);
787
+ font-weight: 600;
788
+ margin-top: 1.5em;
789
+ margin-bottom: 0.5em;
790
+ line-height: 1.5;
791
+ }
792
+
793
+ .prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
794
+ font-weight: 700;
795
+ color: inherit;
796
+ }
797
+
798
+ .prose :where(img):not(:where([class~="not-prose"] *)) {
799
+ margin-top: 2em;
800
+ margin-bottom: 2em;
801
+ }
802
+
803
+ .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
804
+ margin-top: 0;
805
+ margin-bottom: 0;
806
+ }
807
+
808
+ .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
809
+ color: var(--tw-prose-captions);
810
+ font-size: 0.875em;
811
+ line-height: 1.4285714;
812
+ margin-top: 0.8571429em;
813
+ }
814
+
815
+ .prose :where(code):not(:where([class~="not-prose"] *)) {
816
+ color: var(--tw-prose-code);
817
+ font-weight: 600;
818
+ font-size: 0.875em;
819
+ }
820
+
821
+ /*.prose :where(code):not(:where([class~="not-prose"] *))::before {
822
+ content: "`";
823
+ }
824
+
825
+ .prose :where(code):not(:where([class~="not-prose"] *))::after {
826
+ content: "`";
827
+ }*/
828
+
829
+ .prose :where(a code):not(:where([class~="not-prose"] *)) {
830
+ color: inherit;
831
+ }
832
+
833
+ .prose :where(h1 code):not(:where([class~="not-prose"] *)) {
834
+ color: inherit;
835
+ }
836
+
837
+ .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
838
+ color: inherit;
839
+ font-size: 0.875em;
840
+ }
841
+
842
+ .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
843
+ color: inherit;
844
+ font-size: 0.9em;
845
+ }
846
+
847
+ .prose :where(h4 code):not(:where([class~="not-prose"] *)) {
848
+ color: inherit;
849
+ }
850
+
851
+ .prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
852
+ color: inherit;
853
+ }
854
+
855
+ .prose :where(thead th code):not(:where([class~="not-prose"] *)) {
856
+ color: inherit;
857
+ }
858
+
859
+ .prose :where(pre):not(:where([class~="not-prose"] *)) {
860
+ color: var(--tw-prose-pre-code);
861
+ background-color: var(--tw-prose-pre-bg);
862
+ overflow-x: auto;
863
+ font-weight: 400;
864
+ font-size: 0.875em;
865
+ line-height: 1.7142857;
866
+ margin-top: 1.7142857em;
867
+ margin-bottom: 1.7142857em;
868
+ border-radius: 0.375rem;
869
+ padding-top: 0.8571429em;
870
+ padding-right: 1.1428571em;
871
+ padding-bottom: 0.8571429em;
872
+ padding-left: 1.1428571em;
873
+ }
874
+
875
+ .prose :where(pre code):not(:where([class~="not-prose"] *)) {
876
+ background-color: transparent;
877
+ border-width: 0;
878
+ border-radius: 0;
879
+ padding: 0;
880
+ font-weight: inherit;
881
+ color: inherit;
882
+ font-size: inherit;
883
+ font-family: inherit;
884
+ line-height: inherit;
885
+ }
886
+
887
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::before {
888
+ content: none;
889
+ }
890
+
891
+ .prose :where(pre code):not(:where([class~="not-prose"] *))::after {
892
+ content: none;
893
+ }
894
+
895
+ .prose :where(table):not(:where([class~="not-prose"] *)) {
896
+ width: 100%;
897
+ table-layout: auto;
898
+ text-align: left;
899
+ margin-top: 2em;
900
+ margin-bottom: 2em;
901
+ font-size: 0.875em;
902
+ line-height: 1.7142857;
903
+ }
904
+
905
+ .prose :where(thead):not(:where([class~="not-prose"] *)) {
906
+ border-bottom-width: 1px;
907
+ border-bottom-color: var(--tw-prose-th-borders);
908
+ }
909
+
910
+ .prose :where(thead th):not(:where([class~="not-prose"] *)) {
911
+ color: var(--tw-prose-headings);
912
+ font-weight: 600;
913
+ vertical-align: bottom;
914
+ padding-right: 0.5714286em;
915
+ padding-bottom: 0.5714286em;
916
+ padding-left: 0.5714286em;
917
+ }
918
+
919
+ .prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
920
+ border-bottom-width: 1px;
921
+ border-bottom-color: var(--tw-prose-td-borders);
922
+ }
923
+
924
+ .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
925
+ border-bottom-width: 0;
926
+ }
927
+
928
+ .prose :where(tbody td):not(:where([class~="not-prose"] *)) {
929
+ vertical-align: baseline;
930
+ }
931
+
932
+ .prose :where(tfoot):not(:where([class~="not-prose"] *)) {
933
+ border-top-width: 1px;
934
+ border-top-color: var(--tw-prose-th-borders);
935
+ }
936
+
937
+ .prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
938
+ vertical-align: top;
939
+ }
940
+
941
+
942
+
943
+ .prose :where(p):not(:where([class~="not-prose"] *)) {
944
+ margin-top: 1.25em;
945
+ margin-bottom: 1.25em;
946
+ }
947
+
948
+ .prose :where(video):not(:where([class~="not-prose"] *)) {
949
+ margin-top: 2em;
950
+ margin-bottom: 2em;
951
+ }
952
+
953
+ .prose :where(figure):not(:where([class~="not-prose"] *)) {
954
+ margin-top: 2em;
955
+ margin-bottom: 2em;
956
+ }
957
+
958
+ .prose :where(li):not(:where([class~="not-prose"] *)) {
959
+ margin-top: 0.5em;
960
+ margin-bottom: 0.5em;
961
+ }
962
+
963
+ .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
964
+ padding-left: 0.375em;
965
+ }
966
+
967
+ .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
968
+ padding-left: 0.375em;
969
+ }
970
+
971
+ .prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
972
+ margin-top: 0.75em;
973
+ margin-bottom: 0.75em;
974
+ }
975
+
976
+ .prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
977
+ margin-top: 1.25em;
978
+ }
979
+
980
+ .prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
981
+ margin-bottom: 1.25em;
982
+ }
983
+
984
+ .prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
985
+ margin-top: 1.25em;
986
+ }
987
+
988
+ .prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
989
+ margin-bottom: 1.25em;
990
+ }
991
+
992
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
993
+ margin-top: 0.75em;
994
+ margin-bottom: 0.75em;
995
+ }
996
+
997
+ .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
998
+ margin-top: 0;
999
+ }
1000
+
1001
+ .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
1002
+ margin-top: 0;
1003
+ }
1004
+
1005
+ .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
1006
+ margin-top: 0;
1007
+ }
1008
+
1009
+ .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
1010
+ margin-top: 0;
1011
+ }
1012
+
1013
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
1014
+ padding-left: 0;
1015
+ }
1016
+
1017
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1018
+ padding-right: 0;
1019
+ }
1020
+
1021
+ .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
1022
+ padding-top: 0.5714286em;
1023
+ padding-right: 0.5714286em;
1024
+ padding-bottom: 0.5714286em;
1025
+ padding-left: 0.5714286em;
1026
+ }
1027
+
1028
+ .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
1029
+ padding-left: 0;
1030
+ }
1031
+
1032
+ .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
1033
+ padding-right: 0;
1034
+ }
1035
+
1036
+ .prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1037
+ margin-top: 0;
1038
+ }
1039
+
1040
+ .prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1041
+ margin-bottom: 0;
1042
+ }
1043
+
1044
+ .prose {
1045
+ font-size: 1.125rem;
1046
+ line-height: 1.7777778;
1047
+ }
1048
+
1049
+ .prose :where(p):not(:where([class~="not-prose"] *)) {
1050
+ margin-top: 1.3333333em;
1051
+ margin-bottom: 1.3333333em;
1052
+ }
1053
+
1054
+ .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
1055
+ font-size: 1.2222222em;
1056
+ line-height: 1.4545455;
1057
+ margin-top: 1.0909091em;
1058
+ margin-bottom: 1.0909091em;
1059
+ }
1060
+
1061
+ .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
1062
+ margin-top: 1.6666667em;
1063
+ margin-bottom: 1.6666667em;
1064
+ padding-left: 1em;
1065
+ }
1066
+
1067
+ .prose :where(h1):not(:where([class~="not-prose"] *)) {
1068
+ font-size: 2.6666667em;
1069
+ margin-top: 0;
1070
+ margin-bottom: 0.8333333em;
1071
+ line-height: 1;
1072
+ }
1073
+
1074
+ .prose :where(h2):not(:where([class~="not-prose"] *)) {
1075
+ font-size: 1.6666667em;
1076
+ margin-top: 1.8666667em;
1077
+ margin-bottom: 1.0666667em;
1078
+ line-height: 1.3333333;
1079
+ }
1080
+
1081
+ .prose :where(h3):not(:where([class~="not-prose"] *)) {
1082
+ font-size: 1.3333333em;
1083
+ margin-top: 1.6666667em;
1084
+ margin-bottom: 0.6666667em;
1085
+ line-height: 1.5;
1086
+ }
1087
+
1088
+ .prose :where(h4):not(:where([class~="not-prose"] *)) {
1089
+ margin-top: 1.7777778em;
1090
+ margin-bottom: 0.4444444em;
1091
+ line-height: 1.5555556;
1092
+ }
1093
+
1094
+ .prose :where(img):not(:where([class~="not-prose"] *)) {
1095
+ margin-top: 1.7777778em;
1096
+ margin-bottom: 1.7777778em;
1097
+ }
1098
+
1099
+ .prose :where(video):not(:where([class~="not-prose"] *)) {
1100
+ margin-top: 1.7777778em;
1101
+ margin-bottom: 1.7777778em;
1102
+ }
1103
+
1104
+ .prose :where(figure):not(:where([class~="not-prose"] *)) {
1105
+ margin-top: 1.7777778em;
1106
+ margin-bottom: 1.7777778em;
1107
+ }
1108
+
1109
+ .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
1110
+ margin-top: 0;
1111
+ margin-bottom: 0;
1112
+ }
1113
+
1114
+ .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
1115
+ font-size: 0.8888889em;
1116
+ line-height: 1.5;
1117
+ margin-top: 1em;
1118
+ }
1119
+
1120
+ .prose :where(code):not(:where([class~="not-prose"] *)) {
1121
+ font-size: 0.8888889em;
1122
+ }
1123
+
1124
+ .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
1125
+ font-size: 0.8666667em;
1126
+ }
1127
+
1128
+ .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
1129
+ font-size: 0.875em;
1130
+ }
1131
+
1132
+ .prose :where(pre):not(:where([class~="not-prose"] *)) {
1133
+ font-size: 0.8888889em;
1134
+ line-height: 1.75;
1135
+ margin-top: 2em;
1136
+ margin-bottom: 2em;
1137
+ border-radius: 0.375rem;
1138
+ padding-top: 1em;
1139
+ padding-right: 1.5em;
1140
+ padding-bottom: 1em;
1141
+ padding-left: 1.5em;
1142
+ }
1143
+
1144
+ .prose :where(ol):not(:where([class~="not-prose"] *)) {
1145
+ margin-top: 1.3333333em;
1146
+ margin-bottom: 1.3333333em;
1147
+ /* FILE CHANGED - removed padding left from unordered lists so they line up with ordered lists */
1148
+ /* padding-left: 1.5555556em; */
1149
+ }
1150
+
1151
+ .prose :where(ul):not(:where([class~="not-prose"] *)) {
1152
+ margin-top: 1.3333333em;
1153
+ margin-bottom: 1.3333333em;
1154
+ padding-left: 1.5555556em;
1155
+ }
1156
+
1157
+ .prose :where(li):not(:where([class~="not-prose"] *)) {
1158
+ margin-top: 0.6666667em;
1159
+ margin-bottom: 0.6666667em;
1160
+ }
1161
+
1162
+ .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
1163
+ padding-left: 0.4444444em;
1164
+ }
1165
+
1166
+ .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
1167
+ padding-left: 0.4444444em;
1168
+ }
1169
+
1170
+ .prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
1171
+ margin-top: 0.8888889em;
1172
+ margin-bottom: 0.8888889em;
1173
+ }
1174
+
1175
+ .prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1176
+ margin-top: 1.3333333em;
1177
+ }
1178
+
1179
+ .prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1180
+ margin-bottom: 1.3333333em;
1181
+ }
1182
+
1183
+ .prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1184
+ margin-top: 1.3333333em;
1185
+ }
1186
+
1187
+ .prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1188
+ margin-bottom: 1.3333333em;
1189
+ }
1190
+
1191
+ .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
1192
+ margin-top: 0.8888889em;
1193
+ margin-bottom: 0.8888889em;
1194
+ }
1195
+
1196
+ .prose :where(hr):not(:where([class~="not-prose"] *)) {
1197
+ margin-top: 3.1111111em;
1198
+ margin-bottom: 3.1111111em;
1199
+ }
1200
+
1201
+ .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
1202
+ margin-top: 0;
1203
+ }
1204
+
1205
+ .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
1206
+ margin-top: 0;
1207
+ }
1208
+
1209
+ .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
1210
+ margin-top: 0;
1211
+ }
1212
+
1213
+ .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
1214
+ margin-top: 0;
1215
+ }
1216
+
1217
+ .prose :where(table):not(:where([class~="not-prose"] *)) {
1218
+ font-size: 0.8888889em;
1219
+ line-height: 1.5;
1220
+ }
1221
+
1222
+ .prose :where(thead th):not(:where([class~="not-prose"] *)) {
1223
+ padding-right: 0.75em;
1224
+ padding-bottom: 0.75em;
1225
+ padding-left: 0.75em;
1226
+ }
1227
+
1228
+ .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
1229
+ padding-left: 0;
1230
+ }
1231
+
1232
+ .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1233
+ padding-right: 0;
1234
+ }
1235
+
1236
+ .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
1237
+ padding-top: 0.75em;
1238
+ padding-right: 0.75em;
1239
+ padding-bottom: 0.75em;
1240
+ padding-left: 0.75em;
1241
+ }
1242
+
1243
+ .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
1244
+ padding-left: 0;
1245
+ }
1246
+
1247
+ .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
1248
+ padding-right: 0;
1249
+ }
1250
+
1251
+ .prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
1252
+ margin-top: 0;
1253
+ }
1254
+
1255
+ .prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
1256
+ margin-bottom: 0;
1257
+ }
1258
+
1259
+ .dark\:prose-invert {
1260
+ --tw-prose-body: var(--tw-prose-invert-body);
1261
+ --tw-prose-headings: var(--tw-prose-invert-headings);
1262
+ --tw-prose-lead: var(--tw-prose-invert-lead);
1263
+ --tw-prose-links: var(--tw-prose-invert-links);
1264
+ --tw-prose-bold: var(--tw-prose-invert-bold);
1265
+ --tw-prose-counters: var(--tw-prose-invert-counters);
1266
+ --tw-prose-bullets: var(--tw-prose-invert-bullets);
1267
+ --tw-prose-hr: var(--tw-prose-invert-hr);
1268
+ --tw-prose-quotes: var(--tw-prose-invert-quotes);
1269
+ --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
1270
+ --tw-prose-captions: var(--tw-prose-invert-captions);
1271
+ --tw-prose-code: var(--tw-prose-invert-code);
1272
+ --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
1273
+ --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
1274
+ --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
1275
+ --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
1276
+ }
1277
+
1278
+ /* tailwind form plugin */
1279
+
1280
+ .form-input,.form-textarea,.form-select,.form-multiselect {
1281
+ -webkit-appearance: none;
1282
+ -moz-appearance: none;
1283
+ appearance: none;
1284
+ background-color: #fff;
1285
+ border-color: #6b7280;
1286
+ border-width: 1px;
1287
+ border-radius: 0px;
1288
+ padding-top: 0.5rem;
1289
+ padding-right: 0.75rem;
1290
+ padding-bottom: 0.5rem;
1291
+ padding-left: 0.75rem;
1292
+ font-size: 1rem;
1293
+ line-height: 1.5rem;
1294
+ --tw-shadow: 0 0 #0000;
1295
+ }
1296
+
1297
+ .form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus {
1298
+ outline: 2px solid transparent;
1299
+ outline-offset: 2px;
1300
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
1301
+ --tw-ring-offset-width: 0px;
1302
+ --tw-ring-offset-color: #fff;
1303
+ --tw-ring-color: #2563eb;
1304
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1305
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1306
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1307
+ border-color: #2563eb;
1308
+ }
1309
+
1310
+ .form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
1311
+ color: #6b7280;
1312
+ opacity: 1;
1313
+ }
1314
+
1315
+ .form-input::placeholder,.form-textarea::placeholder {
1316
+ color: #6b7280;
1317
+ opacity: 1;
1318
+ }
1319
+
1320
+ .form-input::-webkit-datetime-edit-fields-wrapper {
1321
+ padding: 0;
1322
+ }
1323
+
1324
+ .form-input::-webkit-date-and-time-value {
1325
+ min-height: 1.5em;
1326
+ }
1327
+
1328
+ .form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field {
1329
+ padding-top: 0;
1330
+ padding-bottom: 0;
1331
+ }
1332
+
1333
+ .form-select {
1334
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
1335
+ background-position: right 0.5rem center;
1336
+ background-repeat: no-repeat;
1337
+ background-size: 1.5em 1.5em;
1338
+ padding-right: 2.5rem;
1339
+ -webkit-print-color-adjust: exact;
1340
+ print-color-adjust: exact;
1341
+ }
1342
+
1343
+ .form-checkbox,.form-radio {
1344
+ -webkit-appearance: none;
1345
+ -moz-appearance: none;
1346
+ appearance: none;
1347
+ padding: 0;
1348
+ -webkit-print-color-adjust: exact;
1349
+ print-color-adjust: exact;
1350
+ display: inline-block;
1351
+ vertical-align: middle;
1352
+ background-origin: border-box;
1353
+ -webkit-user-select: none;
1354
+ -moz-user-select: none;
1355
+ user-select: none;
1356
+ flex-shrink: 0;
1357
+ height: 1rem;
1358
+ width: 1rem;
1359
+ color: #2563eb;
1360
+ background-color: #fff;
1361
+ border-color: #6b7280;
1362
+ border-width: 1px;
1363
+ --tw-shadow: 0 0 #0000;
1364
+ }
1365
+
1366
+ .form-checkbox {
1367
+ border-radius: 0px;
1368
+ }
1369
+
1370
+ .form-radio {
1371
+ border-radius: 100%;
1372
+ }
1373
+
1374
+ .form-checkbox:focus,.form-radio:focus {
1375
+ outline: 2px solid transparent;
1376
+ outline-offset: 2px;
1377
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
1378
+ --tw-ring-offset-width: 2px;
1379
+ --tw-ring-offset-color: #fff;
1380
+ --tw-ring-color: #2563eb;
1381
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1382
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1383
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1384
+ }
1385
+
1386
+ .form-checkbox:checked,.form-radio:checked {
1387
+ border-color: transparent;
1388
+ background-color: currentColor;
1389
+ background-size: 100% 100%;
1390
+ background-position: center;
1391
+ background-repeat: no-repeat;
1392
+ }
1393
+
1394
+ .form-checkbox:checked {
1395
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
1396
+ }
1397
+
1398
+ .form-radio:checked {
1399
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
1400
+ }
1401
+
1402
+ .form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus {
1403
+ border-color: transparent;
1404
+ background-color: currentColor;
1405
+ }
1406
+
1407
+ .form-checkbox:indeterminate {
1408
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
1409
+ border-color: transparent;
1410
+ background-color: currentColor;
1411
+ background-size: 100% 100%;
1412
+ background-position: center;
1413
+ background-repeat: no-repeat;
1414
+ }
1415
+
1416
+ .form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus {
1417
+ border-color: transparent;
1418
+ background-color: currentColor;
1419
+ }
1420
+
1421
+ /* line clamp */
1422
+
1423
+ .line-clamp-1 {
1424
+ overflow: hidden;
1425
+ display: -webkit-box;
1426
+ -webkit-box-orient: vertical;
1427
+ -webkit-line-clamp: 1;
1428
+ }
1429
+
1430
+ .line-clamp-2 {
1431
+ overflow: hidden;
1432
+ display: -webkit-box;
1433
+ -webkit-box-orient: vertical;
1434
+ -webkit-line-clamp: 2;
1435
+ }
1436
+
1437
+ .line-clamp-3 {
1438
+ overflow: hidden;
1439
+ display: -webkit-box;
1440
+ -webkit-box-orient: vertical;
1441
+ -webkit-line-clamp: 3;
1442
+ }
1443
+
1444
+ .line-clamp-4 {
1445
+ overflow: hidden;
1446
+ display: -webkit-box;
1447
+ -webkit-box-orient: vertical;
1448
+ -webkit-line-clamp: 4;
1449
+ }
1450
+
1451
+ .line-clamp-5 {
1452
+ overflow: hidden;
1453
+ display: -webkit-box;
1454
+ -webkit-box-orient: vertical;
1455
+ -webkit-line-clamp: 5;
1456
+ }
1457
+
1458
+ .line-clamp-6 {
1459
+ overflow: hidden;
1460
+ display: -webkit-box;
1461
+ -webkit-box-orient: vertical;
1462
+ -webkit-line-clamp: 6;
1463
+ }
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+