diff options
Diffstat (limited to 'SI/.obsidian/snippets/dashboard.css')
| -rw-r--r-- | SI/.obsidian/snippets/dashboard.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/SI/.obsidian/snippets/dashboard.css b/SI/.obsidian/snippets/dashboard.css new file mode 100644 index 0000000..efa6bf1 --- /dev/null +++ b/SI/.obsidian/snippets/dashboard.css @@ -0,0 +1,62 @@ +/* Updated 2023-08-07 */ + +.dashboard { + padding-left: 25px !important; + padding-right: 25px !important; + padding-top: 20px !important; +} + +.dashboard .markdown-preview-section { + max-width: 100%; +} + +/* Title at top of the document */ +.dashboard .markdown-preview-section .title { + top: 60px; + position: absolute; + font-size: 26pt !important; + font-weight: bolder; + letter-spacing: 8px; +} + +.dashboard h1 { + border-bottom-style: dotted !important; + border-width: 1px !important; + padding-bottom: 3px !important; +} + + +/* Get rid of the parent bullet */ +.dashboard div.markdown-preview-section > div > ul > li > div.list-bullet { + display: none !important; +} + +/* Remove the indentation guide lines */ +.dashboard.markdown-rendered.show-indentation-guide li > ul::before, +.dashboard.markdown-rendered.show-indentation-guide li > ol::before { + display: none; +} + +div.markdown-preview-section > div > ul.has-list-bullet > li { + padding-left: 0p !important; +} + +.dashboard div > ul { + list-style: none; + display: flex; + column-gap: 50px; + flex-flow: row wrap; +} + +.dashboard div > ul > li { + min-width: 250px; + width: 15%; +} + +/* Dataview support */ +.dashboard ul.dataview { + row-gap: 0px !important; + list-style-type: disc !important; +} + + |
