Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
109 lines (98 sloc)
2.78 KB
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
| .theme-light { | |
| --background-primary: #f1f1f1; | |
| --background-primary-alt: #e9e9e9; | |
| --background-secondary: #f1f1f1; | |
| --background-secondary-alt: #d3d3d3; | |
| --background-modifier-border: #ddd; | |
| --background-modifier-form-field: #fff; | |
| --background-modifier-form-field-highlighted: #fff; | |
| --background-modifier-box-shadow: rgba(0, 0, 0, 0.1); | |
| --background-modifier-success: #a4e7c3; | |
| --background-modifier-error: #990000; | |
| --background-modifier-error-rgb: 230, 135, 135; | |
| --background-modifier-error-hover: #bb0000; | |
| --background-modifier-cover: rgba(0, 0, 0, 0.8); | |
| --text-accent: #247aa1; | |
| --text-accent-hover: #247aa1; | |
| --text-normal: #2e3338; | |
| --text-muted: #888888; | |
| --text-muted-rgb: 136, 136, 136; | |
| --text-faint: #999999; | |
| --text-error: #800000; | |
| --text-error-hover: #990000; | |
| --text-highlight-bg: rgba(255, 255, 0, 0.4); | |
| --text-highlight-bg-active: rgba(255, 128, 0, 0.4); | |
| --text-selection: rgba(204, 230, 255, 0.99); | |
| --text-on-accent: #f2f2f2; | |
| --interactive-normal: #f1f1f1; | |
| --interactive-hover: #e9e9e9; | |
| --interactive-accent: #247aa1; | |
| --interactive-accent-rgb: 123, 108, 217; | |
| --interactive-accent-hover: #247aa1; | |
| --interactive-success: #197300; | |
| --scrollbar-active-thumb-bg: rgba(0, 0, 0, 0.2); | |
| --scrollbar-bg: rgba(0, 0, 0, 0.05); | |
| --scrollbar-thumb-bg: rgba(0, 0, 0, 0.1); | |
| --highlight-mix-blend-mode: darken; | |
| --custom-external: #a14b24; | |
| } | |
| .external-link { | |
| color: var(--custom-external); | |
| } | |
| img { | |
| display: block; | |
| margin-left: auto; | |
| margin-right: auto; | |
| } | |
| .markdown-preview-view .tag:not(.token) { | |
| background-color: var(--text-accent); | |
| color: white; | |
| border-radius: 5px; | |
| padding: 5px 15px 5px 15px; | |
| text-decoration: none; | |
| border: none; | |
| font-size: 0.8rem; | |
| box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 2px 10px 0 rgb(0 0 0 / 10%); | |
| margin-bottom: 10px; | |
| } | |
| .site-body-left-column-site-name { | |
| text-align: center; | |
| } | |
| /* HIDE FOLDERS IN THE LEFT NAV */ | |
| .tree-item-self[data-path^='Notes'], | |
| .tree-item-self[data-path^='_Inbox'], | |
| .tree-item-self[data-path^='Log'], | |
| .tree-item-self[data-path^='Notes'] { | |
| display: none; | |
| } | |
| /* QUOTE BLOCKS */ | |
| .markdown-preview-view blockquote { | |
| border-radius: 0 4px 4px 0; | |
| border: 1px solid #d39154; | |
| border-left-width: 5px; | |
| padding: 10px; | |
| background: #e6b78b0d !important; | |
| } | |
| blockquote:before { | |
| font: 14px/20px italic Times, serif; | |
| content: '“'; | |
| font-size: 3em; | |
| line-height: 0.1em; | |
| vertical-align: -0.4em; | |
| } | |
| blockquote p { | |
| display: inline; | |
| } | |
| /* CODE BLOCKS */ | |
| .theme-light :not(pre) > code[class*='language-'], | |
| .theme-light pre[class*='language-'] { | |
| background-color: var(--background-primary-alt); | |
| border: 1px solid var(--background-modifier-border); | |
| } | |
| /* BACKLINIKS */ | |
| .published-container .backlinks { | |
| border: 1px solid var(--background-modifier-border); | |
| } | |
| .hidebacklinks .backlinks { | |
| display: none; | |
| } |