Files
2026-06-04 15:38:01 +02:00

34 lines
475 B
CSS

[hidden] {
display: none !important;
}
html,
body {
background: var(--black);
}
body {
> main {
position: fixed;
inset: 0;
overflow: auto;
color: white;
opacity: 0;
pointer-events: none;
scroll-behavior: smooth;
transition: opacity 150ms ease;
}
> main[data-active] {
opacity: 1;
pointer-events: auto;
}
}
@media (prefers-reduced-motion: reduce) {
body > main {
scroll-behavior: auto;
transition: none;
}
}