vault backup: 2026-07-31 16:24:55

This commit is contained in:
2026-07-31 16:24:55 +02:00
parent 974585a336
commit 58729fc553
8 changed files with 1235 additions and 31 deletions

File diff suppressed because it is too large Load Diff

41
.obsidian/snippets/headers.css vendored Normal file
View File

@@ -0,0 +1,41 @@
/* Color sheme for header */
.markdown-preview-view h1 {
color: #c13e2d;
}
.cm-header-1 {
color: #c13e2d;
}
.markdown-preview-view h2 {
color: #c16c2d;
}
.cm-header-2 {
color: #c16c2d;
}
.markdown-preview-view h3 {
color: #3ac12d;
}
.cm-header-3 {
color: #3ac12d;
}
.markdown-preview-view h4 {
color: #2dc168;
}
.cm-header-4 {
color: #2dc168;
}
.markdown-preview-view h5 {
color: #2dc1b7;
}
.cm-header-5 {
color: #2dc1b7;
}

29
.obsidian/snippets/tableStyles.css vendored Normal file
View File

@@ -0,0 +1,29 @@
table {
border-collapse: separate;
border-radius: 6px;
margin: 10px 0px 0px 0px !important;
background-color: #272727;
width: 100%;
overflow: hidden;
}
thead {
background: #0a8a11;
}
th {
font-size: 20px !important;
text-align: center !important;
}
td, th {
padding: 10px 20px;
}
thead th:hover {
background-color: #127915 !important;
}
td:hover {
background-color: #4a4a4a !important;
}