Last active
December 22, 2025 12:39
-
-
Save AWtnb/80b5fe58663c4995faadca8f653e3e3b to your computer and use it in GitHub Desktop.
Obsidian weekly-note css snippet
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
| .markdown-source-view .cm-header-1 { | |
| font-size: 1rem !important; | |
| } | |
| .markdown-source-view .HyperMD-header-1 { | |
| padding: 0 !important; | |
| } | |
| .markdown-source-view .HyperMD-list-line:has(input[data-task="x"]) > :not(label) { | |
| opacity: 0.4; | |
| } | |
| .markdown-source-view .cm-strikethrough, | |
| del { | |
| text-decoration-style: double; | |
| text-decoration-color: steelblue; | |
| } | |
| .markdown-source-view .cm-active::before { | |
| content: "\25B6"; | |
| color: var(--text-accent); | |
| margin-left: -1rem; | |
| font-family: sans-serif; | |
| font-size: 1rem; | |
| } | |
| .markdown-reading-view { | |
| --p-spacing: 0.75rem; | |
| } | |
| .markdown-reading-view .el-h1 h1 { | |
| color: var(--text-accent); | |
| font-size: 1rem; | |
| margin-top: 0.5em !important; | |
| margin-bottom: 0.5em !important; | |
| } | |
| .markdown-reading-view li.task-list-item[data-task="x"] { | |
| color: color-mix(in srgb, var(--text-normal) 40%, transparent); | |
| } | |
| .markdown-reading-view li.task-list-item[data-task="x"] * { | |
| color: color-mix(in srgb, var(--text-normal) 40%, transparent); | |
| } | |
| .workspace-leaf:not(.mod-active) .workspace-leaf-content { | |
| opacity: 0.6; | |
| } | |
| #weeklynote-statusbar-week-counter { | |
| color: var(--text-accent); | |
| font-weight: bold; | |
| font-size: 1.25em; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment