This commit is contained in:
2026-08-04 14:50:22 +02:00
parent aa365755af
commit 70ce1c3efa
3 changed files with 3 additions and 64 deletions
-31
View File
@@ -44,37 +44,6 @@ button { font-family: var(--font); cursor: pointer; border: none; background: no
opacity: 0.3;
}
/* ── Loader ─────────────────────────────────────────────────── */
.loader {
position: fixed; inset: 0;
background: var(--ink);
display: flex; align-items: center; justify-content: center;
z-index: 9999;
transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-code {
font-family: var(--mono);
font-size: 1rem;
color: var(--yellow);
text-align: left;
display: inline-block;
margin-bottom: 1.75rem;
}
.loader-code em { color: var(--orange); font-style: normal; }
.lc { display: block; opacity: 0; transform: translateY(10px); animation: lcFade 0.4s var(--ease) forwards; }
.lc1 { animation-delay: 0.1s; }
.lc2 { animation-delay: 0.35s; }
.lc3 { animation-delay: 0.6s; }
.lc4 { animation-delay: 0.85s; }
@keyframes lcFade { to { opacity: 1; transform: none; } }
.loader-bar-wrap { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 99px; margin: 0 auto 0.75rem; overflow: hidden; }
.loader-bar { height: 100%; background: var(--grad); width: 0%; animation: barFill 2.5s var(--ease) forwards; animation-delay: 0.5s; }
@keyframes barFill { to { width: 100%; } }
.loader-pct { font-family: var(--mono); font-size: 0.8rem; color: var(--orange); }
/* ── Nav ────────────────────────────────────────────────────── */
#header {
background: rgba(254, 254, 227, 0);