Skip to content

Instantly share code, notes, and snippets.

@LosEcher
Created May 20, 2020 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LosEcher/76e99b89ca2e64c9016af85859027656 to your computer and use it in GitHub Desktop.
Save LosEcher/76e99b89ca2e64c9016af85859027656 to your computer and use it in GitHub Desktop.
Joplin custom css style
/**
* For styling the entire Joplin app (except the rendered Markdown, which is defined in `userstyle.css`)
* /Users/[your-userName]/.config/joplin-desktop/userchrome.css
*
**/
:root {
--general-font-size: 16px;
--general-font-family: "JetBrains Mono", Monaco, monospace;
--list-item-height: 32px;
--note-item-height: 40px;
--counter-font-size: 12px;
}
/* note-item-height & folder-item-height */
.list-item-container {
height: var(--note-item-height) !important;
}
/* notebook-name-font */
.list-item {
font-size: var(--general-font-size) !important;
font-family: var(--general-font-family) !important;
}
/* note-counter */
.list-item div {
font-size: var(--counter-font-size) !important;
}
/* note-tile font */
.list-item-container span {
font-size: var(--general-font-size) !important;
font-family: var(--general-font-family) !important;
}
/* top-bttons-searchbar */
.header span,
.header input {
font-size: var(--general-font-size) !important;
font-family: var(--general-font-family) !important;
}
@LosEcher
Copy link
Author

joplin css
here is the result.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment