Create frontend

This commit is contained in:
IgorVolochay
2026-08-13 11:35:00 +03:00
parent 343c108e51
commit 9327ac53eb
33 changed files with 2083 additions and 87 deletions
@@ -0,0 +1,16 @@
.overlay {
position: fixed;
inset: 0;
background: var(--overlay-bg);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 50;
opacity: 0;
pointer-events: none;
transition: opacity var(--duration-normal) var(--ease-smooth);
}
.overlay--visible {
opacity: 1;
pointer-events: auto;
}