View replace-hashtag-with-emoji.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
a.tag, | |
.kanban-plugin .kanban-plugin__item-tags .kanban-plugin__item-tag { | |
position: relative; | |
display: inline-block; | |
margin: .125em; | |
} | |
a.tag::before, | |
.cm-formatting-hashtag::before { | |
font-size: .85em; | |
content: "🌺"; |
View obsidian-show-ribbon-on-hover.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
/*HIDE RIBBON WHEN SIDEBAR IS COLLAPSED*/ | |
.side-dock-ribbon.mod-left.is-collapsed .side-dock-ribbon-action { | |
opacity: 0; | |
transition: opacity .3s; | |
} | |
.side-dock-ribbon.mod-left.is-collapsed:hover .side-dock-actions:hover .side-dock-ribbon-action, | |
.side-dock-ribbon.mod-left.is-collapsed:hover .side-dock-settings:hover .side-dock-ribbon-action { | |
opacity: 1; | |
} |
View obsidian-card-view.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
.card-view { | |
--card-width:35em; /*adjust this size if you want narrower or wider cards*/ | |
/*unit has to be in em so that card background will scale along with your font | |
when you zoom in and out*/ | |
} | |
/*The Card*/ | |
.card-view .markdown-preview-section { | |
background-color: var(--background-primary); | |
margin: 3% auto; |
View obsidian-highlight-main-folders.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
.nav-folder.mod-root > .nav-folder-children > .nav-folder > .nav-folder-title { | |
font-size: .9em; | |
padding: .5em .75em; | |
background-color: var(--background-secondary); | |
color: var(--text-muted); | |
margin: 1em 0; | |
} | |
.nav-folder.mod-root > .nav-folder-children > .nav-folder > .nav-folder-title:hover { | |
background-color: var(--secondary-accent); | |
} |
View obsidian-document-view.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
.workspace-split.mod-vertical .workspace-leaf.mod-active:only-of-type .cm-scroller, | |
.workspace-split.mod-vertical .workspace-leaf.mod-active:only-of-type .markdown-reading-view { | |
background-color: var(--background-secondary); /*dark bg in 1 pane*/ | |
} | |
.workspace-split.mod-vertical .workspace-leaf.mod-active:only-of-type .cm-contentContainer { | |
margin: auto; | |
padding-left: 0!important; | |
} |