Init Commit

This commit is contained in:
2026-05-18 11:46:02 +02:00
commit 2de3502fbc
382 changed files with 19583 additions and 0 deletions
@@ -0,0 +1,22 @@
.transition-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
z-index: 9999;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
/* For dark mode */
html[data-bs-theme="dark"] .transition-overlay {
background-color: #181818;
}
.transition-active .transition-overlay {
opacity: 1;
pointer-events: all;
}