mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-08 14:11:56 -07:00
34 lines
475 B
CSS
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;
|
|
}
|
|
}
|