lookbook 0.4.4 → 0.4.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +223 -54
  3. data/app/assets/lookbook/css/app.css +64 -8
  4. data/app/assets/lookbook/js/app.js +39 -53
  5. data/app/assets/lookbook/js/components/copy.js +16 -0
  6. data/app/assets/lookbook/js/components/filter.js +24 -0
  7. data/app/assets/lookbook/js/components/inspector.js +21 -0
  8. data/app/assets/lookbook/js/{nav/node.js → components/nav-group.js} +16 -15
  9. data/app/assets/lookbook/js/components/nav-item.js +26 -0
  10. data/app/assets/lookbook/js/components/nav.js +35 -0
  11. data/app/assets/lookbook/js/components/page.js +33 -0
  12. data/app/assets/lookbook/js/components/param.js +18 -0
  13. data/app/assets/lookbook/js/{workbench/preview.js → components/preview-window.js} +9 -10
  14. data/app/assets/lookbook/js/components/sidebar.js +3 -0
  15. data/app/assets/lookbook/js/components/sizes.js +16 -0
  16. data/app/assets/lookbook/js/components/splitter.js +25 -0
  17. data/app/assets/lookbook/js/config.js +14 -0
  18. data/app/assets/lookbook/js/{utils/reloader.js → lib/socket.js} +7 -12
  19. data/app/assets/lookbook/js/lib/split.js +21 -0
  20. data/app/assets/lookbook/js/lib/utils.js +3 -0
  21. data/app/assets/lookbook/js/stores/filter.js +11 -0
  22. data/app/assets/lookbook/js/stores/inspector.js +17 -0
  23. data/app/assets/lookbook/js/stores/layout.js +12 -0
  24. data/app/assets/lookbook/js/stores/nav.js +21 -0
  25. data/app/assets/lookbook/js/stores/sidebar.js +14 -0
  26. data/app/controllers/lookbook/app_controller.rb +82 -87
  27. data/app/helpers/lookbook/application_helper.rb +49 -5
  28. data/app/helpers/lookbook/preview_helper.rb +7 -0
  29. data/app/views/layouts/lookbook/app.html.erb +54 -0
  30. data/app/views/layouts/lookbook/preview.html.erb +12 -0
  31. data/app/views/lookbook/components/_code.html.erb +8 -0
  32. data/app/views/lookbook/{shared/_clipboard.html.erb → components/_copy.html.erb} +4 -5
  33. data/app/views/lookbook/components/_filter.html.erb +15 -0
  34. data/app/views/lookbook/{shared → components}/_header.html.erb +3 -3
  35. data/app/views/lookbook/components/_icon.html.erb +5 -0
  36. data/app/views/lookbook/components/_nav.html.erb +17 -0
  37. data/app/views/lookbook/components/_nav_collection.html.erb +5 -0
  38. data/app/views/lookbook/components/_nav_group.html.erb +17 -0
  39. data/app/views/lookbook/components/_nav_item.html.erb +21 -0
  40. data/app/views/lookbook/components/_nav_preview.html.erb +11 -0
  41. data/app/views/lookbook/components/_param.html.erb +20 -0
  42. data/app/views/lookbook/{workbench → components}/_preview.html.erb +8 -8
  43. data/app/views/lookbook/{app/error.html.erb → error.html.erb} +0 -0
  44. data/app/views/lookbook/index.html.erb +9 -0
  45. data/app/views/lookbook/inputs/_select.html.erb +8 -0
  46. data/app/views/lookbook/inputs/_text.html.erb +8 -0
  47. data/app/views/lookbook/inputs/_textarea.html.erb +8 -0
  48. data/app/views/lookbook/inputs/_toggle.html.erb +13 -0
  49. data/app/views/lookbook/{app/not_found.html.erb → not_found.html.erb} +2 -4
  50. data/app/views/lookbook/panels/_notes.html.erb +25 -0
  51. data/app/views/lookbook/panels/_output.html.erb +18 -0
  52. data/app/views/lookbook/panels/_params.html.erb +17 -0
  53. data/app/views/lookbook/panels/_source.html.erb +20 -0
  54. data/app/views/lookbook/show.html.erb +90 -0
  55. data/lib/lookbook/code_formatter.rb +20 -0
  56. data/lib/lookbook/engine.rb +14 -1
  57. data/lib/lookbook/features.rb +24 -0
  58. data/lib/lookbook/lang.rb +10 -5
  59. data/lib/lookbook/params.rb +110 -0
  60. data/lib/lookbook/preview.rb +1 -1
  61. data/lib/lookbook/preview_controller.rb +1 -1
  62. data/lib/lookbook/preview_example.rb +13 -1
  63. data/lib/lookbook/preview_group.rb +9 -1
  64. data/lib/lookbook/taggable.rb +2 -2
  65. data/lib/lookbook/version.rb +1 -1
  66. data/lib/lookbook.rb +4 -0
  67. data/public/lookbook-assets/css/app.css +2 -0
  68. data/public/lookbook-assets/css/app.css.map +1 -0
  69. data/public/lookbook-assets/js/app.js +2 -0
  70. data/public/lookbook-assets/js/app.js.map +1 -0
  71. metadata +58 -38
  72. data/app/assets/lookbook/js/nav/leaf.js +0 -20
  73. data/app/assets/lookbook/js/nav.js +0 -39
  74. data/app/assets/lookbook/js/page.js +0 -33
  75. data/app/assets/lookbook/js/utils/clipboard.js +0 -13
  76. data/app/assets/lookbook/js/utils/morph.js +0 -16
  77. data/app/assets/lookbook/js/utils/screen.js +0 -44
  78. data/app/assets/lookbook/js/utils/size_observer.js +0 -16
  79. data/app/assets/lookbook/js/utils/split.js +0 -26
  80. data/app/assets/lookbook/js/workbench/inspector.js +0 -11
  81. data/app/assets/lookbook/js/workbench.js +0 -14
  82. data/app/views/lookbook/app/index.html.erb +0 -11
  83. data/app/views/lookbook/app/show.html.erb +0 -1
  84. data/app/views/lookbook/layouts/app.html.erb +0 -41
  85. data/app/views/lookbook/nav/_collection.html.erb +0 -5
  86. data/app/views/lookbook/nav/_leaf.html.erb +0 -22
  87. data/app/views/lookbook/nav/_node.html.erb +0 -19
  88. data/app/views/lookbook/nav/_preview.html.erb +0 -11
  89. data/app/views/lookbook/preview/group.html.erb +0 -8
  90. data/app/views/lookbook/shared/_sidebar.html.erb +0 -45
  91. data/app/views/lookbook/shared/_workbench.html.erb +0 -12
  92. data/app/views/lookbook/workbench/_header.html.erb +0 -39
  93. data/app/views/lookbook/workbench/_inspector.html.erb +0 -33
  94. data/app/views/lookbook/workbench/inspector/_code.html.erb +0 -3
  95. data/app/views/lookbook/workbench/inspector/_notes.html.erb +0 -24
  96. data/app/views/lookbook/workbench/inspector/_plain.html.erb +0 -3
  97. data/public/lookbook-assets/app.css +0 -2504
  98. data/public/lookbook-assets/app.js +0 -8680
@@ -1,2504 +0,0 @@
1
- /*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */
2
-
3
- /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
4
-
5
- /*
6
- Document
7
- ========
8
- */
9
-
10
- /**
11
- Use a better box model (opinionated).
12
- */
13
-
14
- *,
15
- ::before,
16
- ::after {
17
- box-sizing: border-box;
18
- }
19
-
20
- /**
21
- Use a more readable tab size (opinionated).
22
- */
23
-
24
- html {
25
- -moz-tab-size: 4;
26
- -o-tab-size: 4;
27
- tab-size: 4;
28
- }
29
-
30
- /**
31
- 1. Correct the line height in all browsers.
32
- 2. Prevent adjustments of font size after orientation changes in iOS.
33
- */
34
-
35
- html {
36
- line-height: 1.15;
37
- /* 1 */
38
- -webkit-text-size-adjust: 100%;
39
- /* 2 */
40
- }
41
-
42
- /*
43
- Sections
44
- ========
45
- */
46
-
47
- /**
48
- Remove the margin in all browsers.
49
- */
50
-
51
- body {
52
- margin: 0;
53
- }
54
-
55
- /**
56
- Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
57
- */
58
-
59
- body {
60
- font-family:
61
- system-ui,
62
- -apple-system, /* Firefox supports this but not yet `system-ui` */
63
- 'Segoe UI',
64
- Roboto,
65
- Helvetica,
66
- Arial,
67
- sans-serif,
68
- 'Apple Color Emoji',
69
- 'Segoe UI Emoji';
70
- }
71
-
72
- /*
73
- Grouping content
74
- ================
75
- */
76
-
77
- /**
78
- 1. Add the correct height in Firefox.
79
- 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
80
- */
81
-
82
- hr {
83
- height: 0;
84
- /* 1 */
85
- color: inherit;
86
- /* 2 */
87
- }
88
-
89
- /*
90
- Text-level semantics
91
- ====================
92
- */
93
-
94
- /**
95
- Add the correct text decoration in Chrome, Edge, and Safari.
96
- */
97
-
98
- abbr[title] {
99
- -webkit-text-decoration: underline dotted;
100
- text-decoration: underline dotted;
101
- }
102
-
103
- /**
104
- Add the correct font weight in Edge and Safari.
105
- */
106
-
107
- b,
108
- strong {
109
- font-weight: bolder;
110
- }
111
-
112
- /**
113
- 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
114
- 2. Correct the odd 'em' font sizing in all browsers.
115
- */
116
-
117
- code,
118
- kbd,
119
- samp,
120
- pre {
121
- font-family:
122
- ui-monospace,
123
- SFMono-Regular,
124
- Consolas,
125
- 'Liberation Mono',
126
- Menlo,
127
- monospace;
128
- /* 1 */
129
- font-size: 1em;
130
- /* 2 */
131
- }
132
-
133
- /**
134
- Add the correct font size in all browsers.
135
- */
136
-
137
- small {
138
- font-size: 80%;
139
- }
140
-
141
- /**
142
- Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
143
- */
144
-
145
- sub,
146
- sup {
147
- font-size: 75%;
148
- line-height: 0;
149
- position: relative;
150
- vertical-align: baseline;
151
- }
152
-
153
- sub {
154
- bottom: -0.25em;
155
- }
156
-
157
- sup {
158
- top: -0.5em;
159
- }
160
-
161
- /*
162
- Tabular data
163
- ============
164
- */
165
-
166
- /**
167
- 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)
168
- 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)
169
- */
170
-
171
- table {
172
- text-indent: 0;
173
- /* 1 */
174
- border-color: inherit;
175
- /* 2 */
176
- }
177
-
178
- /*
179
- Forms
180
- =====
181
- */
182
-
183
- /**
184
- 1. Change the font styles in all browsers.
185
- 2. Remove the margin in Firefox and Safari.
186
- */
187
-
188
- button,
189
- input,
190
- optgroup,
191
- select,
192
- textarea {
193
- font-family: inherit;
194
- /* 1 */
195
- font-size: 100%;
196
- /* 1 */
197
- line-height: 1.15;
198
- /* 1 */
199
- margin: 0;
200
- /* 2 */
201
- }
202
-
203
- /**
204
- Remove the inheritance of text transform in Edge and Firefox.
205
- 1. Remove the inheritance of text transform in Firefox.
206
- */
207
-
208
- button,
209
- select {
210
- /* 1 */
211
- text-transform: none;
212
- }
213
-
214
- /**
215
- Correct the inability to style clickable types in iOS and Safari.
216
- */
217
-
218
- button,
219
- [type='button'],
220
- [type='reset'],
221
- [type='submit'] {
222
- -webkit-appearance: button;
223
- }
224
-
225
- /**
226
- Remove the inner border and padding in Firefox.
227
- */
228
-
229
- ::-moz-focus-inner {
230
- border-style: none;
231
- padding: 0;
232
- }
233
-
234
- /**
235
- Restore the focus styles unset by the previous rule.
236
- */
237
-
238
- :-moz-focusring {
239
- outline: 1px dotted ButtonText;
240
- }
241
-
242
- /**
243
- Remove the additional ':invalid' styles in Firefox.
244
- See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
245
- */
246
-
247
- :-moz-ui-invalid {
248
- box-shadow: none;
249
- }
250
-
251
- /**
252
- Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
253
- */
254
-
255
- legend {
256
- padding: 0;
257
- }
258
-
259
- /**
260
- Add the correct vertical alignment in Chrome and Firefox.
261
- */
262
-
263
- progress {
264
- vertical-align: baseline;
265
- }
266
-
267
- /**
268
- Correct the cursor style of increment and decrement buttons in Safari.
269
- */
270
-
271
- ::-webkit-inner-spin-button,
272
- ::-webkit-outer-spin-button {
273
- height: auto;
274
- }
275
-
276
- /**
277
- 1. Correct the odd appearance in Chrome and Safari.
278
- 2. Correct the outline style in Safari.
279
- */
280
-
281
- [type='search'] {
282
- -webkit-appearance: textfield;
283
- /* 1 */
284
- outline-offset: -2px;
285
- /* 2 */
286
- }
287
-
288
- /**
289
- Remove the inner padding in Chrome and Safari on macOS.
290
- */
291
-
292
- ::-webkit-search-decoration {
293
- -webkit-appearance: none;
294
- }
295
-
296
- /**
297
- 1. Correct the inability to style clickable types in iOS and Safari.
298
- 2. Change font properties to 'inherit' in Safari.
299
- */
300
-
301
- ::-webkit-file-upload-button {
302
- -webkit-appearance: button;
303
- /* 1 */
304
- font: inherit;
305
- /* 2 */
306
- }
307
-
308
- /*
309
- Interactive
310
- ===========
311
- */
312
-
313
- /*
314
- Add the correct display in Chrome and Safari.
315
- */
316
-
317
- summary {
318
- display: list-item;
319
- }
320
-
321
- /**
322
- * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
323
- * A thin layer on top of normalize.css that provides a starting point more
324
- * suitable for web applications.
325
- */
326
-
327
- /**
328
- * Removes the default spacing and border for appropriate elements.
329
- */
330
-
331
- blockquote,
332
- dl,
333
- dd,
334
- h1,
335
- h2,
336
- h3,
337
- h4,
338
- h5,
339
- h6,
340
- hr,
341
- figure,
342
- p,
343
- pre {
344
- margin: 0;
345
- }
346
-
347
- button {
348
- background-color: transparent;
349
- background-image: none;
350
- }
351
-
352
- fieldset {
353
- margin: 0;
354
- padding: 0;
355
- }
356
-
357
- ol,
358
- ul {
359
- list-style: none;
360
- margin: 0;
361
- padding: 0;
362
- }
363
-
364
- /**
365
- * Tailwind custom reset styles
366
- */
367
-
368
- /**
369
- * 1. Use the user's configured `sans` font-family (with Tailwind's default
370
- * sans-serif font stack as a fallback) as a sane default.
371
- * 2. Use Tailwind's default "normal" line-height so the user isn't forced
372
- * to override it to ensure consistency even when using the default theme.
373
- */
374
-
375
- html {
376
- font-family: "Nunito Sans", -apple-system, ".SFNSText-Regular", "San Francisco", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
377
- /* 1 */
378
- line-height: 1.5;
379
- /* 2 */
380
- }
381
-
382
- /**
383
- * Inherit font-family and line-height from `html` so users can set them as
384
- * a class directly on the `html` element.
385
- */
386
-
387
- body {
388
- font-family: inherit;
389
- line-height: inherit;
390
- }
391
-
392
- /**
393
- * 1. Prevent padding and border from affecting element width.
394
- *
395
- * We used to set this in the html element and inherit from
396
- * the parent element for everything else. This caused issues
397
- * in shadow-dom-enhanced elements like <details> where the content
398
- * is wrapped by a div with box-sizing set to `content-box`.
399
- *
400
- * https://github.com/mozdevs/cssremedy/issues/4
401
- *
402
- *
403
- * 2. Allow adding a border to an element by just adding a border-width.
404
- *
405
- * By default, the way the browser specifies that an element should have no
406
- * border is by setting it's border-style to `none` in the user-agent
407
- * stylesheet.
408
- *
409
- * In order to easily add borders to elements by just setting the `border-width`
410
- * property, we change the default border-style for all elements to `solid`, and
411
- * use border-width to hide them instead. This way our `border` utilities only
412
- * need to set the `border-width` property instead of the entire `border`
413
- * shorthand, making our border utilities much more straightforward to compose.
414
- *
415
- * https://github.com/tailwindcss/tailwindcss/pull/116
416
- */
417
-
418
- *,
419
- ::before,
420
- ::after {
421
- box-sizing: border-box;
422
- /* 1 */
423
- border-width: 0;
424
- /* 2 */
425
- border-style: solid;
426
- /* 2 */
427
- border-color: currentColor;
428
- /* 2 */
429
- }
430
-
431
- /*
432
- * Ensure horizontal rules are visible by default
433
- */
434
-
435
- hr {
436
- border-top-width: 1px;
437
- }
438
-
439
- /**
440
- * Undo the `border-style: none` reset that Normalize applies to images so that
441
- * our `border-{width}` utilities have the expected effect.
442
- *
443
- * The Normalize reset is unnecessary for us since we default the border-width
444
- * to 0 on all elements.
445
- *
446
- * https://github.com/tailwindcss/tailwindcss/issues/362
447
- */
448
-
449
- img {
450
- border-style: solid;
451
- }
452
-
453
- textarea {
454
- resize: vertical;
455
- }
456
-
457
- input::-moz-placeholder, textarea::-moz-placeholder {
458
- opacity: 1;
459
- color: #9ca3af;
460
- }
461
-
462
- input:-ms-input-placeholder, textarea:-ms-input-placeholder {
463
- opacity: 1;
464
- color: #9ca3af;
465
- }
466
-
467
- input::placeholder,
468
- textarea::placeholder {
469
- opacity: 1;
470
- color: #9ca3af;
471
- }
472
-
473
- button,
474
- [role="button"] {
475
- cursor: pointer;
476
- }
477
-
478
- /**
479
- * Override legacy focus reset from Normalize with modern Firefox focus styles.
480
- *
481
- * This is actually an improvement over the new defaults in Firefox in our testing,
482
- * as it triggers the better focus styles even for links, which still use a dotted
483
- * outline in Firefox by default.
484
- */
485
-
486
- :-moz-focusring {
487
- outline: auto;
488
- }
489
-
490
- table {
491
- border-collapse: collapse;
492
- }
493
-
494
- h1,
495
- h2,
496
- h3,
497
- h4,
498
- h5,
499
- h6 {
500
- font-size: inherit;
501
- font-weight: inherit;
502
- }
503
-
504
- /**
505
- * Reset links to optimize for opt-in styling instead of
506
- * opt-out.
507
- */
508
-
509
- a {
510
- color: inherit;
511
- text-decoration: inherit;
512
- }
513
-
514
- /**
515
- * Reset form element properties that are easy to forget to
516
- * style explicitly so you don't inadvertently introduce
517
- * styles that deviate from your design system. These styles
518
- * supplement a partial reset that is already applied by
519
- * normalize.css.
520
- */
521
-
522
- button,
523
- input,
524
- optgroup,
525
- select,
526
- textarea {
527
- padding: 0;
528
- line-height: inherit;
529
- color: inherit;
530
- }
531
-
532
- /**
533
- * Use the configured 'mono' font family for elements that
534
- * are expected to be rendered with a monospace font, falling
535
- * back to the system monospace stack if there is no configured
536
- * 'mono' font family.
537
- */
538
-
539
- pre,
540
- code,
541
- kbd,
542
- samp {
543
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
544
- }
545
-
546
- /**
547
- * 1. Make replaced elements `display: block` by default as that's
548
- * the behavior you want almost all of the time. Inspired by
549
- * CSS Remedy, with `svg` added as well.
550
- *
551
- * https://github.com/mozdevs/cssremedy/issues/14
552
- *
553
- * 2. Add `vertical-align: middle` to align replaced elements more
554
- * sensibly by default when overriding `display` by adding a
555
- * utility like `inline`.
556
- *
557
- * This can trigger a poorly considered linting error in some
558
- * tools but is included by design.
559
- *
560
- * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
561
- */
562
-
563
- img,
564
- svg,
565
- video,
566
- canvas,
567
- audio,
568
- iframe,
569
- embed,
570
- object {
571
- display: block;
572
- /* 1 */
573
- vertical-align: middle;
574
- /* 2 */
575
- }
576
-
577
- /**
578
- * Constrain images and videos to the parent width and preserve
579
- * their intrinsic aspect ratio.
580
- *
581
- * https://github.com/mozdevs/cssremedy/issues/14
582
- */
583
-
584
- img,
585
- video {
586
- max-width: 100%;
587
- height: auto;
588
- }
589
-
590
- /**
591
- * Ensure the default browser behavior of the `hidden` attribute.
592
- */
593
-
594
- [hidden] {
595
- display: none;
596
- }
597
-
598
- *, ::before, ::after {
599
- --tw-translate-x: 0;
600
- --tw-translate-y: 0;
601
- --tw-rotate: 0;
602
- --tw-skew-x: 0;
603
- --tw-skew-y: 0;
604
- --tw-scale-x: 1;
605
- --tw-scale-y: 1;
606
- --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
607
- --tw-border-opacity: 1;
608
- border-color: rgba(229, 231, 235, var(--tw-border-opacity));
609
- --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
610
- --tw-ring-offset-width: 0px;
611
- --tw-ring-offset-color: #fff;
612
- --tw-ring-color: rgba(59, 130, 246, 0.5);
613
- --tw-ring-offset-shadow: 0 0 #0000;
614
- --tw-ring-shadow: 0 0 #0000;
615
- --tw-shadow: 0 0 #0000;
616
- --tw-blur: var(--tw-empty,/*!*/ /*!*/);
617
- --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
618
- --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
619
- --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
620
- --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
621
- --tw-invert: var(--tw-empty,/*!*/ /*!*/);
622
- --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
623
- --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
624
- --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
625
- --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
626
- }
627
-
628
- [type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
629
- -webkit-appearance: none;
630
- -moz-appearance: none;
631
- appearance: none;
632
- background-color: #fff;
633
- border-color: #6b7280;
634
- border-width: 1px;
635
- border-radius: 0px;
636
- padding-top: 0.5rem;
637
- padding-right: 0.75rem;
638
- padding-bottom: 0.5rem;
639
- padding-left: 0.75rem;
640
- font-size: 1rem;
641
- line-height: 1.5rem;
642
- --tw-shadow: 0 0 #0000;
643
- }
644
-
645
- [type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
646
- outline: 2px solid transparent;
647
- outline-offset: 2px;
648
- --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
649
- --tw-ring-offset-width: 0px;
650
- --tw-ring-offset-color: #fff;
651
- --tw-ring-color: #2563eb;
652
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
653
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
654
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
655
- border-color: #2563eb;
656
- }
657
-
658
- input::-moz-placeholder, textarea::-moz-placeholder {
659
- color: #6b7280;
660
- opacity: 1;
661
- }
662
-
663
- input:-ms-input-placeholder, textarea:-ms-input-placeholder {
664
- color: #6b7280;
665
- opacity: 1;
666
- }
667
-
668
- input::placeholder,textarea::placeholder {
669
- color: #6b7280;
670
- opacity: 1;
671
- }
672
-
673
- ::-webkit-datetime-edit-fields-wrapper {
674
- padding: 0;
675
- }
676
-
677
- ::-webkit-date-and-time-value {
678
- min-height: 1.5em;
679
- }
680
-
681
- select {
682
- 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");
683
- background-position: right 0.5rem center;
684
- background-repeat: no-repeat;
685
- background-size: 1.5em 1.5em;
686
- padding-right: 2.5rem;
687
- -webkit-print-color-adjust: exact;
688
- color-adjust: exact;
689
- }
690
-
691
- [multiple] {
692
- background-image: initial;
693
- background-position: initial;
694
- background-repeat: unset;
695
- background-size: initial;
696
- padding-right: 0.75rem;
697
- -webkit-print-color-adjust: unset;
698
- color-adjust: unset;
699
- }
700
-
701
- [type='checkbox'],[type='radio'] {
702
- -webkit-appearance: none;
703
- -moz-appearance: none;
704
- appearance: none;
705
- padding: 0;
706
- -webkit-print-color-adjust: exact;
707
- color-adjust: exact;
708
- display: inline-block;
709
- vertical-align: middle;
710
- background-origin: border-box;
711
- -webkit-user-select: none;
712
- -moz-user-select: none;
713
- -ms-user-select: none;
714
- user-select: none;
715
- flex-shrink: 0;
716
- height: 1rem;
717
- width: 1rem;
718
- color: #2563eb;
719
- background-color: #fff;
720
- border-color: #6b7280;
721
- border-width: 1px;
722
- --tw-shadow: 0 0 #0000;
723
- }
724
-
725
- [type='checkbox'] {
726
- border-radius: 0px;
727
- }
728
-
729
- [type='radio'] {
730
- border-radius: 100%;
731
- }
732
-
733
- [type='checkbox']:focus,[type='radio']:focus {
734
- outline: 2px solid transparent;
735
- outline-offset: 2px;
736
- --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
737
- --tw-ring-offset-width: 2px;
738
- --tw-ring-offset-color: #fff;
739
- --tw-ring-color: #2563eb;
740
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
741
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
742
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
743
- }
744
-
745
- [type='checkbox']:checked,[type='radio']:checked {
746
- border-color: transparent;
747
- background-color: currentColor;
748
- background-size: 100% 100%;
749
- background-position: center;
750
- background-repeat: no-repeat;
751
- }
752
-
753
- [type='checkbox']:checked {
754
- 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");
755
- }
756
-
757
- [type='radio']:checked {
758
- 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");
759
- }
760
-
761
- [type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
762
- border-color: transparent;
763
- background-color: currentColor;
764
- }
765
-
766
- [type='checkbox']:indeterminate {
767
- 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");
768
- border-color: transparent;
769
- background-color: currentColor;
770
- background-size: 100% 100%;
771
- background-position: center;
772
- background-repeat: no-repeat;
773
- }
774
-
775
- [type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
776
- border-color: transparent;
777
- background-color: currentColor;
778
- }
779
-
780
- [type='file'] {
781
- background: unset;
782
- border-color: inherit;
783
- border-width: 0;
784
- border-radius: 0;
785
- padding: 0;
786
- font-size: unset;
787
- line-height: inherit;
788
- }
789
-
790
- [type='file']:focus {
791
- outline: 1px auto -webkit-focus-ring-color;
792
- }
793
-
794
- html {
795
- scroll-behavior: smooth;
796
- }
797
-
798
- @media screen and (prefers-reduced-motion: reduce) {
799
- html {
800
- scroll-behavior: auto;
801
- }
802
- }
803
-
804
- [x-cloak] {
805
- display: none !important;
806
- }
807
-
808
- pre[class*="language-"] {
809
- padding: 0 !important;
810
- margin: 0 !important;
811
- }
812
-
813
- .feather {
814
- width: 24px;
815
- height: 24px;
816
- stroke: currentColor;
817
- stroke-width: 2;
818
- stroke-linecap: round;
819
- stroke-linejoin: round;
820
- fill: none;
821
- }
822
-
823
- .min-h-fill {
824
- min-height: -webkit-fill-available;
825
- min-height: -moz-available;
826
- min-height: fill-available;
827
- }
828
-
829
- ::-webkit-scrollbar {
830
- width: 8px;
831
- height: 8px;
832
- }
833
-
834
- ::-webkit-scrollbar-track {
835
- background: transparent;
836
- }
837
-
838
- ::-webkit-scrollbar-thumb {
839
- --tw-bg-opacity: 1;
840
- background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
841
- -webkit-transition-property: background-color, border-color, color, fill, stroke;
842
- transition-property: background-color, border-color, color, fill, stroke;
843
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
844
- transition-duration: 150ms;
845
- border-radius: 6px;
846
- border: 2px solid transparent;
847
- background-clip: content-box;
848
- }
849
-
850
- ::-webkit-scrollbar-thumb:hover {
851
- --tw-bg-opacity: 1;
852
- background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
853
- }
854
-
855
- .prose {
856
- color: #374151;
857
- max-width: 65ch;
858
- }
859
-
860
- .prose [class~="lead"] {
861
- color: #4b5563;
862
- font-size: 1.25em;
863
- line-height: 1.6;
864
- margin-top: 1.2em;
865
- margin-bottom: 1.2em;
866
- }
867
-
868
- .prose a {
869
- color: #111827;
870
- text-decoration: underline;
871
- font-weight: 500;
872
- }
873
-
874
- .prose strong {
875
- color: #111827;
876
- font-weight: 600;
877
- }
878
-
879
- .prose ol[type="A"] {
880
- --list-counter-style: upper-alpha;
881
- }
882
-
883
- .prose ol[type="a"] {
884
- --list-counter-style: lower-alpha;
885
- }
886
-
887
- .prose ol[type="A" s] {
888
- --list-counter-style: upper-alpha;
889
- }
890
-
891
- .prose ol[type="a" s] {
892
- --list-counter-style: lower-alpha;
893
- }
894
-
895
- .prose ol[type="I"] {
896
- --list-counter-style: upper-roman;
897
- }
898
-
899
- .prose ol[type="i"] {
900
- --list-counter-style: lower-roman;
901
- }
902
-
903
- .prose ol[type="I" s] {
904
- --list-counter-style: upper-roman;
905
- }
906
-
907
- .prose ol[type="i" s] {
908
- --list-counter-style: lower-roman;
909
- }
910
-
911
- .prose ol[type="1"] {
912
- --list-counter-style: decimal;
913
- }
914
-
915
- .prose ol > li {
916
- position: relative;
917
- padding-left: 1.75em;
918
- }
919
-
920
- .prose ol > li::before {
921
- content: counter(list-item, var(--list-counter-style, decimal)) ".";
922
- position: absolute;
923
- font-weight: 400;
924
- color: #6b7280;
925
- left: 0;
926
- }
927
-
928
- .prose ul > li {
929
- position: relative;
930
- padding-left: 1.75em;
931
- }
932
-
933
- .prose ul > li::before {
934
- content: "";
935
- position: absolute;
936
- background-color: #d1d5db;
937
- border-radius: 50%;
938
- width: 0.375em;
939
- height: 0.375em;
940
- top: calc(0.875em - 0.1875em);
941
- left: 0.25em;
942
- }
943
-
944
- .prose hr {
945
- border-color: #e5e7eb;
946
- border-top-width: 1px;
947
- margin-top: 3em;
948
- margin-bottom: 3em;
949
- }
950
-
951
- .prose blockquote {
952
- font-weight: 500;
953
- font-style: italic;
954
- color: #111827;
955
- border-left-width: 0.25rem;
956
- border-left-color: #e5e7eb;
957
- quotes: "\201C""\201D""\2018""\2019";
958
- margin-top: 1.6em;
959
- margin-bottom: 1.6em;
960
- padding-left: 1em;
961
- }
962
-
963
- .prose blockquote p:first-of-type::before {
964
- content: open-quote;
965
- }
966
-
967
- .prose blockquote p:last-of-type::after {
968
- content: close-quote;
969
- }
970
-
971
- .prose h1 {
972
- color: #111827;
973
- font-weight: 800;
974
- font-size: 2.25em;
975
- margin-top: 0;
976
- margin-bottom: 0.8888889em;
977
- line-height: 1.1111111;
978
- }
979
-
980
- .prose h2 {
981
- color: #111827;
982
- font-weight: 700;
983
- font-size: 1.5em;
984
- margin-top: 2em;
985
- margin-bottom: 1em;
986
- line-height: 1.3333333;
987
- }
988
-
989
- .prose h3 {
990
- color: #111827;
991
- font-weight: 600;
992
- font-size: 1.25em;
993
- margin-top: 1.6em;
994
- margin-bottom: 0.6em;
995
- line-height: 1.6;
996
- }
997
-
998
- .prose h4 {
999
- color: #111827;
1000
- font-weight: 600;
1001
- margin-top: 1.5em;
1002
- margin-bottom: 0.5em;
1003
- line-height: 1.5;
1004
- }
1005
-
1006
- .prose figure figcaption {
1007
- color: #6b7280;
1008
- font-size: 0.875em;
1009
- line-height: 1.4285714;
1010
- margin-top: 0.8571429em;
1011
- }
1012
-
1013
- .prose code {
1014
- color: #111827;
1015
- font-weight: 600;
1016
- font-size: 0.875em;
1017
- }
1018
-
1019
- .prose code::before {
1020
- content: "`";
1021
- }
1022
-
1023
- .prose code::after {
1024
- content: "`";
1025
- }
1026
-
1027
- .prose a code {
1028
- color: #111827;
1029
- }
1030
-
1031
- .prose pre {
1032
- color: #e5e7eb;
1033
- background-color: #1f2937;
1034
- overflow-x: auto;
1035
- font-size: 0.875em;
1036
- line-height: 1.7142857;
1037
- margin-top: 1.7142857em;
1038
- margin-bottom: 1.7142857em;
1039
- border-radius: 0.375rem;
1040
- padding-top: 0.8571429em;
1041
- padding-right: 1.1428571em;
1042
- padding-bottom: 0.8571429em;
1043
- padding-left: 1.1428571em;
1044
- }
1045
-
1046
- .prose pre code {
1047
- background-color: transparent;
1048
- border-width: 0;
1049
- border-radius: 0;
1050
- padding: 0;
1051
- font-weight: 400;
1052
- color: inherit;
1053
- font-size: inherit;
1054
- font-family: inherit;
1055
- line-height: inherit;
1056
- }
1057
-
1058
- .prose pre code::before {
1059
- content: none;
1060
- }
1061
-
1062
- .prose pre code::after {
1063
- content: none;
1064
- }
1065
-
1066
- .prose table {
1067
- width: 100%;
1068
- table-layout: auto;
1069
- text-align: left;
1070
- margin-top: 2em;
1071
- margin-bottom: 2em;
1072
- font-size: 0.875em;
1073
- line-height: 1.7142857;
1074
- }
1075
-
1076
- .prose thead {
1077
- color: #111827;
1078
- font-weight: 600;
1079
- border-bottom-width: 1px;
1080
- border-bottom-color: #d1d5db;
1081
- }
1082
-
1083
- .prose thead th {
1084
- vertical-align: bottom;
1085
- padding-right: 0.5714286em;
1086
- padding-bottom: 0.5714286em;
1087
- padding-left: 0.5714286em;
1088
- }
1089
-
1090
- .prose tbody tr {
1091
- border-bottom-width: 1px;
1092
- border-bottom-color: #e5e7eb;
1093
- }
1094
-
1095
- .prose tbody tr:last-child {
1096
- border-bottom-width: 0;
1097
- }
1098
-
1099
- .prose tbody td {
1100
- vertical-align: top;
1101
- padding-top: 0.5714286em;
1102
- padding-right: 0.5714286em;
1103
- padding-bottom: 0.5714286em;
1104
- padding-left: 0.5714286em;
1105
- }
1106
-
1107
- .prose {
1108
- font-size: 1rem;
1109
- line-height: 1.75;
1110
- }
1111
-
1112
- .prose p {
1113
- margin-top: 1.25em;
1114
- margin-bottom: 1.25em;
1115
- }
1116
-
1117
- .prose img {
1118
- margin-top: 2em;
1119
- margin-bottom: 2em;
1120
- }
1121
-
1122
- .prose video {
1123
- margin-top: 2em;
1124
- margin-bottom: 2em;
1125
- }
1126
-
1127
- .prose figure {
1128
- margin-top: 2em;
1129
- margin-bottom: 2em;
1130
- }
1131
-
1132
- .prose figure > * {
1133
- margin-top: 0;
1134
- margin-bottom: 0;
1135
- }
1136
-
1137
- .prose h2 code {
1138
- font-size: 0.875em;
1139
- }
1140
-
1141
- .prose h3 code {
1142
- font-size: 0.9em;
1143
- }
1144
-
1145
- .prose ol {
1146
- margin-top: 1.25em;
1147
- margin-bottom: 1.25em;
1148
- }
1149
-
1150
- .prose ul {
1151
- margin-top: 1.25em;
1152
- margin-bottom: 1.25em;
1153
- }
1154
-
1155
- .prose li {
1156
- margin-top: 0.5em;
1157
- margin-bottom: 0.5em;
1158
- }
1159
-
1160
- .prose > ul > li p {
1161
- margin-top: 0.75em;
1162
- margin-bottom: 0.75em;
1163
- }
1164
-
1165
- .prose > ul > li > *:first-child {
1166
- margin-top: 1.25em;
1167
- }
1168
-
1169
- .prose > ul > li > *:last-child {
1170
- margin-bottom: 1.25em;
1171
- }
1172
-
1173
- .prose > ol > li > *:first-child {
1174
- margin-top: 1.25em;
1175
- }
1176
-
1177
- .prose > ol > li > *:last-child {
1178
- margin-bottom: 1.25em;
1179
- }
1180
-
1181
- .prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {
1182
- margin-top: 0.75em;
1183
- margin-bottom: 0.75em;
1184
- }
1185
-
1186
- .prose hr + * {
1187
- margin-top: 0;
1188
- }
1189
-
1190
- .prose h2 + * {
1191
- margin-top: 0;
1192
- }
1193
-
1194
- .prose h3 + * {
1195
- margin-top: 0;
1196
- }
1197
-
1198
- .prose h4 + * {
1199
- margin-top: 0;
1200
- }
1201
-
1202
- .prose thead th:first-child {
1203
- padding-left: 0;
1204
- }
1205
-
1206
- .prose thead th:last-child {
1207
- padding-right: 0;
1208
- }
1209
-
1210
- .prose tbody td:first-child {
1211
- padding-left: 0;
1212
- }
1213
-
1214
- .prose tbody td:last-child {
1215
- padding-right: 0;
1216
- }
1217
-
1218
- .prose > :first-child {
1219
- margin-top: 0;
1220
- }
1221
-
1222
- .prose > :last-child {
1223
- margin-bottom: 0;
1224
- }
1225
-
1226
- .prose-sm {
1227
- font-size: 0.875rem;
1228
- line-height: 1.7142857;
1229
- }
1230
-
1231
- .prose-sm p {
1232
- margin-top: 1.1428571em;
1233
- margin-bottom: 1.1428571em;
1234
- }
1235
-
1236
- .prose-sm [class~="lead"] {
1237
- font-size: 1.2857143em;
1238
- line-height: 1.5555556;
1239
- margin-top: 0.8888889em;
1240
- margin-bottom: 0.8888889em;
1241
- }
1242
-
1243
- .prose-sm blockquote {
1244
- margin-top: 1.3333333em;
1245
- margin-bottom: 1.3333333em;
1246
- padding-left: 1.1111111em;
1247
- }
1248
-
1249
- .prose-sm h1 {
1250
- font-size: 2.1428571em;
1251
- margin-top: 0;
1252
- margin-bottom: 0.8em;
1253
- line-height: 1.2;
1254
- }
1255
-
1256
- .prose-sm h2 {
1257
- font-size: 1.4285714em;
1258
- margin-top: 1.6em;
1259
- margin-bottom: 0.8em;
1260
- line-height: 1.4;
1261
- }
1262
-
1263
- .prose-sm h3 {
1264
- font-size: 1.2857143em;
1265
- margin-top: 1.5555556em;
1266
- margin-bottom: 0.4444444em;
1267
- line-height: 1.5555556;
1268
- }
1269
-
1270
- .prose-sm h4 {
1271
- margin-top: 1.4285714em;
1272
- margin-bottom: 0.5714286em;
1273
- line-height: 1.4285714;
1274
- }
1275
-
1276
- .prose-sm img {
1277
- margin-top: 1.7142857em;
1278
- margin-bottom: 1.7142857em;
1279
- }
1280
-
1281
- .prose-sm video {
1282
- margin-top: 1.7142857em;
1283
- margin-bottom: 1.7142857em;
1284
- }
1285
-
1286
- .prose-sm figure {
1287
- margin-top: 1.7142857em;
1288
- margin-bottom: 1.7142857em;
1289
- }
1290
-
1291
- .prose-sm figure > * {
1292
- margin-top: 0;
1293
- margin-bottom: 0;
1294
- }
1295
-
1296
- .prose-sm figure figcaption {
1297
- font-size: 0.8571429em;
1298
- line-height: 1.3333333;
1299
- margin-top: 0.6666667em;
1300
- }
1301
-
1302
- .prose-sm code {
1303
- font-size: 0.8571429em;
1304
- }
1305
-
1306
- .prose-sm h2 code {
1307
- font-size: 0.9em;
1308
- }
1309
-
1310
- .prose-sm h3 code {
1311
- font-size: 0.8888889em;
1312
- }
1313
-
1314
- .prose-sm pre {
1315
- font-size: 0.8571429em;
1316
- line-height: 1.6666667;
1317
- margin-top: 1.6666667em;
1318
- margin-bottom: 1.6666667em;
1319
- border-radius: 0.25rem;
1320
- padding-top: 0.6666667em;
1321
- padding-right: 1em;
1322
- padding-bottom: 0.6666667em;
1323
- padding-left: 1em;
1324
- }
1325
-
1326
- .prose-sm ol {
1327
- margin-top: 1.1428571em;
1328
- margin-bottom: 1.1428571em;
1329
- }
1330
-
1331
- .prose-sm ul {
1332
- margin-top: 1.1428571em;
1333
- margin-bottom: 1.1428571em;
1334
- }
1335
-
1336
- .prose-sm li {
1337
- margin-top: 0.2857143em;
1338
- margin-bottom: 0.2857143em;
1339
- }
1340
-
1341
- .prose-sm ol > li {
1342
- padding-left: 1.5714286em;
1343
- }
1344
-
1345
- .prose-sm ol > li::before {
1346
- left: 0;
1347
- }
1348
-
1349
- .prose-sm ul > li {
1350
- padding-left: 1.5714286em;
1351
- }
1352
-
1353
- .prose-sm ul > li::before {
1354
- height: 0.3571429em;
1355
- width: 0.3571429em;
1356
- top: calc(0.8571429em - 0.1785714em);
1357
- left: 0.2142857em;
1358
- }
1359
-
1360
- .prose-sm > ul > li p {
1361
- margin-top: 0.5714286em;
1362
- margin-bottom: 0.5714286em;
1363
- }
1364
-
1365
- .prose-sm > ul > li > *:first-child {
1366
- margin-top: 1.1428571em;
1367
- }
1368
-
1369
- .prose-sm > ul > li > *:last-child {
1370
- margin-bottom: 1.1428571em;
1371
- }
1372
-
1373
- .prose-sm > ol > li > *:first-child {
1374
- margin-top: 1.1428571em;
1375
- }
1376
-
1377
- .prose-sm > ol > li > *:last-child {
1378
- margin-bottom: 1.1428571em;
1379
- }
1380
-
1381
- .prose-sm ul ul, .prose-sm ul ol, .prose-sm ol ul, .prose-sm ol ol {
1382
- margin-top: 0.5714286em;
1383
- margin-bottom: 0.5714286em;
1384
- }
1385
-
1386
- .prose-sm hr {
1387
- margin-top: 2.8571429em;
1388
- margin-bottom: 2.8571429em;
1389
- }
1390
-
1391
- .prose-sm hr + * {
1392
- margin-top: 0;
1393
- }
1394
-
1395
- .prose-sm h2 + * {
1396
- margin-top: 0;
1397
- }
1398
-
1399
- .prose-sm h3 + * {
1400
- margin-top: 0;
1401
- }
1402
-
1403
- .prose-sm h4 + * {
1404
- margin-top: 0;
1405
- }
1406
-
1407
- .prose-sm table {
1408
- font-size: 0.8571429em;
1409
- line-height: 1.5;
1410
- }
1411
-
1412
- .prose-sm thead th {
1413
- padding-right: 1em;
1414
- padding-bottom: 0.6666667em;
1415
- padding-left: 1em;
1416
- }
1417
-
1418
- .prose-sm thead th:first-child {
1419
- padding-left: 0;
1420
- }
1421
-
1422
- .prose-sm thead th:last-child {
1423
- padding-right: 0;
1424
- }
1425
-
1426
- .prose-sm tbody td {
1427
- padding-top: 0.6666667em;
1428
- padding-right: 1em;
1429
- padding-bottom: 0.6666667em;
1430
- padding-left: 1em;
1431
- }
1432
-
1433
- .prose-sm tbody td:first-child {
1434
- padding-left: 0;
1435
- }
1436
-
1437
- .prose-sm tbody td:last-child {
1438
- padding-right: 0;
1439
- }
1440
-
1441
- .prose-sm > :first-child {
1442
- margin-top: 0;
1443
- }
1444
-
1445
- .prose-sm > :last-child {
1446
- margin-bottom: 0;
1447
- }
1448
-
1449
- .pointer-events-none {
1450
- pointer-events: none;
1451
- }
1452
-
1453
- .absolute {
1454
- position: absolute;
1455
- }
1456
-
1457
- .relative {
1458
- position: relative;
1459
- }
1460
-
1461
- .inset-0 {
1462
- top: 0px;
1463
- right: 0px;
1464
- bottom: 0px;
1465
- left: 0px;
1466
- }
1467
-
1468
- .inset-y-0 {
1469
- top: 0px;
1470
- bottom: 0px;
1471
- }
1472
-
1473
- .top-0 {
1474
- top: 0px;
1475
- }
1476
-
1477
- .bottom-0 {
1478
- bottom: 0px;
1479
- }
1480
-
1481
- .right-0 {
1482
- right: 0px;
1483
- }
1484
-
1485
- .top-1\/2 {
1486
- top: 50%;
1487
- }
1488
-
1489
- .right-2 {
1490
- right: 0.5rem;
1491
- }
1492
-
1493
- .left-0 {
1494
- left: 0px;
1495
- }
1496
-
1497
- .left-4 {
1498
- left: 1rem;
1499
- }
1500
-
1501
- .z-10 {
1502
- z-index: 10;
1503
- }
1504
-
1505
- .mx-auto {
1506
- margin-left: auto;
1507
- margin-right: auto;
1508
- }
1509
-
1510
- .mt-4 {
1511
- margin-top: 1rem;
1512
- }
1513
-
1514
- .mt-3 {
1515
- margin-top: 0.75rem;
1516
- }
1517
-
1518
- .mt-2 {
1519
- margin-top: 0.5rem;
1520
- }
1521
-
1522
- .mr-1\.5 {
1523
- margin-right: 0.375rem;
1524
- }
1525
-
1526
- .ml-\[3px\] {
1527
- margin-left: 3px;
1528
- }
1529
-
1530
- .mr-1 {
1531
- margin-right: 0.25rem;
1532
- }
1533
-
1534
- .mr-3 {
1535
- margin-right: 0.75rem;
1536
- }
1537
-
1538
- .ml-4 {
1539
- margin-left: 1rem;
1540
- }
1541
-
1542
- .mb-1 {
1543
- margin-bottom: 0.25rem;
1544
- }
1545
-
1546
- .ml-auto {
1547
- margin-left: auto;
1548
- }
1549
-
1550
- .-mb-px {
1551
- margin-bottom: -1px;
1552
- }
1553
-
1554
- .block {
1555
- display: block;
1556
- }
1557
-
1558
- .inline-block {
1559
- display: inline-block;
1560
- }
1561
-
1562
- .flex {
1563
- display: flex;
1564
- }
1565
-
1566
- .hidden {
1567
- display: none;
1568
- }
1569
-
1570
- .h-screen {
1571
- height: 100vh;
1572
- }
1573
-
1574
- .h-full {
1575
- height: 100%;
1576
- }
1577
-
1578
- .h-10 {
1579
- height: 2.5rem;
1580
- }
1581
-
1582
- .h-3\.5 {
1583
- height: 0.875rem;
1584
- }
1585
-
1586
- .h-3 {
1587
- height: 0.75rem;
1588
- }
1589
-
1590
- .h-4 {
1591
- height: 1rem;
1592
- }
1593
-
1594
- .h-5 {
1595
- height: 1.25rem;
1596
- }
1597
-
1598
- .h-\[11px\] {
1599
- height: 11px;
1600
- }
1601
-
1602
- .w-full {
1603
- width: 100%;
1604
- }
1605
-
1606
- .w-10 {
1607
- width: 2.5rem;
1608
- }
1609
-
1610
- .w-screen {
1611
- width: 100vw;
1612
- }
1613
-
1614
- .w-\[9px\] {
1615
- width: 9px;
1616
- }
1617
-
1618
- .w-3\.5 {
1619
- width: 0.875rem;
1620
- }
1621
-
1622
- .w-3 {
1623
- width: 0.75rem;
1624
- }
1625
-
1626
- .w-4 {
1627
- width: 1rem;
1628
- }
1629
-
1630
- .w-5 {
1631
- width: 1.25rem;
1632
- }
1633
-
1634
- .max-w-xs {
1635
- max-width: 20rem;
1636
- }
1637
-
1638
- .flex-none {
1639
- flex: none;
1640
- }
1641
-
1642
- .flex-auto {
1643
- flex: 1 1 auto;
1644
- }
1645
-
1646
- .flex-grow {
1647
- flex-grow: 1;
1648
- }
1649
-
1650
- .-translate-x-1\/2 {
1651
- --tw-translate-x: -50%;
1652
- transform: var(--tw-transform);
1653
- }
1654
-
1655
- .-translate-y-1\/2 {
1656
- --tw-translate-y: -50%;
1657
- transform: var(--tw-transform);
1658
- }
1659
-
1660
- .transform {
1661
- transform: var(--tw-transform);
1662
- }
1663
-
1664
- .cursor-\[col-resize\] {
1665
- cursor: col-resize;
1666
- }
1667
-
1668
- .cursor-pointer {
1669
- cursor: pointer;
1670
- }
1671
-
1672
- .cursor-\[row-resize\] {
1673
- cursor: row-resize;
1674
- }
1675
-
1676
- .cursor-auto {
1677
- cursor: auto;
1678
- }
1679
-
1680
- .select-none {
1681
- -webkit-user-select: none;
1682
- -moz-user-select: none;
1683
- -ms-user-select: none;
1684
- user-select: none;
1685
- }
1686
-
1687
- .resize {
1688
- resize: both;
1689
- }
1690
-
1691
- .flex-col {
1692
- flex-direction: column;
1693
- }
1694
-
1695
- .items-center {
1696
- align-items: center;
1697
- }
1698
-
1699
- .justify-center {
1700
- justify-content: center;
1701
- }
1702
-
1703
- .space-x-1 > :not([hidden]) ~ :not([hidden]) {
1704
- --tw-space-x-reverse: 0;
1705
- margin-right: calc(0.25rem * var(--tw-space-x-reverse));
1706
- margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
1707
- }
1708
-
1709
- .space-x-3 > :not([hidden]) ~ :not([hidden]) {
1710
- --tw-space-x-reverse: 0;
1711
- margin-right: calc(0.75rem * var(--tw-space-x-reverse));
1712
- margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
1713
- }
1714
-
1715
- .space-x-8 > :not([hidden]) ~ :not([hidden]) {
1716
- --tw-space-x-reverse: 0;
1717
- margin-right: calc(2rem * var(--tw-space-x-reverse));
1718
- margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
1719
- }
1720
-
1721
- .divide-y > :not([hidden]) ~ :not([hidden]) {
1722
- --tw-divide-y-reverse: 0;
1723
- border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
1724
- border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
1725
- }
1726
-
1727
- .divide-gray-300 > :not([hidden]) ~ :not([hidden]) {
1728
- --tw-divide-opacity: 1;
1729
- border-color: rgba(209, 213, 219, var(--tw-divide-opacity));
1730
- }
1731
-
1732
- .overflow-auto {
1733
- overflow: auto;
1734
- }
1735
-
1736
- .overflow-hidden {
1737
- overflow: hidden;
1738
- }
1739
-
1740
- .overflow-y-auto {
1741
- overflow-y: auto;
1742
- }
1743
-
1744
- .truncate {
1745
- overflow: hidden;
1746
- text-overflow: ellipsis;
1747
- white-space: nowrap;
1748
- }
1749
-
1750
- .whitespace-nowrap {
1751
- white-space: nowrap;
1752
- }
1753
-
1754
- .rounded-b {
1755
- border-bottom-right-radius: 0.25rem;
1756
- border-bottom-left-radius: 0.25rem;
1757
- }
1758
-
1759
- .rounded-bl-md {
1760
- border-bottom-left-radius: 0.375rem;
1761
- }
1762
-
1763
- .border-0 {
1764
- border-width: 0px;
1765
- }
1766
-
1767
- .border {
1768
- border-width: 1px;
1769
- }
1770
-
1771
- .border-r {
1772
- border-right-width: 1px;
1773
- }
1774
-
1775
- .border-b {
1776
- border-bottom-width: 1px;
1777
- }
1778
-
1779
- .border-l {
1780
- border-left-width: 1px;
1781
- }
1782
-
1783
- .border-t {
1784
- border-top-width: 1px;
1785
- }
1786
-
1787
- .border-b-2 {
1788
- border-bottom-width: 2px;
1789
- }
1790
-
1791
- .border-t-0 {
1792
- border-top-width: 0px;
1793
- }
1794
-
1795
- .border-gray-300 {
1796
- --tw-border-opacity: 1;
1797
- border-color: rgba(209, 213, 219, var(--tw-border-opacity));
1798
- }
1799
-
1800
- .border-gray-200 {
1801
- --tw-border-opacity: 1;
1802
- border-color: rgba(229, 231, 235, var(--tw-border-opacity));
1803
- }
1804
-
1805
- .border-indigo-400 {
1806
- --tw-border-opacity: 1;
1807
- border-color: rgba(129, 140, 248, var(--tw-border-opacity));
1808
- }
1809
-
1810
- .border-transparent {
1811
- border-color: transparent;
1812
- }
1813
-
1814
- .bg-white {
1815
- --tw-bg-opacity: 1;
1816
- background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
1817
- }
1818
-
1819
- .bg-gray-100 {
1820
- --tw-bg-opacity: 1;
1821
- background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
1822
- }
1823
-
1824
- .bg-transparent {
1825
- background-color: transparent;
1826
- }
1827
-
1828
- .\!bg-indigo-100 {
1829
- --tw-bg-opacity: 1 !important;
1830
- background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important;
1831
- }
1832
-
1833
- .bg-gray-50 {
1834
- --tw-bg-opacity: 1;
1835
- background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
1836
- }
1837
-
1838
- .p-4 {
1839
- padding: 1rem;
1840
- }
1841
-
1842
- .p-1\.5 {
1843
- padding: 0.375rem;
1844
- }
1845
-
1846
- .p-1 {
1847
- padding: 0.25rem;
1848
- }
1849
-
1850
- .py-\[5px\] {
1851
- padding-top: 5px;
1852
- padding-bottom: 5px;
1853
- }
1854
-
1855
- .py-1 {
1856
- padding-top: 0.25rem;
1857
- padding-bottom: 0.25rem;
1858
- }
1859
-
1860
- .py-2 {
1861
- padding-top: 0.5rem;
1862
- padding-bottom: 0.5rem;
1863
- }
1864
-
1865
- .px-4 {
1866
- padding-left: 1rem;
1867
- padding-right: 1rem;
1868
- }
1869
-
1870
- .px-1 {
1871
- padding-left: 0.25rem;
1872
- padding-right: 0.25rem;
1873
- }
1874
-
1875
- .px-2 {
1876
- padding-left: 0.5rem;
1877
- padding-right: 0.5rem;
1878
- }
1879
-
1880
- .py-0 {
1881
- padding-top: 0px;
1882
- padding-bottom: 0px;
1883
- }
1884
-
1885
- .pr-3 {
1886
- padding-right: 0.75rem;
1887
- }
1888
-
1889
- .pt-10 {
1890
- padding-top: 2.5rem;
1891
- }
1892
-
1893
- .pb-8 {
1894
- padding-bottom: 2rem;
1895
- }
1896
-
1897
- .text-left {
1898
- text-align: left;
1899
- }
1900
-
1901
- .text-center {
1902
- text-align: center;
1903
- }
1904
-
1905
- .font-sans {
1906
- font-family: "Nunito Sans", -apple-system, ".SFNSText-Regular", "San Francisco", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
1907
- }
1908
-
1909
- .font-monospace {
1910
- font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
1911
- }
1912
-
1913
- .text-base {
1914
- font-size: 1rem;
1915
- line-height: 1.5rem;
1916
- }
1917
-
1918
- .text-sm {
1919
- font-size: 0.875rem;
1920
- line-height: 1.25rem;
1921
- }
1922
-
1923
- .text-xs {
1924
- font-size: 0.75rem;
1925
- line-height: 1rem;
1926
- }
1927
-
1928
- .text-\[11px\] {
1929
- font-size: 11px;
1930
- }
1931
-
1932
- .font-bold {
1933
- font-weight: 700;
1934
- }
1935
-
1936
- .text-gray-300 {
1937
- --tw-text-opacity: 1;
1938
- color: rgba(209, 213, 219, var(--tw-text-opacity));
1939
- }
1940
-
1941
- .text-gray-400 {
1942
- --tw-text-opacity: 1;
1943
- color: rgba(156, 163, 175, var(--tw-text-opacity));
1944
- }
1945
-
1946
- .text-red-300 {
1947
- --tw-text-opacity: 1;
1948
- color: rgba(252, 165, 165, var(--tw-text-opacity));
1949
- }
1950
-
1951
- .text-gray-700 {
1952
- --tw-text-opacity: 1;
1953
- color: rgba(55, 65, 81, var(--tw-text-opacity));
1954
- }
1955
-
1956
- .text-gray-500 {
1957
- --tw-text-opacity: 1;
1958
- color: rgba(107, 114, 128, var(--tw-text-opacity));
1959
- }
1960
-
1961
- .text-gray-800 {
1962
- --tw-text-opacity: 1;
1963
- color: rgba(31, 41, 55, var(--tw-text-opacity));
1964
- }
1965
-
1966
- .text-gray-900 {
1967
- --tw-text-opacity: 1;
1968
- color: rgba(17, 24, 39, var(--tw-text-opacity));
1969
- }
1970
-
1971
- .text-indigo-500 {
1972
- --tw-text-opacity: 1;
1973
- color: rgba(99, 102, 241, var(--tw-text-opacity));
1974
- }
1975
-
1976
- .\!text-gray-300 {
1977
- --tw-text-opacity: 1 !important;
1978
- color: rgba(209, 213, 219, var(--tw-text-opacity)) !important;
1979
- }
1980
-
1981
- .text-gray-600 {
1982
- --tw-text-opacity: 1;
1983
- color: rgba(75, 85, 99, var(--tw-text-opacity));
1984
- }
1985
-
1986
- .underline {
1987
- text-decoration: underline;
1988
- }
1989
-
1990
- .antialiased {
1991
- -webkit-font-smoothing: antialiased;
1992
- -moz-osx-font-smoothing: grayscale;
1993
- }
1994
-
1995
- .opacity-0 {
1996
- opacity: 0;
1997
- }
1998
-
1999
- .opacity-50 {
2000
- opacity: 0.5;
2001
- }
2002
-
2003
- .outline-none {
2004
- outline: 2px solid transparent;
2005
- outline-offset: 2px;
2006
- }
2007
-
2008
- .blur {
2009
- --tw-blur: blur(8px);
2010
- filter: var(--tw-filter);
2011
- }
2012
-
2013
- .filter {
2014
- filter: var(--tw-filter);
2015
- }
2016
-
2017
- .transition {
2018
- transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
2019
- transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
2020
- transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
2021
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2022
- transition-duration: 150ms;
2023
- }
2024
-
2025
- .tippy-box[data-animation=fade][data-state=hidden]{
2026
- opacity:0
2027
- }
2028
-
2029
- [data-tippy-root]{
2030
- max-width:calc(100vw - 10px)
2031
- }
2032
-
2033
- .tippy-box{
2034
- position:relative;
2035
- background-color:#333;
2036
- color:#fff;
2037
- border-radius:4px;
2038
- font-size:14px;
2039
- line-height:1.4;
2040
- white-space:normal;
2041
- outline:0;
2042
- transition-property:transform,visibility,opacity
2043
- }
2044
-
2045
- .tippy-box[data-placement^=top]>.tippy-arrow{
2046
- bottom:0
2047
- }
2048
-
2049
- .tippy-box[data-placement^=top]>.tippy-arrow:before{
2050
- bottom:-7px;
2051
- left:0;
2052
- border-width:8px 8px 0;
2053
- border-top-color:initial;
2054
- transform-origin:center top
2055
- }
2056
-
2057
- .tippy-box[data-placement^=bottom]>.tippy-arrow{
2058
- top:0
2059
- }
2060
-
2061
- .tippy-box[data-placement^=bottom]>.tippy-arrow:before{
2062
- top:-7px;
2063
- left:0;
2064
- border-width:0 8px 8px;
2065
- border-bottom-color:initial;
2066
- transform-origin:center bottom
2067
- }
2068
-
2069
- .tippy-box[data-placement^=left]>.tippy-arrow{
2070
- right:0
2071
- }
2072
-
2073
- .tippy-box[data-placement^=left]>.tippy-arrow:before{
2074
- border-width:8px 0 8px 8px;
2075
- border-left-color:initial;
2076
- right:-7px;
2077
- transform-origin:center left
2078
- }
2079
-
2080
- .tippy-box[data-placement^=right]>.tippy-arrow{
2081
- left:0
2082
- }
2083
-
2084
- .tippy-box[data-placement^=right]>.tippy-arrow:before{
2085
- left:-7px;
2086
- border-width:8px 8px 8px 0;
2087
- border-right-color:initial;
2088
- transform-origin:center right
2089
- }
2090
-
2091
- .tippy-box[data-inertia][data-state=visible]{
2092
- transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)
2093
- }
2094
-
2095
- .tippy-arrow{
2096
- width:16px;
2097
- height:16px;
2098
- color:#333
2099
- }
2100
-
2101
- .tippy-arrow:before{
2102
- content:"";
2103
- position:absolute;
2104
- border-color:transparent;
2105
- border-style:solid
2106
- }
2107
-
2108
- .tippy-content{
2109
- position:relative;
2110
- padding:5px 9px;
2111
- z-index:1
2112
- }
2113
-
2114
- /*
2115
- * GitHub style for Pygments
2116
- * Courtesy of GitHub.com
2117
- */
2118
-
2119
- .highlight .hll {
2120
- background-color: #f8f8f8;
2121
- border: 1px solid #ccc;
2122
- padding: 6px 10px;
2123
- border-radius: 3px;
2124
- }
2125
-
2126
- .highlight .c {
2127
- color: #999988;
2128
- font-style: italic;
2129
- }
2130
-
2131
- .highlight .err {
2132
- color: #a61717;
2133
- background-color: #e3d2d2;
2134
- }
2135
-
2136
- .highlight .k {
2137
- font-weight: bold;
2138
- }
2139
-
2140
- .highlight .o {
2141
- font-weight: bold;
2142
- }
2143
-
2144
- .highlight .cm {
2145
- color: #999988;
2146
- font-style: italic;
2147
- }
2148
-
2149
- .highlight .cp {
2150
- color: #999999;
2151
- font-weight: bold;
2152
- }
2153
-
2154
- .highlight .c1 {
2155
- color: #999988;
2156
- font-style: italic;
2157
- }
2158
-
2159
- .highlight .cs {
2160
- color: #999999;
2161
- font-weight: bold;
2162
- font-style: italic;
2163
- }
2164
-
2165
- .highlight .gd {
2166
- color: #000000;
2167
- background-color: #ffdddd;
2168
- }
2169
-
2170
- .highlight .gd .x {
2171
- color: #000000;
2172
- background-color: #ffaaaa;
2173
- }
2174
-
2175
- .highlight .ge {
2176
- font-style: italic;
2177
- }
2178
-
2179
- .highlight .gr {
2180
- color: #aa0000;
2181
- }
2182
-
2183
- .highlight .gh {
2184
- color: #999999;
2185
- }
2186
-
2187
- .highlight .gi {
2188
- color: #000000;
2189
- background-color: #ddffdd;
2190
- }
2191
-
2192
- .highlight .gi .x {
2193
- color: #000000;
2194
- background-color: #aaffaa;
2195
- }
2196
-
2197
- .highlight .go {
2198
- color: #888888;
2199
- }
2200
-
2201
- .highlight .gp {
2202
- color: #555555;
2203
- }
2204
-
2205
- .highlight .gs {
2206
- font-weight: bold;
2207
- }
2208
-
2209
- .highlight .gu {
2210
- color: #800080;
2211
- font-weight: bold;
2212
- }
2213
-
2214
- .highlight .gt {
2215
- color: #aa0000;
2216
- }
2217
-
2218
- .highlight .kc {
2219
- font-weight: bold;
2220
- }
2221
-
2222
- .highlight .kd {
2223
- font-weight: bold;
2224
- }
2225
-
2226
- .highlight .kn {
2227
- font-weight: bold;
2228
- }
2229
-
2230
- .highlight .kp {
2231
- font-weight: bold;
2232
- }
2233
-
2234
- .highlight .kr {
2235
- font-weight: bold;
2236
- }
2237
-
2238
- .highlight .kt {
2239
- color: #445588;
2240
- font-weight: bold;
2241
- }
2242
-
2243
- .highlight .m {
2244
- color: #009999;
2245
- }
2246
-
2247
- .highlight .s {
2248
- color: #dd1144;
2249
- }
2250
-
2251
- .highlight .n {
2252
- color: #333333;
2253
- }
2254
-
2255
- .highlight .na {
2256
- color: teal;
2257
- }
2258
-
2259
- .highlight .nb {
2260
- color: #0086b3;
2261
- }
2262
-
2263
- .highlight .nc {
2264
- color: #445588;
2265
- font-weight: bold;
2266
- }
2267
-
2268
- .highlight .no {
2269
- color: teal;
2270
- }
2271
-
2272
- .highlight .ni {
2273
- color: purple;
2274
- }
2275
-
2276
- .highlight .ne {
2277
- color: #990000;
2278
- font-weight: bold;
2279
- }
2280
-
2281
- .highlight .nf {
2282
- color: #990000;
2283
- font-weight: bold;
2284
- }
2285
-
2286
- .highlight .nn {
2287
- color: #555555;
2288
- }
2289
-
2290
- .highlight .nt {
2291
- color: navy;
2292
- }
2293
-
2294
- .highlight .nv {
2295
- color: teal;
2296
- }
2297
-
2298
- .highlight .ow {
2299
- font-weight: bold;
2300
- }
2301
-
2302
- .highlight .w {
2303
- color: #bbbbbb;
2304
- }
2305
-
2306
- .highlight .mf {
2307
- color: #009999;
2308
- }
2309
-
2310
- .highlight .mh {
2311
- color: #009999;
2312
- }
2313
-
2314
- .highlight .mi {
2315
- color: #009999;
2316
- }
2317
-
2318
- .highlight .mo {
2319
- color: #009999;
2320
- }
2321
-
2322
- .highlight .sb {
2323
- color: #dd1144;
2324
- }
2325
-
2326
- .highlight .sc {
2327
- color: #dd1144;
2328
- }
2329
-
2330
- .highlight .sd {
2331
- color: #dd1144;
2332
- }
2333
-
2334
- .highlight .s2 {
2335
- color: #dd1144;
2336
- }
2337
-
2338
- .highlight .se {
2339
- color: #dd1144;
2340
- }
2341
-
2342
- .highlight .sh {
2343
- color: #dd1144;
2344
- }
2345
-
2346
- .highlight .si {
2347
- color: #dd1144;
2348
- }
2349
-
2350
- .highlight .sx {
2351
- color: #dd1144;
2352
- }
2353
-
2354
- .highlight .sr {
2355
- color: #009926;
2356
- }
2357
-
2358
- .highlight .s1 {
2359
- color: #dd1144;
2360
- }
2361
-
2362
- .highlight .ss {
2363
- color: #990073;
2364
- }
2365
-
2366
- .highlight .bp {
2367
- color: #999999;
2368
- }
2369
-
2370
- .highlight .vc {
2371
- color: teal;
2372
- }
2373
-
2374
- .highlight .vg {
2375
- color: teal;
2376
- }
2377
-
2378
- .highlight .vi {
2379
- color: teal;
2380
- }
2381
-
2382
- .highlight .il {
2383
- color: #009999;
2384
- }
2385
-
2386
- .highlight .gc {
2387
- color: #999;
2388
- background-color: #eaf2f5;
2389
- }
2390
-
2391
- .tippy-box[data-theme~="lookbook"] {
2392
- --tw-bg-opacity: 1;
2393
- background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
2394
- font-size: 0.75rem;
2395
- line-height: 1rem;
2396
- --tw-text-opacity: 1;
2397
- color: rgba(255, 255, 255, var(--tw-text-opacity));
2398
- opacity: 0.9;
2399
- }
2400
-
2401
- .tippy-box[data-theme~="lookbook"][data-placement^="top"] > .tippy-arrow::before {
2402
- border-top-color: #6366f1;
2403
- }
2404
-
2405
- .tippy-box[data-theme~="lookbook"][data-placement^="bottom"] > .tippy-arrow::before {
2406
- border-bottom-color: #6366f1;
2407
- }
2408
-
2409
- .tippy-box[data-theme~="lookbook"][data-placement^="left"] > .tippy-arrow::before {
2410
- border-left-color: #6366f1;
2411
- }
2412
-
2413
- .tippy-box[data-theme~="lookbook"][data-placement^="right"] > .tippy-arrow::before {
2414
- border-right-color: #6366f1;
2415
- }
2416
-
2417
- .hover\:border-gray-300:hover {
2418
- --tw-border-opacity: 1;
2419
- border-color: rgba(209, 213, 219, var(--tw-border-opacity));
2420
- }
2421
-
2422
- .hover\:bg-indigo-100:hover {
2423
- --tw-bg-opacity: 1;
2424
- background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
2425
- }
2426
-
2427
- .hover\:bg-gray-200:hover {
2428
- --tw-bg-opacity: 1;
2429
- background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
2430
- }
2431
-
2432
- .hover\:bg-opacity-20:hover {
2433
- --tw-bg-opacity: 0.2;
2434
- }
2435
-
2436
- .hover\:bg-opacity-50:hover {
2437
- --tw-bg-opacity: 0.5;
2438
- }
2439
-
2440
- .hover\:text-indigo-500:hover {
2441
- --tw-text-opacity: 1;
2442
- color: rgba(99, 102, 241, var(--tw-text-opacity));
2443
- }
2444
-
2445
- .hover\:text-indigo-800:hover {
2446
- --tw-text-opacity: 1;
2447
- color: rgba(55, 48, 163, var(--tw-text-opacity));
2448
- }
2449
-
2450
- .hover\:text-gray-700:hover {
2451
- --tw-text-opacity: 1;
2452
- color: rgba(55, 65, 81, var(--tw-text-opacity));
2453
- }
2454
-
2455
- .focus\:outline-none:focus {
2456
- outline: 2px solid transparent;
2457
- outline-offset: 2px;
2458
- }
2459
-
2460
- .focus\:ring-0:focus {
2461
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2462
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2463
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
2464
- }
2465
-
2466
- .group:hover .group-hover\:text-indigo-800 {
2467
- --tw-text-opacity: 1;
2468
- color: rgba(55, 48, 163, var(--tw-text-opacity));
2469
- }
2470
-
2471
- @media (min-width: 768px) {
2472
- .md\:-mx-px {
2473
- margin-left: -1px;
2474
- margin-right: -1px;
2475
- }
2476
-
2477
- .md\:ml-3 {
2478
- margin-left: 0.75rem;
2479
- }
2480
-
2481
- .md\:grid {
2482
- display: grid;
2483
- }
2484
-
2485
- .md\:h-auto {
2486
- height: auto;
2487
- }
2488
-
2489
- .md\:min-h-0 {
2490
- min-height: 0px;
2491
- }
2492
-
2493
- .md\:border-l {
2494
- border-left-width: 1px;
2495
- }
2496
-
2497
- .md\:pl-3 {
2498
- padding-left: 0.75rem;
2499
- }
2500
-
2501
- .md\:pr-4 {
2502
- padding-right: 1rem;
2503
- }
2504
- }