Unlink assets and put everything into the gallery folder

This commit is contained in:
Kylian Schmidt
2026-05-08 13:05:39 +02:00
parent 6738c4ca69
commit afd04324bc
46 changed files with 1364 additions and 1001 deletions
+33
View File
@@ -0,0 +1,33 @@
/* ========================================
FOLDER TREE
======================================== */
.folder-tree {
font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
font-size: 0.85rem;
margin: 1rem 0;
}
.tree-item {
margin: 0.2rem 0;
white-space: pre;
font-family: inherit;
}
.tree-current {
background: var(--tree-current-bg);
color: white;
padding: 0.2rem 0.4rem;
border-radius: 4px;
font-weight: 500;
}
.tree-link {
color: var(--link-color);
text-decoration: none;
transition: color 0.2s ease;
}
.tree-link:hover {
text-decoration: underline;
color: var(--link-hover);
}