This commit is contained in:
hibna
2025-10-30 04:02:31 +03:00
parent 35e07b059f
commit 183cc65455
13 changed files with 265 additions and 442 deletions
+8 -7
View File
@@ -1,3 +1,8 @@
/* ============================================
LOADING SPINNER
Clean & Modern Design
============================================ */
.loading-spinner-overlay {
position: absolute;
top: 0;
@@ -7,7 +12,7 @@
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.3);
background-color: rgba(0, 0, 0, 0.2);
z-index: var(--player-z-loading);
pointer-events: none;
}
@@ -17,10 +22,6 @@
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
from { opacity: 0; }
to { opacity: 1; }
}