Last active
July 21, 2023 05:06
-
-
Save brianleejackson/4b2499b5518e0ee9a81348efda135a8e to your computer and use it in GitHub Desktop.
Obsidian 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
/* preview-mode paragraphs */ | |
p{ | |
padding-top: 6px; | |
padding-bottom: 6px; | |
line-height: 1.6; | |
} | |
/* preview-mode lists */ | |
li{ | |
padding-top: 6px; | |
padding-bottom: 6px; | |
line-height: 1.5; | |
} | |
/* editor all content */ | |
div.cm-content { | |
padding-top: 6px; | |
padding-bottom: 6px; | |
line-height: 1.6; | |
} | |
/* editor lists */ | |
span.cm-list-1 { | |
padding-top: 6px; | |
padding-bottom: 6px; | |
line-height: 1.5; | |
} | |
/* header text */ | |
.inline-title, .cm-header {color:#ffffff;} | |
/* nav font */ | |
.nav-file-title, .nav-folder-title { | |
font-size: 14px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment