Initial commit

This commit is contained in:
2026-03-02 17:06:32 +00:00
commit 430dd71917
1190 changed files with 622790 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
/* Hides the toolbar only when you add |no-toolbar to the link */
.bases-embed[alt~="no-toolbar"] .bases-toolbar {
display: none !important;
}

0
.obsidian/snippets/clean-tasks.css vendored Normal file
View File

10
.obsidian/snippets/day-planner-fix.css vendored Normal file
View File

@@ -0,0 +1,10 @@
/* Force Day Planner columns to fit the available width */
.day-planner-multi-day-view .day-planner-column {
min-width: 0 !important;
flex: 1 1 0 !important;
}
/* Ensure the container doesn't overflow */
.day-planner-multi-day-view {
overflow-x: hidden !important;
}

12
.obsidian/snippets/image_align.css vendored Normal file
View File

@@ -0,0 +1,12 @@
img {
display: block;
margin-left: auto;
margin-right: auto;
}
/* the following centers the image thus [[image.png|center]]
img[alt*="center"] {
display: block;
margin-left: auto;
margin-right: auto;
}
*/

View File

@@ -0,0 +1,12 @@
/* Targeted transparency for the tldraw Obsidian plugin */
.workspace-leaf-content[data-type="tldraw"] .tl-container,
.workspace-leaf-content[data-type="tldraw"] .tl-background,
.workspace-leaf-content[data-type="tldraw"] .tl-canvas {
background-color: transparent !important;
--tl-color-background: transparent !important;
}
/* Optional: Removes the border around the drawing area */
.workspace-leaf-content[data-type="tldraw"] .tl-wrapper {
border: none !important;
}