Created
March 2, 2023 03:28
-
-
Save meain/f6d69315e326794dd94281155d331bc8 to your computer and use it in GitHub Desktop.
Logseq custom CSS
This file contains 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
/* Use this with harmony theme */ | |
* { | |
/* font-family: "ProFont for Powerline" !important; */ | |
font-family: "Labrada" !important; | |
font-weight: 500; | |
} | |
.block-properties { | |
background: none; | |
margin: 0; | |
padding: 0; | |
} | |
.block-properties > div > span, | |
.page-property-key { | |
background: none; | |
color: #9e9c99; | |
text-transform: uppercase; | |
padding: 2px 0; | |
} | |
.block-properties > div > div { | |
font-size: 0.875rem; | |
} | |
a.external-link:after { | |
display: none; /* Removing a custom theme extra */ | |
} | |
blockquote { | |
padding: 5px 10px; | |
} | |
a.tag[data-ref] { | |
background: #5c859f; | |
border-radius: 0.2rem; | |
} | |
.page-title-sizer-wrapper > span { | |
white-space: pre-wrap !important; | |
} | |
/* Color links in code elements properly */ | |
a > code { | |
color: unset; | |
} | |
/* Fix selector background color issue */ | |
.cp__palette-main .menu-link.chosen, | |
.cp__palette-main .menu-link.chosen p, | |
.cp__select-main .menu-link.chosen, | |
.cp__select-main .menu-link.chosen p { | |
background-color: var(--ls-selection-background-color); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment