Last active
April 13, 2025 14:55
-
-
Save timkelty/693f28936e216588d023516aca25dfc9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* See: node_modules/@tailwindcss/typography/dist/typography.css */ | |
@layer components { | |
@responsive { | |
.prose { | |
color: theme("colors.gray.copy"); | |
max-width: 65ch; | |
} | |
.prose [class~="lead"] { | |
color: theme("colors.gray.copy"); | |
font-size: 1.25em; | |
line-height: 1.6; | |
margin-top: 1.2em; | |
margin-bottom: 1.2em; | |
} | |
.prose a { | |
position: relative; | |
} | |
.prose a::before { | |
content: ""; | |
position: absolute; | |
bottom: -0.3em; | |
left: 0; | |
right: 0; | |
height: 3px; | |
width: 100%; | |
@apply bg-gradient-to-r bg-gradient-teal transition-transform duration-200 transform; | |
pointer-events: none; | |
} | |
.prose a:hover::before, | |
.prose a:focus::before { | |
transform: scaleX(0.95); | |
} | |
.prose strong { | |
font-weight: 600; | |
} | |
.prose ol { | |
counter-reset: list-counter; | |
margin-top: 1.25em; | |
margin-bottom: 1.25em; | |
} | |
.prose ol > li { | |
position: relative; | |
counter-increment: list-counter; | |
padding-left: 1.75em; | |
} | |
.prose ol > li::before { | |
content: counter(list-counter) "."; | |
position: absolute; | |
font-weight: 400; | |
color: theme("colors.gray.600"); | |
} | |
.prose ul > li { | |
position: relative; | |
padding-left: 1.75em; | |
} | |
.prose ul > li::before { | |
content: ""; | |
position: absolute; | |
background-color: theme("colors.gray.400"); | |
border-radius: 50%; | |
width: 0.375em; | |
height: 0.375em; | |
top: calc(0.875em - 0.1875em); | |
left: 0.25em; | |
} | |
.prose hr { | |
border-color: theme("colors.gray.stroke"); | |
border-top-width: 1px; | |
margin-top: 3em; | |
margin-bottom: 3em; | |
} | |
.prose blockquote { | |
font-weight: 500; | |
font-style: italic; | |
color: #1a202c; | |
border-left-width: 0.25rem; | |
border-left-color: theme("colors.gray.stroke"); | |
quotes: "\201C""\201D""\2018""\2019"; | |
margin-top: 1.6em; | |
margin-bottom: 1.6em; | |
padding-left: 1em; | |
} | |
.prose blockquote p:first-of-type::before { | |
content: open-quote; | |
} | |
.prose blockquote p:last-of-type::after { | |
content: close-quote; | |
} | |
.prose h1 { | |
font-weight: 800; | |
font-size: 2.25em; | |
margin-top: 0; | |
margin-bottom: 0.8888889em; | |
line-height: 1.1111111; | |
} | |
.prose h2 { | |
font-weight: 700; | |
font-size: 1.5em; | |
margin-top: 2em; | |
margin-bottom: 1em; | |
line-height: 1.3333333; | |
} | |
.prose h3 { | |
font-weight: 600; | |
font-size: 1.25em; | |
margin-top: 1.6em; | |
margin-bottom: 0.6em; | |
line-height: 1.6; | |
} | |
.prose h4 { | |
font-weight: 600; | |
margin-top: 1.5em; | |
margin-bottom: 0.5em; | |
line-height: 1.5; | |
} | |
.prose figure figcaption { | |
color: theme("colors.gray.600"); | |
font-size: 0.875em; | |
line-height: 1.4285714; | |
margin-top: 0.8571429em; | |
} | |
.prose code { | |
color: theme("colors.gray.900"); | |
font-weight: 600; | |
font-size: 0.875em; | |
} | |
.prose code::before { | |
content: "`"; | |
} | |
.prose code::after { | |
content: "`"; | |
} | |
.prose pre { | |
color: theme("colors.gray.300"); | |
background-color: theme("colors.gray.800"); | |
overflow-x: auto; | |
font-size: 0.875em; | |
line-height: 1.7142857; | |
margin-top: 1.7142857em; | |
margin-bottom: 1.7142857em; | |
border-radius: 0.375rem; | |
padding-top: 0.8571429em; | |
padding-right: 1.1428571em; | |
padding-bottom: 0.8571429em; | |
padding-left: 1.1428571em; | |
} | |
.prose pre code { | |
background-color: transparent; | |
border-width: 0; | |
border-radius: 0; | |
padding: 0; | |
font-weight: 400; | |
color: inherit; | |
font-size: inherit; | |
font-family: inherit; | |
line-height: inherit; | |
} | |
.prose pre code::before { | |
content: ""; | |
} | |
.prose pre code::after { | |
content: ""; | |
} | |
.prose table { | |
width: 100%; | |
table-layout: auto; | |
text-align: left; | |
margin-top: 2em; | |
margin-bottom: 2em; | |
font-size: 0.875em; | |
line-height: 1.7142857; | |
} | |
.prose thead { | |
color: #1a202c; | |
font-weight: 600; | |
border-bottom-width: 1px; | |
border-bottom-color: theme("colors.gray.stroke"); | |
} | |
.prose thead th { | |
vertical-align: bottom; | |
padding-right: 0.5714286em; | |
padding-bottom: 0.5714286em; | |
padding-left: 0.5714286em; | |
} | |
.prose tbody tr { | |
border-bottom-width: 1px; | |
border-bottom-color: theme("colors.gray.stroke"); | |
} | |
.prose tbody tr:last-child { | |
border-bottom-width: 0; | |
} | |
.prose tbody td { | |
vertical-align: top; | |
padding-top: 0.5714286em; | |
padding-right: 0.5714286em; | |
padding-bottom: 0.5714286em; | |
padding-left: 0.5714286em; | |
} | |
.prose { | |
font-size: 1rem; | |
line-height: 1.75; | |
} | |
.prose p { | |
margin-top: 1.25em; | |
margin-bottom: 1.25em; | |
} | |
.prose img { | |
margin-top: 2em; | |
margin-bottom: 2em; | |
} | |
.prose video { | |
margin-top: 2em; | |
margin-bottom: 2em; | |
} | |
.prose figure { | |
margin-top: 2em; | |
margin-bottom: 2em; | |
} | |
.prose figure > * { | |
margin-top: 0; | |
margin-bottom: 0; | |
} | |
.prose h2 code { | |
font-size: 0.875em; | |
} | |
.prose h3 code { | |
font-size: 0.9em; | |
} | |
.prose ul { | |
margin-top: 1.25em; | |
margin-bottom: 1.25em; | |
} | |
.prose li { | |
margin-top: 0.5em; | |
margin-bottom: 0.5em; | |
} | |
.prose ol > li:before { | |
left: 0; | |
} | |
.prose > ul > li p { | |
margin-top: 0.75em; | |
margin-bottom: 0.75em; | |
} | |
.prose > ul > li > *:first-child { | |
margin-top: 1.25em; | |
} | |
.prose > ul > li > *:last-child { | |
margin-bottom: 1.25em; | |
} | |
.prose > ol > li > *:first-child { | |
margin-top: 1.25em; | |
} | |
.prose > ol > li > *:last-child { | |
margin-bottom: 1.25em; | |
} | |
.prose ul ul, | |
.prose ul ol, | |
.prose ol ul, | |
.prose ol ol { | |
margin-top: 0.75em; | |
margin-bottom: 0.75em; | |
} | |
.prose hr + * { | |
margin-top: 0; | |
} | |
.prose h2 + * { | |
margin-top: 0; | |
} | |
.prose h3 + * { | |
margin-top: 0; | |
} | |
.prose h4 + * { | |
margin-top: 0; | |
} | |
.prose thead th:first-child { | |
padding-left: 0; | |
} | |
.prose thead th:last-child { | |
padding-right: 0; | |
} | |
.prose tbody td:first-child { | |
padding-left: 0; | |
} | |
.prose tbody td:last-child { | |
padding-right: 0; | |
} | |
.prose > :first-child { | |
margin-top: 0; | |
} | |
.prose > :last-child { | |
margin-bottom: 0; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment