vault backup (): 13-05-2026 00:27

Files Changed: 352
Too many files to list
This commit is contained in:
2026-05-13 00:27:01 +02:00
parent e30063976c
commit e3d2847288
352 changed files with 367932 additions and 2 deletions
+31
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;
}