2023-02-04 18:17:47 -05:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
2023-02-04 19:19:53 -05:00
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2023-02-06 16:00:59 -05:00
|
|
|
/* * {
|
2023-02-04 19:19:53 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
outline: 1px solid limegreen !important;
|
2023-02-07 16:22:35 -05:00
|
|
|
} */
|
|
|
|
|
|
2023-02-24 11:24:09 -05:00
|
|
|
blockquote, dd, dl, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-13 20:13:59 -05:00
|
|
|
.scroll-down-enter {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2023-02-14 21:23:14 -05:00
|
|
|
/* .scroll-down-appear {
|
2023-02-13 20:13:59 -05:00
|
|
|
opacity: 0;
|
2023-02-14 21:23:14 -05:00
|
|
|
} */
|
2023-02-13 20:13:59 -05:00
|
|
|
|
|
|
|
|
.scroll-down-enter-active {
|
|
|
|
|
opacity: 1;
|
2023-02-14 21:23:14 -05:00
|
|
|
transition: opacity 400ms;
|
2023-02-13 20:13:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll-down-exit {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll-down-exit-active {
|
|
|
|
|
opacity: 0;
|
2023-02-14 21:23:14 -05:00
|
|
|
transition: opacity 400ms;
|
2023-02-13 20:13:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-07 16:22:35 -05:00
|
|
|
.blink {
|
|
|
|
|
animation: blink 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes blink {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2023-02-11 11:37:20 -05:00
|
|
|
50% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cursorBlink {
|
2023-02-11 11:54:03 -05:00
|
|
|
animation: blink 1s linear infinite;
|
2023-02-11 11:37:20 -05:00
|
|
|
}
|
|
|
|
|
@keyframes blink {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
79% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
2023-02-10 21:00:02 -05:00
|
|
|
80% {
|
2023-02-07 16:22:35 -05:00
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2023-02-11 11:37:20 -05:00
|
|
|
99% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2023-02-07 16:22:35 -05:00
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blink2 {
|
|
|
|
|
animation: blink 1500ms linear infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes blink2 {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-08 15:26:42 -05:00
|
|
|
|
2023-02-23 23:56:55 -05:00
|
|
|
.prose {
|
|
|
|
|
color:var(--tw-prose-body);
|
|
|
|
|
max-width:65ch
|
|
|
|
|
}
|
|
|
|
|
.prose :where([class~=lead]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-lead);
|
|
|
|
|
font-size:1.25em;
|
|
|
|
|
line-height:1.6;
|
|
|
|
|
margin-bottom:1.2em;
|
|
|
|
|
margin-top:1.2em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(a):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-links);
|
|
|
|
|
font-weight:500;
|
|
|
|
|
text-decoration:underline
|
|
|
|
|
}
|
|
|
|
|
.prose :where(strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-bold);
|
|
|
|
|
font-weight:600
|
|
|
|
|
}
|
|
|
|
|
.prose :where(a strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(blockquote strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(thead th strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:decimal;
|
|
|
|
|
margin-bottom:1.25em;
|
|
|
|
|
margin-top:1.25em;
|
|
|
|
|
padding-left:1.625em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=A]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:upper-alpha
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=a]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:lower-alpha
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:upper-alpha
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:lower-alpha
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=I]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:upper-roman
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=i]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:lower-roman
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:upper-roman
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:lower-roman
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:decimal
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ul):not(:where([class~=not-prose] *)) {
|
|
|
|
|
list-style-type:disc;
|
|
|
|
|
margin-bottom:1.25em;
|
|
|
|
|
margin-top:1.25em;
|
|
|
|
|
padding-left:1.625em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol>li):not(:where([class~=not-prose] *))::marker {
|
|
|
|
|
color:var(--tw-prose-counters);
|
|
|
|
|
font-weight:400
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ul>li):not(:where([class~=not-prose] *))::marker {
|
|
|
|
|
color:var(--tw-prose-bullets)
|
|
|
|
|
}
|
|
|
|
|
.prose :where(hr):not(:where([class~=not-prose] *)) {
|
|
|
|
|
border-color:var(--tw-prose-hr);
|
|
|
|
|
border-top-width:1px;
|
|
|
|
|
margin-bottom:3em;
|
|
|
|
|
margin-top:3em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(blockquote):not(:where([class~=not-prose] *)) {
|
|
|
|
|
border-left-color:var(--tw-prose-quote-borders);
|
|
|
|
|
border-left-width:.25rem;
|
|
|
|
|
color:var(--tw-prose-quotes);
|
|
|
|
|
font-style:italic;
|
|
|
|
|
font-style:normal;
|
|
|
|
|
font-weight:500;
|
|
|
|
|
margin-bottom:1.6em;
|
|
|
|
|
margin-top:1.6em;
|
|
|
|
|
padding-left:1em;
|
|
|
|
|
quotes:"\201C""\201D""\2018""\2019"
|
|
|
|
|
}
|
|
|
|
|
.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before {
|
|
|
|
|
content:open-quote
|
|
|
|
|
}
|
|
|
|
|
.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after {
|
|
|
|
|
content:close-quote
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h1):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-headings);
|
|
|
|
|
font-size:2.25em;
|
|
|
|
|
font-weight:800;
|
|
|
|
|
line-height:1.1111111;
|
|
|
|
|
margin-bottom:.8888889em;
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h1 strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-weight:900
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h2):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-headings);
|
|
|
|
|
font-size:1.5em;
|
|
|
|
|
font-weight:700;
|
|
|
|
|
line-height:1.3333333;
|
|
|
|
|
margin-bottom:1em;
|
|
|
|
|
margin-top:2em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h2 strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-weight:800
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h3):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-headings);
|
|
|
|
|
font-size:1.25em;
|
|
|
|
|
font-weight:600;
|
|
|
|
|
line-height:1.6;
|
|
|
|
|
margin-bottom:.6em;
|
|
|
|
|
margin-top:1.6em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h3 strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-weight:700
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h4):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-headings);
|
|
|
|
|
font-weight:600;
|
|
|
|
|
line-height:1.5;
|
|
|
|
|
margin-bottom:.5em;
|
|
|
|
|
margin-top:1.5em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h4 strong):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-weight:700
|
|
|
|
|
}
|
|
|
|
|
.prose :where(img):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:2em;
|
|
|
|
|
margin-top:2em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(figure>*):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(figcaption):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-captions);
|
|
|
|
|
font-size:.875em;
|
|
|
|
|
line-height:1.4285714;
|
|
|
|
|
margin-top:.8571429em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-code);
|
|
|
|
|
font-size:.875em;
|
2023-02-24 11:24:09 -05:00
|
|
|
font-weight:600;
|
2023-02-23 23:56:55 -05:00
|
|
|
}
|
|
|
|
|
.prose :where(code):not(:where([class~=not-prose] *)):before {
|
|
|
|
|
content:"`"
|
|
|
|
|
}
|
|
|
|
|
.prose :where(code):not(:where([class~=not-prose] *)):after {
|
|
|
|
|
content:"`"
|
|
|
|
|
}
|
|
|
|
|
.prose :where(a code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h1 code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h2 code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-size:.875em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h3 code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-size:.9em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h4 code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(blockquote code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(thead th code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:inherit
|
|
|
|
|
}
|
|
|
|
|
.prose :where(pre):not(:where([class~=not-prose] *)) {
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
border-radius:.375rem;
|
|
|
|
|
color:currentColor;
|
|
|
|
|
font-size:.875em;
|
|
|
|
|
font-weight:400;
|
|
|
|
|
line-height:1.7142857;
|
|
|
|
|
margin:0;
|
|
|
|
|
overflow-x:auto;
|
|
|
|
|
padding:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(pre code):not(:where([class~=not-prose] *)) {
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
border-radius:0;
|
|
|
|
|
border-width:0;
|
|
|
|
|
color:inherit;
|
|
|
|
|
font-family:inherit;
|
|
|
|
|
font-size:inherit;
|
|
|
|
|
font-weight:inherit;
|
|
|
|
|
line-height:inherit;
|
|
|
|
|
padding:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(pre code):not(:where([class~=not-prose] *)):before {
|
|
|
|
|
content:none
|
|
|
|
|
}
|
|
|
|
|
.prose :where(pre code):not(:where([class~=not-prose] *)):after {
|
|
|
|
|
content:none
|
|
|
|
|
}
|
|
|
|
|
.prose :where(table):not(:where([class~=not-prose] *)) {
|
|
|
|
|
font-size:.875em;
|
|
|
|
|
line-height:1.7142857;
|
|
|
|
|
margin-bottom:2em;
|
|
|
|
|
margin-top:2em;
|
|
|
|
|
table-layout:auto;
|
|
|
|
|
text-align:left;
|
|
|
|
|
width:100%
|
|
|
|
|
}
|
|
|
|
|
.prose :where(thead):not(:where([class~=not-prose] *)) {
|
|
|
|
|
border-bottom-color:var(--tw-prose-th-borders);
|
|
|
|
|
border-bottom-width:1px
|
|
|
|
|
}
|
|
|
|
|
.prose :where(thead th):not(:where([class~=not-prose] *)) {
|
|
|
|
|
color:var(--tw-prose-headings);
|
|
|
|
|
font-weight:600;
|
|
|
|
|
padding-bottom:.5714286em;
|
|
|
|
|
padding-left:.5714286em;
|
|
|
|
|
padding-right:.5714286em;
|
|
|
|
|
vertical-align:bottom
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tbody tr):not(:where([class~=not-prose] *)) {
|
|
|
|
|
border-bottom-color:var(--tw-prose-td-borders);
|
|
|
|
|
border-bottom-width:1px
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
border-bottom-width:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tbody td):not(:where([class~=not-prose] *)) {
|
|
|
|
|
vertical-align:baseline
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tfoot):not(:where([class~=not-prose] *)) {
|
|
|
|
|
border-top-color:var(--tw-prose-th-borders);
|
|
|
|
|
border-top-width:1px
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tfoot td):not(:where([class~=not-prose] *)) {
|
|
|
|
|
vertical-align:top
|
|
|
|
|
}
|
|
|
|
|
.prose {
|
|
|
|
|
--tw-prose-body:#374151;
|
|
|
|
|
--tw-prose-headings:#111827;
|
|
|
|
|
--tw-prose-lead:#4b5563;
|
|
|
|
|
--tw-prose-links:#111827;
|
|
|
|
|
--tw-prose-bold:#111827;
|
|
|
|
|
--tw-prose-counters:#6b7280;
|
|
|
|
|
--tw-prose-bullets:#d1d5db;
|
|
|
|
|
--tw-prose-hr:#e5e7eb;
|
|
|
|
|
--tw-prose-quotes:#111827;
|
|
|
|
|
--tw-prose-quote-borders:#e5e7eb;
|
|
|
|
|
--tw-prose-captions:#6b7280;
|
|
|
|
|
--tw-prose-code:#111827;
|
|
|
|
|
--tw-prose-pre-code:#e5e7eb;
|
|
|
|
|
--tw-prose-pre-bg:#1f2937;
|
|
|
|
|
--tw-prose-th-borders:#d1d5db;
|
|
|
|
|
--tw-prose-td-borders:#e5e7eb;
|
|
|
|
|
--tw-prose-invert-body:#d1d5db;
|
|
|
|
|
--tw-prose-invert-headings:#fff;
|
|
|
|
|
--tw-prose-invert-lead:#9ca3af;
|
|
|
|
|
--tw-prose-invert-links:#fff;
|
|
|
|
|
--tw-prose-invert-bold:#fff;
|
|
|
|
|
--tw-prose-invert-counters:#9ca3af;
|
|
|
|
|
--tw-prose-invert-bullets:#4b5563;
|
|
|
|
|
--tw-prose-invert-hr:#374151;
|
|
|
|
|
--tw-prose-invert-quotes:#f3f4f6;
|
|
|
|
|
--tw-prose-invert-quote-borders:#374151;
|
|
|
|
|
--tw-prose-invert-captions:#9ca3af;
|
|
|
|
|
--tw-prose-invert-code:#fff;
|
|
|
|
|
--tw-prose-invert-pre-code:#d1d5db;
|
|
|
|
|
--tw-prose-invert-pre-bg:rgba(0,0,0,.5);
|
|
|
|
|
--tw-prose-invert-th-borders:#4b5563;
|
|
|
|
|
--tw-prose-invert-td-borders:#374151;
|
|
|
|
|
font-size:1rem;
|
|
|
|
|
line-height:1.75
|
|
|
|
|
}
|
|
|
|
|
.prose :where(p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.25em;
|
|
|
|
|
margin-top:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(video):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:2em;
|
|
|
|
|
margin-top:2em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(figure):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:2em;
|
|
|
|
|
margin-top:2em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(li):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.5em;
|
|
|
|
|
margin-top:.5em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ol>li):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding-left:.375em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ul>li):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding-left:.375em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>ul>li p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.75em;
|
|
|
|
|
margin-top:.75em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(ul ul,
|
|
|
|
|
ul ol,
|
|
|
|
|
ol ul,
|
|
|
|
|
ol ol):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.75em;
|
|
|
|
|
margin-top:.75em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(hr+*):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h2+*):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h3+*):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(h4+*):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(thead th:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding-left:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(thead th:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding-right:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tbody td,
|
|
|
|
|
tfoot td):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding:.5714286em
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tbody td:first-child,
|
|
|
|
|
tfoot td:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding-left:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(tbody td:last-child,
|
|
|
|
|
tfoot td:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
padding-right:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose :where(.prose>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>ul>li p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.5714286em;
|
|
|
|
|
margin-top:.5714286em
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.1428571em
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.1428571em
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.1428571em
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.1428571em
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose-sm :where(.prose>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>ul>li p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.75em;
|
|
|
|
|
margin-top:.75em
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.25em
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose-base :where(.prose>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>ul>li p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.8888889em;
|
|
|
|
|
margin-top:.8888889em
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose-lg :where(.prose>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.8em;
|
|
|
|
|
margin-top:.8em
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.2em
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.2em
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.2em
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.2em
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose-xl :where(.prose>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>ul>li p):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:.8333333em;
|
|
|
|
|
margin-top:.8333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:1.3333333em
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>:first-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-top:0
|
|
|
|
|
}
|
|
|
|
|
.prose-2xl :where(.prose>:last-child):not(:where([class~=not-prose] *)) {
|
|
|
|
|
margin-bottom:0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code,
|
|
|
|
|
pre {
|
|
|
|
|
font-family: Söhne Mono, Monaco, Andale Mono, Ubuntu Mono, monospace !important;
|
|
|
|
|
}
|
|
|
|
|
code[class='language-plaintext'] {
|
|
|
|
|
white-space: pre-line;
|
|
|
|
|
}
|
|
|
|
|
code.hljs,
|
|
|
|
|
code[class*='language-'],
|
|
|
|
|
pre[class*='language-'] {
|
|
|
|
|
word-wrap: normal;
|
|
|
|
|
background: none;
|
|
|
|
|
color: #fff;
|
|
|
|
|
-webkit-hyphens: none;
|
|
|
|
|
hyphens: none;
|
|
|
|
|
font-size: .85rem;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
tab-size: 4;
|
|
|
|
|
text-align: left;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
word-break: normal;
|
|
|
|
|
word-spacing: normal;
|
|
|
|
|
}
|
|
|
|
|
pre[class*='language-'] {
|
|
|
|
|
border-radius: 0.3em;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
:not(pre) > code.hljs,
|
|
|
|
|
:not(pre) > code[class*='language-'] {
|
|
|
|
|
border-radius: 0.3em;
|
|
|
|
|
padding: 0.1em;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
}
|
|
|
|
|
.hljs-comment {
|
|
|
|
|
color: hsla(0, 0%, 100%, 0.5);
|
|
|
|
|
}
|
|
|
|
|
.hljs-meta {
|
|
|
|
|
color: hsla(0, 0%, 100%, 0.6);
|
|
|
|
|
}
|
|
|
|
|
.hljs-built_in,
|
|
|
|
|
.hljs-class .hljs-title {
|
|
|
|
|
color: #e9950c;
|
|
|
|
|
}
|
|
|
|
|
.hljs-doctag,
|
|
|
|
|
.hljs-formula,
|
|
|
|
|
.hljs-keyword,
|
|
|
|
|
.hljs-literal {
|
|
|
|
|
color: #2e95d3;
|
|
|
|
|
}
|
|
|
|
|
.hljs-addition,
|
|
|
|
|
.hljs-attribute,
|
|
|
|
|
.hljs-meta-string,
|
|
|
|
|
.hljs-regexp,
|
|
|
|
|
.hljs-string {
|
|
|
|
|
color: #00a67d;
|
|
|
|
|
}
|
|
|
|
|
.hljs-attr,
|
|
|
|
|
.hljs-number,
|
|
|
|
|
.hljs-selector-attr,
|
|
|
|
|
.hljs-selector-class,
|
|
|
|
|
.hljs-selector-pseudo,
|
|
|
|
|
.hljs-template-variable,
|
|
|
|
|
.hljs-type,
|
|
|
|
|
.hljs-variable {
|
|
|
|
|
color: #df3079;
|
|
|
|
|
}
|
|
|
|
|
.hljs-bullet,
|
|
|
|
|
.hljs-link,
|
|
|
|
|
.hljs-selector-id,
|
|
|
|
|
.hljs-symbol,
|
|
|
|
|
.hljs-title {
|
|
|
|
|
color: #f22c3d;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-08 15:26:42 -05:00
|
|
|
.dark .dark\:md\:bg-vert-dark-gradient {
|
|
|
|
|
background-image: linear-gradient(180deg, rgba(53, 55, 64, 0), #353740 58.85%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.md\:bg-vert-light-gradient {
|
|
|
|
|
background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 13.94%, #fff 54.73%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.md\:\!bg-transparent {
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[role='button'],
|
|
|
|
|
button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
line-height: 1.25rem;
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
}
|
|
|
|
|
.btn:focus {
|
|
|
|
|
outline: 2px solid transparent;
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
}
|
|
|
|
|
.btn:disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
.btn-primary {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
background-color: rgba(16, 163, 127, var(--tw-bg-opacity));
|
|
|
|
|
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-primary:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(26, 127, 100, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-primary:focus {
|
|
|
|
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width)
|
|
|
|
|
var(--tw-ring-offset-color);
|
|
|
|
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width))
|
|
|
|
|
var(--tw-ring-color);
|
|
|
|
|
--tw-ring-offset-width: 2px;
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
|
|
|
|
|
var(--tw-shadow, 0 0 transparent);
|
|
|
|
|
}
|
|
|
|
|
.btn-primary.focus-visible {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(25, 195, 125, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-primary:focus-visible {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(25, 195, 125, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-primary:disabled:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(16, 163, 127, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
|
|
|
|
|
color: rgba(67, 56, 202, var(--tw-text-opacity));
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
line-height: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
.btn-secondary:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-secondary:focus {
|
|
|
|
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width)
|
|
|
|
|
var(--tw-ring-offset-color);
|
|
|
|
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width))
|
|
|
|
|
var(--tw-ring-color);
|
|
|
|
|
--tw-ring-offset-width: 2px;
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
|
|
|
|
|
var(--tw-shadow, 0 0 transparent);
|
|
|
|
|
}
|
|
|
|
|
.btn-secondary.focus-visible {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-secondary:focus-visible {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-neutral {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
|
|
|
border-color: rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
color: rgba(64, 65, 79, var(--tw-text-opacity));
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
line-height: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
.btn-neutral:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(236, 236, 241, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-neutral:focus {
|
|
|
|
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width)
|
|
|
|
|
var(--tw-ring-offset-color);
|
|
|
|
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width))
|
|
|
|
|
var(--tw-ring-color);
|
|
|
|
|
--tw-ring-offset-width: 2px;
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 transparent;
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
|
|
|
|
|
var(--tw-shadow, 0 0 transparent);
|
|
|
|
|
}
|
|
|
|
|
.btn-neutral.focus-visible {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-neutral:focus-visible {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .btn-neutral {
|
|
|
|
|
--tw-border-opacity: 1;
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
background-color: rgba(52, 53, 65, var(--tw-bg-opacity));
|
|
|
|
|
border-color: rgba(86, 88, 105, var(--tw-border-opacity));
|
|
|
|
|
color: rgba(217, 217, 227, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .btn-neutral:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(64, 65, 79, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-dark {
|
|
|
|
|
--tw-border-opacity: 1;
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
background-color: rgba(52, 53, 65, var(--tw-bg-opacity));
|
|
|
|
|
border-color: rgba(86, 88, 105, var(--tw-border-opacity));
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-dark:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(64, 65, 79, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.btn-small {
|
|
|
|
|
padding: 0.25rem 0.5rem;
|
2023-02-11 13:48:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
height: 1rem;
|
|
|
|
|
width: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
--tw-border-opacity: 1;
|
|
|
|
|
/* background-color: rgba(217,217,227,.8); Original */
|
|
|
|
|
background-color: rgba(217, 217, 227, 0.26);
|
2023-02-14 16:15:45 -05:00
|
|
|
border-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
2023-02-11 13:48:48 -05:00
|
|
|
border-radius: 9999px;
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollbar-transparent::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-radius: 9999px;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
body,
|
|
|
|
|
html {
|
|
|
|
|
height: 100%;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
.dark body,
|
|
|
|
|
.dark html {
|
2023-02-12 22:57:59 -05:00
|
|
|
--tw-bg-opacity: 1;
|
2023-02-14 16:15:45 -05:00
|
|
|
background-color: rgba(52, 53, 65, var(--tw-bg-opacity));
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
#__next,
|
|
|
|
|
#root {
|
|
|
|
|
height: 100%;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown ol {
|
2023-02-14 16:15:45 -05:00
|
|
|
counter-reset: item;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown ul li {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
2023-02-14 16:15:45 -05:00
|
|
|
position: relative;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown ul li:before {
|
2023-02-14 16:15:45 -05:00
|
|
|
content: '•';
|
|
|
|
|
font-size: 0.875rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
line-height: 1.25rem;
|
|
|
|
|
margin-left: -1rem;
|
2023-02-14 16:15:45 -05:00
|
|
|
position: absolute;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown {
|
2023-02-14 16:15:45 -05:00
|
|
|
max-width: none;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
.markdown h1,
|
|
|
|
|
.markdown h2 {
|
|
|
|
|
font-weight: 600;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown h2 {
|
|
|
|
|
margin-bottom: 1rem;
|
2023-02-14 16:15:45 -05:00
|
|
|
margin-top: 2rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown h3 {
|
2023-02-14 16:15:45 -05:00
|
|
|
font-weight: 600;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
.markdown h3,
|
|
|
|
|
.markdown h4 {
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
margin-top: 1rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown h4 {
|
2023-02-14 16:15:45 -05:00
|
|
|
font-weight: 400;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown h5 {
|
2023-02-14 16:15:45 -05:00
|
|
|
font-weight: 600;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown blockquote {
|
|
|
|
|
--tw-border-opacity: 1;
|
2023-02-14 16:15:45 -05:00
|
|
|
border-color: rgba(142, 142, 160, var(--tw-border-opacity));
|
2023-02-12 22:57:59 -05:00
|
|
|
border-left-width: 2px;
|
|
|
|
|
line-height: 1rem;
|
2023-02-14 16:15:45 -05:00
|
|
|
padding-left: 1rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
.markdown ol,
|
|
|
|
|
.markdown ul {
|
2023-02-12 22:57:59 -05:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2023-02-14 16:15:45 -05:00
|
|
|
padding-left: 1rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
.markdown ol li,
|
|
|
|
|
.markdown ol li > p,
|
|
|
|
|
.markdown ol ol,
|
|
|
|
|
.markdown ol ul,
|
|
|
|
|
.markdown ul li,
|
|
|
|
|
.markdown ul li > p,
|
|
|
|
|
.markdown ul ol,
|
|
|
|
|
.markdown ul ul {
|
|
|
|
|
margin: 0;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown table {
|
|
|
|
|
--tw-border-spacing-x: 0px;
|
|
|
|
|
--tw-border-spacing-y: 0px;
|
|
|
|
|
border-collapse: separate;
|
|
|
|
|
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
2023-02-14 16:15:45 -05:00
|
|
|
width: 100%;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown th {
|
2023-02-14 16:15:45 -05:00
|
|
|
background-color: rgba(236, 236, 241, 0.2);
|
2023-02-12 22:57:59 -05:00
|
|
|
border-bottom-width: 1px;
|
|
|
|
|
border-left-width: 1px;
|
|
|
|
|
border-top-width: 1px;
|
2023-02-14 16:15:45 -05:00
|
|
|
padding: 0.25rem 0.75rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown th:first-child {
|
2023-02-14 16:15:45 -05:00
|
|
|
border-top-left-radius: 0.375rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown th:last-child {
|
|
|
|
|
border-right-width: 1px;
|
2023-02-14 16:15:45 -05:00
|
|
|
border-top-right-radius: 0.375rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown td {
|
|
|
|
|
border-bottom-width: 1px;
|
|
|
|
|
border-left-width: 1px;
|
2023-02-14 16:15:45 -05:00
|
|
|
padding: 0.25rem 0.75rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown td:last-child {
|
2023-02-14 16:15:45 -05:00
|
|
|
border-right-width: 1px;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown tbody tr:last-child td:first-child {
|
2023-02-14 16:15:45 -05:00
|
|
|
border-bottom-left-radius: 0.375rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown tbody tr:last-child td:last-child {
|
2023-02-14 16:15:45 -05:00
|
|
|
border-bottom-right-radius: 0.375rem;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.markdown a {
|
|
|
|
|
text-decoration-line: underline;
|
2023-02-14 16:15:45 -05:00
|
|
|
text-underline-offset: 2px;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-flash {
|
2023-02-14 16:15:45 -05:00
|
|
|
-webkit-animation: flash 2s steps(60, start);
|
|
|
|
|
animation: flash 2s steps(60, start);
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes flash {
|
|
|
|
|
0% {
|
2023-02-14 16:15:45 -05:00
|
|
|
background-color: hsla(0, 0%, 100%, 0.4);
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes flash {
|
|
|
|
|
0% {
|
2023-02-14 16:15:45 -05:00
|
|
|
background-color: hsla(0, 0%, 100%, 0.4);
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.truncate {
|
|
|
|
|
overflow: hidden;
|
2023-02-14 16:15:45 -05:00
|
|
|
white-space: nowrap;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
.text-ellipsis,
|
|
|
|
|
.truncate {
|
|
|
|
|
text-overflow: ellipsis;
|
2023-02-12 22:57:59 -05:00
|
|
|
}
|
2023-02-13 10:20:21 -05:00
|
|
|
|
|
|
|
|
.shadow-\[0_0_10px_rgba\(0\2c 0\2c 0\2c 0\.10\)\],
|
|
|
|
|
.shadow-lg {
|
2023-02-14 16:15:45 -05:00
|
|
|
box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent),
|
|
|
|
|
var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
|
2023-02-13 10:20:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.group:hover .group-hover\:visible {
|
2023-02-14 16:15:45 -05:00
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
.group:hover .group-hover\:from-\[\#2A2B32\] {
|
|
|
|
|
--tw-gradient-from: #2a2b32;
|
|
|
|
|
--tw-gradient-to: rgba(42, 43, 50, 0);
|
|
|
|
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
|
|
|
}
|
|
|
|
|
.group:hover .group-hover\:text-gray-500 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(142, 142, 160, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.group:hover .group-hover\:text-gray-700 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(64, 65, 79, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:prose-invert {
|
|
|
|
|
--tw-prose-body: var(--tw-prose-invert-body);
|
|
|
|
|
--tw-prose-headings: var(--tw-prose-invert-headings);
|
|
|
|
|
--tw-prose-lead: var(--tw-prose-invert-lead);
|
|
|
|
|
--tw-prose-links: var(--tw-prose-invert-links);
|
|
|
|
|
--tw-prose-bold: var(--tw-prose-invert-bold);
|
|
|
|
|
--tw-prose-counters: var(--tw-prose-invert-counters);
|
|
|
|
|
--tw-prose-bullets: var(--tw-prose-invert-bullets);
|
|
|
|
|
--tw-prose-hr: var(--tw-prose-invert-hr);
|
|
|
|
|
--tw-prose-quotes: var(--tw-prose-invert-quotes);
|
|
|
|
|
--tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
|
|
|
|
|
--tw-prose-captions: var(--tw-prose-invert-captions);
|
|
|
|
|
--tw-prose-code: var(--tw-prose-invert-code);
|
|
|
|
|
--tw-prose-pre-code: var(--tw-prose-invert-pre-code);
|
|
|
|
|
--tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
|
|
|
|
|
--tw-prose-th-borders: var(--tw-prose-invert-th-borders);
|
|
|
|
|
--tw-prose-td-borders: var(--tw-prose-invert-td-borders);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:border-gray-600 {
|
|
|
|
|
--tw-border-opacity: 1;
|
|
|
|
|
border-color: rgba(86, 88, 105, var(--tw-border-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:border-gray-900\/50 {
|
|
|
|
|
border-color: rgba(32, 33, 35, 0.5);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:border-gray-700 {
|
|
|
|
|
--tw-border-opacity: 1;
|
|
|
|
|
border-color: rgba(64, 65, 79, var(--tw-border-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:border-white\/20 {
|
|
|
|
|
border-color: hsla(0, 0%, 100%, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:border-white\/10 {
|
|
|
|
|
border-color: hsla(0, 0%, 100%, 0.1);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:border-black\/20 {
|
|
|
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-gray-800 {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(52, 53, 65, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-\[\#444654\] {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(68, 70, 84, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-gray-700 {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(64, 65, 79, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-gray-800\/90 {
|
|
|
|
|
background-color: rgba(52, 53, 65, 0.9);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-gray-900 {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(32, 33, 35, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-transparent {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-white\/10 {
|
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.1);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-white\/5 {
|
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.05);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-gray-500 {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(142, 142, 160, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:bg-green-700 {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(26, 127, 100, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-gray-100 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(236, 236, 241, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-gray-200 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(217, 217, 227, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-gray-400 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(172, 172, 190, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-white {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-white\/50 {
|
|
|
|
|
color: hsla(0, 0%, 100%, 0.5);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-gray-600 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(86, 88, 105, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-gray-500 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(142, 142, 160, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:text-gray-300 {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(197, 197, 210, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:opacity-100 {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:shadow-\[0_0_15px_rgba\(0\2c 0\2c 0\2c 0\.10\)\] {
|
|
|
|
|
--tw-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
|
|
|
--tw-shadow-colored: 0 0 15px var(--tw-shadow-color);
|
|
|
|
|
box-shadow: 0 0 transparent, 0 0 transparent, var(--tw-shadow);
|
|
|
|
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 transparent),
|
|
|
|
|
var(--tw-ring-shadow, 0 0 transparent), var(--tw-shadow);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:ring-gray-600 {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(86, 88, 105, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:ring-white\/20 {
|
|
|
|
|
--tw-ring-color: hsla(0, 0%, 100%, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:last\:border-0:last-child {
|
|
|
|
|
border-width: 0;
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:bg-black\/10:hover {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:bg-gray-700:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(64, 65, 79, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:bg-gray-900:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(32, 33, 35, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:bg-gray-100:hover {
|
|
|
|
|
--tw-bg-opacity: 1;
|
|
|
|
|
background-color: rgba(236, 236, 241, var(--tw-bg-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:bg-gray-500\/10:hover {
|
|
|
|
|
background-color: hsla(240, 9%, 59%, 0.1);
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:text-gray-200:hover {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(217, 217, 227, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:text-white:hover {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:hover\:text-gray-400:hover {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(172, 172, 190, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:focus\:border-white:focus {
|
|
|
|
|
--tw-border-opacity: 1;
|
|
|
|
|
border-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:focus\:ring-white:focus {
|
|
|
|
|
--tw-ring-opacity: 1;
|
|
|
|
|
--tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:disabled\:text-gray-400:disabled {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(172, 172, 190, var(--tw-text-opacity));
|
|
|
|
|
}
|
|
|
|
|
.dark .dark\:disabled\:hover\:bg-transparent:hover:disabled {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
.dark .disabled\:dark\:hover\:text-gray-400:hover:disabled {
|
|
|
|
|
--tw-text-opacity: 1;
|
|
|
|
|
color: rgba(172, 172, 190, var(--tw-text-opacity));
|
|
|
|
|
}
|
2023-02-13 13:32:54 -05:00
|
|
|
|
|
|
|
|
/* .result-streaming>:not(ol):not(ul):not(pre):last-child:after,
|
|
|
|
|
.result-streaming>ol:last-child li:last-child:after,
|
|
|
|
|
.result-streaming>pre:last-child code:after,
|
|
|
|
|
.result-streaming>ul:last-child li:last-child:after {
|
|
|
|
|
-webkit-animation:blink 1s steps(5,start) infinite;
|
|
|
|
|
animation:blink 1s steps(5,start) infinite;
|
|
|
|
|
content:"▋";
|
|
|
|
|
margin-left:.25rem;
|
|
|
|
|
vertical-align:baseline
|
|
|
|
|
} */
|
|
|
|
|
|
2023-02-14 16:15:45 -05:00
|
|
|
@-webkit-keyframes spin {
|
|
|
|
|
to {
|
|
|
|
|
-webkit-transform: rotate(1turn);
|
|
|
|
|
transform: rotate(1turn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
to {
|
|
|
|
|
-webkit-transform: rotate(1turn);
|
|
|
|
|
transform: rotate(1turn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.animate-spin {
|
|
|
|
|
-webkit-animation: spin 1s linear infinite;
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-13 13:32:54 -05:00
|
|
|
.result-streaming {
|
2023-02-14 16:15:45 -05:00
|
|
|
-webkit-animation: blink 1s steps(5, start) infinite;
|
|
|
|
|
animation: blink 1s steps(5, start) infinite;
|
2023-02-13 13:32:54 -05:00
|
|
|
/* content:"▋"; */
|
2023-02-14 16:15:45 -05:00
|
|
|
margin-left: 0.25rem;
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|