Last active
December 17, 2022 15:27
-
-
Save cntrump/5ab234fb67fa00fd30c25de8987e269e to your computer and use it in GitHub Desktop.
Docsy hugo theme CSS patch
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
body { | |
font-family: system-ui; | |
} | |
tt, code, kbd, samp, pre { | |
font-family: ui-monospace, 'SF Mono', monospace; | |
} | |
code[class*="language-"], | |
pre[class*="language-"] { | |
font-family: 'SF Mono', monospace; | |
} | |
.td-content, | |
.td-sidebar, | |
.td-toc { | |
font-size: 13px; | |
line-height: 1.5; | |
} | |
.td-content h1 { | |
font-size: 1.75em; | |
} | |
.td-content h2 { | |
font-size: 1.5em; | |
} | |
.td-content h3 { | |
font-size: 1.25em; | |
} | |
.td-content h4, | |
.td-content h5, | |
.td-content h6 { | |
font-size: 1em; | |
} | |
code { | |
font-size: 85%; | |
} | |
.td-content pre { | |
line-height: 1.25; | |
} | |
.td-content pre > code { | |
font-size: 11px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment