Last active
October 4, 2024 16:25
-
-
Save raisabelatrix/a92a2c9c43c2deb2ebb5175f11631608 to your computer and use it in GitHub Desktop.
View Obsidian notes as cards. Add the cssclass card-view to the note's frontmatter to enable card view on reading mode. [Not tested on Obsidian 1.0+]
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; | |
max-width:var(--card-width)!important; | |
padding: 3em!important; | |
box-shadow: 7px 7px 5px 0px var(--background-modifier-box-shadow); | |
} | |
/*Card background*/ | |
.markdown-reading-view .card-view { | |
background-color: var(--background-secondary); /*dark bg in 1 pane*/ | |
padding-bottom: 350px; | |
} | |
/*Card title*/ | |
.card-view h1 { | |
font-size: 1.3em; | |
color:inherit; | |
margin-bottom:1em; | |
} | |
.markdown-reading-view .card-view h1 .heading-collapse-indicator { | |
display: none; | |
} | |
/*Disable card view for embeds*/ | |
.markdown-embed .card-view{ | |
min-height: 0!important; | |
box-shadow: unset!important; | |
background-color: unset!important; | |
} | |
.markdown-embed .card-view .markdown-preview-section { | |
box-shadow: unset!important; | |
padding: 0!important; | |
} | |
/*uncomment this line if you're using primary theme | |
.full-height-embeds .card-view .markdown-preview-sizer.markdown-preview-section { | |
padding-bottom: 3em!important; | |
}*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment