check if infinite stream
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user