This commit is contained in:
2026-04-24 23:14:22 +09:00
parent ebbf92e8f6
commit 74dc2e5ac2
3 changed files with 80 additions and 0 deletions
+27
View File
@@ -133,3 +133,30 @@ header::after {
background: #FFFFFF40;
transform: translate(0, 0);
}
/* Loading Overlay */
#loading-overlay {
view-transition-name: none;
position: fixed;
inset: 0;
z-index: 100000;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--color-dark-grey);
backdrop-filter: blur(40px);
-webkit-backdrop-filter: blur(40px);
pointer-events: none;
opacity: 1;
}
#loading-overlay svg {
width: 50vmin;
height: 50vmin;
opacity: 0;
filter: blur(20px);
transform: scale(1);
will-change: opacity, filter, transform;
}
#loading-overlay polyline {
will-change: stroke-dashoffset;
}