initial domain setup

This commit is contained in:
chris 2023-04-19 08:30:09 -05:00
parent e482fa1097
commit 3148e193c1
19 changed files with 14127 additions and 2 deletions

View File

@ -36,4 +36,4 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: master # deploying branch
cname: quartz.jzhao.xyz
cname: cjnanthony.github.io

View File

@ -1,4 +1,4 @@
baseURL = "https://quartz.jzhao.xyz/"
baseURL = "https://cjnanthony.github.io/"
languageCode = "en-us"
relativeURLs = false
disablePathToLower = true

4
content/site_vault/.obsidian/app.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"newLinkFormat": "absolute",
"alwaysUpdateLinks": true
}

View File

@ -0,0 +1,7 @@
{
"baseFontSize": 16,
"translucency": false,
"cssTheme": "Things",
"theme": "obsidian",
"accentColor": "#5fd3c6"
}

View File

@ -0,0 +1,29 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"starred": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": true
}

View File

@ -0,0 +1,21 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"page-preview",
"daily-notes",
"templates",
"note-composer",
"command-palette",
"editor-status",
"starred",
"outline",
"word-count",
"file-recovery",
"sync"
]

View File

@ -0,0 +1,12 @@
{
"insert-template": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "T"
}
],
"workspace:undo-close-pane": []
}

View File

@ -0,0 +1,3 @@
{
"folder": "templates"
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,441 @@
/* This Theme is called "Reverie" and Obsidian Theme created by Santi Younger */
Last Update: 2020-12-24 15:40
:root
{
--font-monospace: "Source Code Pro", monospace;
}
.theme-dark
{
--background-primary: #1A2023;
--background-primary-alt: #1A2023;
--background-secondary: #222B2F;
--background-secondary-alt: #073334;
--text-normal: #faf2d6;
--text-faint: #bdae93;
--text-title-h1: #c1dde1;
--text-title-h2: #8ab8bd;
--text-title-h3: #56a7b0;
--text-title-h4: #309093;
--text-title-h5: #0b797d;
--text-title-h6: #0b797d;
--text-highlight-bg: #22a578;
--text-link: #83a598;
--text-a-hover: #83a598;
--inline-code: #83a598;
--code-block: #83a598;
--text-a: #2ccab7;
--interactive-accent: #0b797d;
--text-accent: #2ccab7;
--text-on-accent: #fff;
--interactive-accent-rgb: #2ccab7;
--vim-cursor: #2ccab7;
/* --text-mark: add text-mark if needed, this should work together with 'mark' */
--pre-code: #073334;
--interactive-before: #7c6f64;
--background-modifier-border: #95c1bb;
--text-selection: #16304D;
}
.theme-dark .cm-s-obsidian span.obsidian-search-match-highlight {
color: var(--text-normal);
background-color: #483699;
}
.theme-light
{
--background-primary: #e7e7e7;
--background-primary-alt: #e7e7e7;
--background-secondary: #e3e3e3; /* thick menu border */
--background-secondary-alt: #bebebe; /* ← ↓ corner */
--text-normal: #1A2023;
--text-faint: #665c54;
--text-title-h1: #1bb0b6;
--text-title-h2: #3fa7ab;
--text-title-h3: #458588;
--text-title-h4: #4b6667;
--text-title-h5: #3b4646;
--text-link: #458588;
--text-a-hover: #458588;
--inline-code: #458588;
/* --text-mark: add if needed */
--pre-code: #bebebe;
/* --text-highlight-bg: add if needed */
--interactive-before: #a89984;
--background-modifier-border: #1bb0b6;
--text-a: #22a578;
--interactive-accent: #22a578;
--text-accent: #22a578;
--interactive-accent-rgb: #22a578;
--vim-cursor: #22a578;
/* --text-selection: add if needed */
}
.cm-header-1,
.markdown-preview-section h1
{
font-weight: 500;
font-size: 20px;
color: var(--text-title-h1) !important;
}
.cm-header-2,
.markdown-preview-section h2
{
font-weight: 500;
font-size: 20px;
color: var(--text-title-h2) !important;
}
.cm-header-3,
.markdown-preview-section h3
{
font-weight: 500;
font-size: 20px;
color: var(--text-title-h3) !important;
}
.cm-header-4,
.markdown-preview-section h4
{
font-weight: 500;
font-size: 20px;
color: var(--text-title-h4) !important;
}
.cm-header-5,
.markdown-preview-section h5
{
font-weight: 500;
font-size: 20px;
color: var(--text-title-h5) !important;
}
.cm-header-6,
.markdown-preview-section h6
{
font-weight: 500;
font-size: 20px;
color: var(--text-title-h5) !important;
}
/* ------------ other basic theme configurations ------------*/
.theme-dark code[class*="language-"],
.theme-dark pre[class*="language-"],
.theme-light code[class*="language-"],
.theme-light pre[class*="language-"]
{
text-shadow: none !important;
background-color: var(--pre-code) !important;
}
.graph-view.color-circle,
.graph-view.color-fill-highlight,
.graph-view.color-line-highlight
{
color: var(--interactive-accent-rgb) !important;
}
.graph-view.color-text
{
color: var(--text-a-hover) !important;
}
/*
.graph-view.color-fill
{
color: var(--background-secondary);
}
.graph-view.color-line
{
color: var(--background-modifier-border);
}
*/
html,
body
{
font-size: 16px !important;
}
strong
{
font-weight: 600 !important;
}
a,
.cm-hmd-internal-link
{
color: var(--text-a) !important;
text-decoration: none !important;
}
a:hover,
.cm-hmd-internal-link:hover,
.cm-url
{
color: var(--text-a-hover) !important;
text-decoration: none !important;
}
mark
{
background-color: var(--text-mark) !important;
color: #E5A200 !important;
}
.view-actions a
{
color: var(--text-normal) !important;
}
.view-actions a:hover
{
color: var(--text-a) !important;
}
.HyperMD-codeblock-bg
{
background-color: var(--pre-code) !important;
}
.HyperMD-codeblock
{
line-height: 1.4em !important;
color: var(--code-block) !important;
}
.HyperMD-codeblock-begin
{
border-top-left-radius: 4px !important;
border-top-right-radius: 4px !important;
}
.HyperMD-codeblock-end
{
border-bottom-left-radius: 4px !important;
border-bottom-right-radius: 4px !important;
}
th
{
font-weight: 600 !important;
}
thead
{
border-bottom: 2px solid var(--background-modifier-border) !important;
}
.HyperMD-table-row
{
line-height: normal !important;
padding-left: 4px !important;
padding-right: 4px !important;
background-color: var(--pre-code) !important;
}
.HyperMD-table-row-0
{
/* padding-top: 4px !important; */
}
.CodeMirror-foldgutter-folded,
.is-collapsed .nav-folder-collapse-indicator
{
color: var(--text-a) !important;
}
.nav-file-tag
{
color: var(--text-a) !important;
}
.is-active .nav-file-title
{
color: var(--text-a) !important;
background-color: var(--background-primary-alt) !important;
}
.nav-file-title
{
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}
img
{
display: block !important;
margin-left: auto !important;
margin-right: auto !important;
}
.HyperMD-list-line
{
padding-top: 0 !important;
}
.CodeMirror-linenumber,
.cm-formatting
{
font-family: var(--font-monospace) !important;
}
.markdown-preview-section pre code,
.markdown-preview-section code
{
font-size: 0.9em !important;
background-color: var(--pre-code) !important;
}
.markdown-preview-section pre code
{
padding: 4px !important;
line-height: 1.4em !important;
display: block !important;
color: var(--code-block) !important;
}
.markdown-preview-section code
{
color: var(--inline-code) !important;
}
.cm-s-obsidian,
.cm-inline-code
{
-webkit-font-smoothing: auto !important;
}
.cm-inline-code
{
color: var(--inline-code) !important;
background-color: var(--pre-code) !important;
padding: 1px !important;
}
.workspace-leaf-header-title
{
font-weight: 600 !important;
}
.side-dock-title
{
padding-top: 15px !important;
font-size: 20px !important;
}
.side-dock-ribbon-tab:hover,
.side-dock-ribbon-action:hover,
.side-dock-ribbon-action.is-active:hover,
.nav-action-button:hover,
.side-dock-collapse-btn:hover
{
color: var(--text-a);
}
.side-dock
{
border-right: 0 !important;
}
.cm-s-obsidian,
.markdown-preview-view
{
padding-left: 10px !important;
padding-right: 10px !important;
}
/* vertical resize-handle */
.workspace-split.mod-vertical > * > .workspace-leaf-resize-handle,
.workspace-split.mod-left-split > .workspace-leaf-resize-handle,
.workspace-split.mod-right-split > .workspace-leaf-resize-handle
{
width: 1px !important;
background-color: var(--background-secondary-alt);
}
/* horizontal resize-handle */
.workspace-split.mod-horizontal > * > .workspace-leaf-resize-handle
{
height: 1px !important;
background-color: var(--background-secondary-alt);
}
/* Remove vertical split padding */
.workspace-split.mod-root .workspace-split.mod-vertical .workspace-leaf-content,
.workspace-split.mod-vertical > .workspace-split,
.workspace-split.mod-vertical > .workspace-leaf,
.workspace-tabs
{
padding-right: 0px;
}
.markdown-embed-title
{
font-weight: 600 !important;
}
.markdown-embed
{
padding-left: 10px !important;
padding-right: 10px !important;
margin-left: 10px !important;
margin-right: 10px !important;
}
.suggestion-item.is-selected
{
background-color: var(--background-secondary);
}
.empty-state-container:hover
{
background-color: var(--background-secondary-alt);
border: 5px solid var(--interactive-accent) !important;
}
.checkbox-container
{
background-color: var(--interactive-before);
}
.checkbox-container:after
{
background-color: var(--background-secondary-alt);
}
.mod-cta
{
color: var(--background-secondary-alt) !important;
font-weight: 600 !important;
}
.mod-cta:hover
{
background-color: var(--interactive-before) !important;
font-weight: 600 !important;
}
input.task-list-item-checkbox {
border: 1px solid #7c6f64;
appearance: none;
-webkit-appearance: none;
}
input.task-list-item-checkbox:checked {
background-color: #7c6f64;
box-shadow: inset 0 0 0 2px var(--background-primary);
}
.cm-fat-cursor .CodeMirror-cursor {
background-color: #2ccab7 !important;
opacity: 60% !important;
width: 9px !important;
visibility: visible !important
}
/*-----------------------------------------*/
/* End of main theme, extra functionality can be added below */

View File

@ -0,0 +1,7 @@
{
"name": "Things",
"version": "2.1.4",
"minAppVersion": "1.0.0",
"author": "@colineckert",
"authorUrl": "https://twitter.com/colineckert"
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,736 @@
.theme-light
{
--background-primary: #FBFBFB;
--background-primary-alt: #FBFBFB;
--background-secondary: #FBFBFB;
--background-secondary-alt: #2E3236;
--text-normal: #333;
--text-faint: #B2B2B2;
--text-title-h1: #333;
--text-title-h2: #333;
--text-title-h3: #333;
--text-title-h4: #333;
--text-title-h5: #333;
--text-link: #B4B4B4;
--text-a: #db4d52;
--text-a-hover: #db4d52;
--text-mark: #D3FFA4;
--pre-code: #FFFFFF;
--interactive-accent: #92A1A1;
--interactive-before: #5e6565;
--background-modifier-border: #92a1a17a;
--blockquote-border: #D6555F;
--tag-background: #A7B0B3;
--interactive-accent-rgb: #db4d52;
--font-family-editor: Avenir, "Avenir Next";
--font-family-preview: Avenir, "Avenir Next";
}
.theme-dark
{
--background-primary: #1E2022;
--background-primary-alt: #1E2022;
--background-secondary: #1E2022;
--background-secondary-alt: #2E3236;
--text-normal: #DDDDDD;
--text-faint: #B2B2B2;
--text-title-h1: #CBDBE5;
--text-title-h2: #CBDBE5;
--text-title-h3: #CBDBE5;
--text-title-h4: #CBDBE5;
--text-title-h5: #CBDBE5;
--text-link: #B4B4B4;
--text-a: #6BCAFB;
--text-a-hover: #6BCAFB;
--text-mark: #263D92;
--pre-code: #252525;
--interactive-accent: #92A1A1;
--interactive-before: #5e6565;
--background-modifier-border: #92a1a17a;
--blockquote-border: #4AA8FB;
--tag-background: #A7B0B3;
--interactive-accent-rgb: #6BCAFB;
--font-family-editor: Avenir, "Avenir Next";
--font-family-preview: Avenir, "Avenir Next";
}
#graph-view-canvas .links
{
stroke: var(--interactive-accent-rgb) !important;
}
strong,
.cm-strong
{
color: var(--tax-normal);
font-weight: 900 !important;
}
em {
color: var(--tax-normal);
}
s {
color: var(--tag-background);
}
mark
{
background-color: var(--text-mark) !important;
color: var(--text-normal);
padding: 2px 3px 2px 3px;
}
/**********************/
/* links and brackets */
/**********************/
/* link */
a,
.internal-link,
.cm-hmd-internal-link,
.cm-link,
.cm-formatting-link
{
color: var(--text-a) !important;
text-decoration: none !important;
font-family: var(--font-family-preview) !important;
}
a.view-action
{
color: var(--text-faint) !important;
}
/* link hover color */
a:hover,
.internal-link:hover
{
color: var(--text-a-hover) !important;
text-decoration: none !important;
}
/* make external links italics to differentiate */
a:not(.internal-link) {
font-style: italic;
}
/* blockquote */
.cm-quote /* for editor */
{
color: var(--text-normal) !important;
}
blockquote /* for preview */
{
border-color: var(--blockquote-border) !important;
border-top-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-left-width: 2px !important;
}
/* icons at top of panes*/
.file-view-actions a
{
color: var(--text-faint) !important;
}
.file-view-actions a:hover
{
color: var(--text-normal) !important;
}
/* make it clear when a pane is pinned */
.view-action.mod-pin-leaf.is-active
{
color: var(--text-a) !important;
}
/* editor markdown wrapping colors */
.cm-tag,
.cm-strikethrough,
.cm-formatting-strong,
.cm-formatting-em,
.cm-formatting-code
{
color: var(--text-faint) !important;
}
/* editor list characters */
.cm-formatting-list
{
color: var(--blockquote-border) !important;
}
/************************************/
/* lists in preview (h/t @deathau) */
/************************************/
/* bullet lists */
ul { list-style: none; }
li > p {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
}
ul li:not(.task-list-item)::before {
content: "•";
color: var(--blockquote-border);
display: inline-block;
width: 1em;
margin-left: -1em;
padding:0;
font-weight: bold;
text-shadow: 0 0 0.5em var(--accent-2);
}
ul ul li:not(.task-list-item)::before {
content: "•"
}
ul ul ul li:not(.task-list-item)::before {
content: "•"
}
/* numbered lists */
ol {list-style: none; counter-reset: li}
ol > li {
counter-increment: li;
}
ol > li:not(.task-list-item)::before,
ul ol > li:not(.task-list-item)::before,
ul ul ol > li:not(.task-list-item)::before,
ul ul ul ol > li:not(.task-list-item)::before {
content: "." counter(li);
color: var(--blockquote-border);
font-weight:normal;
display: inline-block;
width: 1em;
margin-left: -1.5em;
margin-right: 0.5em;
text-align: right;
direction: rtl;
word-wrap: none;
overflow: visible;
word-break: keep-all;
}
/* task lists! (I'm proud of this, but could use improvement) */
.markdown-preview-view .task-list-item-checkbox {
-webkit-appearance: none;
box-sizing: border-box;
border: 1px solid var(--tag-background);
border-radius: 3px;
position: relative;
width: 1.25em;
height: 1.25em;
margin: 0;
cursor: pointer;
color: var(--text-normal);
font-weight: 600;
}
.markdown-preview-view .task-list-item-checkbox:checked::before {
content: '✓';
position: absolute;
font-size:1em;
line-height: 1em;
width:1.1em;
text-align:center;
border-radius: 2px;
cursor: pointer;
}
/* code blocks in preview */
pre code
{
padding: 20px !important;
line-height: normal;
display: block;
background-color: var(--pre-code) !important;
color: var(--text-normal) !important;
}
.markdown-preview-view pre
{
padding: 0px !important;
}
/* in-line code for editor and preview and code block for editor*/
code,
.cm-inline-code
{
background-color: var(--pre-code) !important;
color: var(--text-normal) !important;
bottom: 0px !important;
padding: 1px;
}
/* code and code blocks for preview */
.markdown-preview-view code
{
font-size: 13.5px;
}
/**********/
/* tables */
/**********/
th
{
font-weight: 800 !important;
}
thead
{
border-bottom: 3px solid var(--background-modifier-border);
}
.table
{
background-color: var(--background-secondary-alt);
border: 1px solid var(--background-modifier-border);
padding: 4px;
line-height: normal;
display: block;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
/* embedded images */
img
{
display: block;
margin-left: auto;
margin-right: auto;
}
/* horizontal line in preview */
.markdown-preview-view hr
{
background-color: var(--text-link);
}
/* checkboxes */
.markdown-preview-view .task-list-item-checkbox
{
top: 0px;
}
/* match cursor color to theme */
.CodeMirror-cursor
{
border-left: 2px solid var(--blockquote-border);
}
/********/
/* tags */
/********/
/* text of the tag in editor */
.cm-s-obsidian span.cm-hashtag-end {
color: var(--pre-code);
background-color: var(--tag-background);
text-decoration: none;
border-radius: 0 10px 10px 0px;
padding: 1px 5px 1px 0px;
}
/* text of the actual hashtag in the editor */
.cm-s-obsidian span.cm-hashtag-begin {
color: var(--pre-code);
background-color: var(--tag-background);
text-decoration: none;
border-radius: 10px 0 0 10px;
padding: 1px 0px 2px 5px;
}
/* entire tag in preview */
a.tag
{
font-style: normal;
color: var(--pre-code) !important;
background-color: var(--tag-background);
text-decoration: none;
border-radius: 10px;
padding: 1px 5px 1px 5px;
}
/*************/
/* side dock */
/*************/
/* side dock text, like file names and backlink context */
.side-dock-panels-container *
{
font-size: 13px !important;
}
/* side dock titles at top */
.side-dock-title
{
font-size: 20px !important;
font-weight: 800 !important;
}
/* hover actions on side dock navigation */
.side-dock-ribbon-tab:hover,
.side-dock-ribbon-tab-inner:hover,
.side-dock-ribbon-action:hover,
.side-dock-ribbon-action.is-active:hover,
.nav-action-button:hover,
.side-dock-collapse-btn:hover
{
color: var(--text-a);
}
/* non-hover actions on side dock navigation */
.side-dock-ribbon-tab,
.side-dock-ribbon-tab-inner,
.side-dock-ribbon-action,
.side-dock-ribbon-action.is-active,
.nav-action-button,
.side-dock-collapse-btn
{
color: var(--text-faint);
}
/* quick switcher item currently selected */
.suggestion-item.is-selected
{
background-color: var(--pre-code);
}
/* condense line spacing on file explorer title list. also avoids character-level word breaks */
.nav-file-title-content,
.search-result-file-title,
.search-result-file-match
{
padding-top: 0 !important;
padding-bottom: 0 !important;
line-height: normal !important;
word-break: keep-all;
}
/* styling for title that is selected in filer explorer */
.nav-file.is-active > .nav-file-title
{
background-color: var(--pre-code);
color: var(--text-a);
border-color: var(--blockquote-border);
border-width: 0px 0px 0px 3px;
border-radius: 1px;
}
/* text color of non-selected files in sidebar */
.nav-file-title,
.search-result-file-match
{
color: var(--text-faint);
}
.search-result-file-title
{
color: var(--text-muted);
}
/* color and background of titles hovered over in side bars */
body:not(.is-grabbing) .nav-file-title:hover,
body:not(.is-grabbing) .nav-folder-title:hover,
.search-result-file-match:hover,
.search-result-file-title:hover,
body:not(.is-grabbing) .nav-file-title:hover .nav-folder-collapse-indicator,
body:not(.is-grabbing) .nav-folder-title:hover .nav-folder-collapse-indicator
{
background-color: var(--pre-code);
color: var(--text-normal);
}
/* clean up side bar empty state (e.g. unlinked mentions) */
.search-empty-state
{
width: auto;
padding-left: 15px;
padding-right: 15px;
line-height: normal;
}
/* to have sidebar hide and then reveal on hover */
.app-container.is-left-sidedock-collapsed .side-dock.mod-left:not(:hover),
.app-container.is-right-sidedock-collapsed .side-dock.mod-right:not(:hover)
{
width: 0px !important;
}
/* font for everything outside of editor/preview panes */
.app-container
{
font-family: var(--font-family-preview);
}
.status-bar-item
{
font-family: var(--font-family-preview);
font-size: 12px;
}
/******************/
/* settings popup */
/******************/
/* left hand side section non-selected section */
.vertical-tab-header,
.vertical-tab-nav-item
{
background-color: var(--background-primary);
border-color: var(--text-faint);
border-width: 2px;
}
/* left hand side section selected section */
.vertical-tab-nav-item.is-active
{
background-color: var(--pre-code);
border-color: var(--blockquote-border);
border-width: 5px;
}
/* in settings menu to show hot key mapping */
.setting-hotkey
{
background-color: var(--pre-code);
}
/******************/
/* editor section */
/******************/
/* normal text outside of headings and code */
.cm-s-obsidian
{
font-family: var(--font-family-editor);
font-size: 15px;
color: var(--text-normal);
padding-left: 10% !important;
padding-right: 10% !important;
}
.mod-single-child .cm-s-obsidian
{
font-family: var(--font-family-editor);
font-size: 15px;
color: var(--text-normal);
padding-left: 30% !important;
padding-right: 30% !important;
}
/* headings */
.cm-header-1
{
font-family: var(--font-family-editor);
font-weight: 500;
font-size: 28px;
font-weight: bold;
color: var(--text-title-h1);
}
.cm-header-2
{
font-family: var(--font-family-editor);
font-weight: 500;
font-size: 26px;
font-weight: bold;
color: var(--text-title-h2);
}
.cm-header-3
{
font-family: var(--font-family-editor);
font-weight: 500;
font-size: 22px;
font-weight: bold;
color: var(--text-title-h3);
}
.cm-header-4
{
font-family: var(--font-family-editor);
font-weight: 500;
font-size: 20px;
font-weight: bold;
color: var(--text-title-h4);
}
.cm-header-5
{
font-family: var(--font-family-editor);
font-weight: 500;
font-size: 18px;
font-weight: bold;
color: var(--text-title-h5);
}
.cm-header-6
{
font-family: var(--font-family-editor);
font-weight: 500;
font-size: 16px;
font-weight: bold;
color: var(--text-title-h5);
}
.cm-string,
.cm-formatting-task,
.CodeMirror-guttermarker-subtle
{
color: var(--text-link) !important;
}
/* remote secondary scroll bar in editor that comes from adding variable padding */
.CodeMirror-scroll::-webkit-scrollbar {
display: none;
}
/******************/
/* preview section */
/******************/
/* normal text outside of headings and code */
.markdown-preview-view
{
font-family: var(--font-family-preview);
font-size: 15px;
color: var(--text-normal);
padding-left: 10% !important;
padding-right: 10% !important;
}
.mod-single-child .markdown-preview-view
{
font-family: var(--font-family-preview);
font-size: 15px;
color: var(--text-normal);
padding-left: 30% !important;
padding-right: 30% !important;
}
/* headings */
.markdown-preview-view h1
{
font-family: var(--font-family-preview);
font-weight: 600 !important;
font-size: 28px;
font-weight: bold;
color: var(--text-title-h1);
}
.markdown-preview-view h2
{
font-family: var(--font-family-preview);
font-weight: 600 !important;
font-size: 26px;
font-weight: bold;
color: var(--text-title-h2);
}
.markdown-preview-view h3
{
font-family: var(--font-family-preview);
font-weight: 600 !important;
font-size: 22px;
font-weight: bold;
color: var(--text-title-h3);
}
.markdown-preview-view h4
{
font-family: var(--font-family-preview);
font-weight: 600 !important;
font-size: 20px;
font-weight: bold;
color: var(--text-title-h4);
}
.markdown-preview-view h5
{
font-family: var(--font-family-preview);
font-weight: 600 !important;
font-size: 18px;
font-weight: bold;
color: var(--text-title-h5);
}
.markdown-preview-view h6
{
font-family: var(--font-family-preview);
font-weight: 600 !important;
font-size: 16px;
font-weight: bold;
color: var(--text-title-h5);
}
/* add some header prefix in preview */
h1::before
{
content: 'H1 ';
font-size: 12px;
color: var(--text-faint)
}
h2::before
{
content: 'H2 ';
font-size: 12px;
color: var(--text-faint)
}
h3::before
{
content: 'H3 ';
font-size: 12px;
color: var(--text-faint)
}
h4::before
{
content: 'H4 ';
font-size: 12px;
color: var(--text-faint)
}
h5::before
{
content: 'H5 ';
font-size: 12px;
color: var(--text-faint)
}
h6::before
{
content: 'H6 ';
font-size: 12px;
color: var(--text-faint)
}
/* internal embedded link rendering in preview */
.markdown-embed-title
{
font-weight: 600;
}
.markdown-embed
{
padding-left: 10px !important;
padding-right: 10px !important;
margin-left: 10px !important;
margin-right: 10px !important;
}
/* to have andy matuschak mode
.workspace-split.mod-vertical { overflow-x:auto; }
.workspace-leaf, .workspace-split > .workspace-split { min-width: 500px; min-height: 500px; }
.workspace-split.mod-horizontal { overflow-y: auto; }
*/

View File

@ -0,0 +1,190 @@
{
"main": {
"id": "3344354968282675",
"type": "split",
"children": [
{
"id": "8fe2e4b10192c71d",
"type": "tabs",
"children": [
{
"id": "87f7f65c69c98e7c",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "first note.md",
"mode": "source",
"source": false
}
}
},
{
"id": "e53851ed0a3d5a30",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "templates/Frontmatter.md",
"mode": "source",
"source": false
}
}
},
{
"id": "1a030dc8faa6ef28",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "templates/Untitled.md",
"mode": "source",
"source": false
}
}
}
],
"currentTab": 1
}
],
"direction": "vertical"
},
"left": {
"id": "7aca2f9b80e1fca7",
"type": "split",
"children": [
{
"id": "c675044b8ac6f3ce",
"type": "tabs",
"children": [
{
"id": "2cef6def095d2929",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "cd902e899907eae6",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "5bb81688f353ceb2",
"type": "leaf",
"state": {
"type": "starred",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "faf80be8395136df",
"type": "split",
"children": [
{
"id": "458708f20baa9ad8",
"type": "tabs",
"children": [
{
"id": "ad6b98756ec0aec5",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "templates/Frontmatter.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "6958a91672bf6dc6",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "templates/Frontmatter.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "4754d5d1eaa1ac85",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "1b5458d3fbf3d8f8",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "templates/Frontmatter.md"
}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "e53851ed0a3d5a30",
"lastOpenFiles": [
"templates/Untitled.md",
"templates/Frontmatter.md",
"first note.md",
"templates",
"themes/Things/theme.css",
"themes/Things/manifest.json",
"themes/Things",
"themes/Ursa.css",
"themes/Minimal.css",
"themes/Discordian.css",
"themes/California Coast.css",
"themes/Reverie.css",
"themes"
]
}

View File

@ -0,0 +1 @@
note

View File

@ -0,0 +1,5 @@
---
title: "Example Title"
tags:
- example-tag
---

View File