Redesign video player styling

This commit is contained in:
Mert Uyanık
2025-10-30 04:14:28 +03:00
parent 183cc65455
commit 1113ca891c
11 changed files with 265 additions and 511 deletions
+2 -15
View File
@@ -1,18 +1,10 @@
/* ============================================
LOADING SPINNER
Clean & Modern Design
============================================ */
.loading-spinner-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.2);
background-color: rgba(0, 0, 0, 0.28);
z-index: var(--player-z-loading);
pointer-events: none;
}
@@ -20,8 +12,3 @@
.loading-spinner {
animation: fadeIn var(--player-transition-normal) ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}