Last active
June 24, 2022 15:21
-
-
Save Theigrams/c626f0572fdf0366fa761c1f6a666152 to your computer and use it in GitHub Desktop.
A Logseq custom CSS
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
| :root { | |
| --ls-font-family: "Iowan Old Style", serif, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | |
| font-size: 16px; | |
| } | |
| a.external-link { | |
| color: #e0491f; | |
| border-bottom: 1px dotted #bbb; | |
| } | |
| a.external-link:hover { | |
| border-bottom: 1px solid; | |
| } | |
| :not(pre)>code { | |
| font-family: 'Fira Code', Courier, monospace, Consolas, SFMono-Regular; | |
| color: #286ee0; | |
| background-color: #F4EFF1; | |
| text-rendering: optimizeLegibility; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment