check if infinite stream
All checks were successful
CI/CD Pipeline / test (push) Successful in 2m35s
CI/CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2025-08-08 13:09:01 +02:00
parent 240f7d7f8d
commit 162b329ed4
2 changed files with 125 additions and 3 deletions

View File

@@ -62,6 +62,22 @@ body {
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}
/* Stream indicator styling for LIVE duration */
#duration.live {
background: rgba(255, 0, 0, 0.8);
padding: 4px 8px;
border-radius: 4px;
font-weight: 500;
opacity: 0.9;
animation: livePulse 2s infinite;
}
@keyframes livePulse {
0% { opacity: 0.9; }
50% { opacity: 0.6; }
100% { opacity: 0.9; }
}
/* Controls */
.controlsOuter {
position: absolute;