This commit is contained in:
2025-10-22 22:13:54 +02:00
parent 9e44354ef0
commit b63d46a78e
331 changed files with 352530 additions and 3 deletions

31
.obsidian/snippets/note-bg-blur.css vendored Normal file
View File

@@ -0,0 +1,31 @@
/* CSS class to add a blurred background image to a note */
.note-bg-blur {
position: relative;
z-index: 0;
}
/* Create the blurred background */
.note-bg-blur::before {
content: "";
position: fixed;
top: 0; left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
/* Replace this URL with your image URL */
background-image: var(--note-bg-image);
background-size: cover;
background-position: center;
filter: blur(10px);
/* Optional: dim the background slightly */
opacity: 0.2;
}
/* Ensure note content is above the background */
.note-bg-blur .markdown-preview-section {
position: relative;
z-index: 1;
}