This commit is contained in:
2025-07-24 17:50:41 +02:00
parent 58f0d234e0
commit 8c81296460
3 changed files with 79 additions and 18 deletions

View File

@@ -382,6 +382,33 @@ body {
}
}
.status.standby {
background-color: rgba(255, 193, 7, 0.3);
border: 2px solid #ffc107;
animation: standbyBlink 2s infinite;
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}
@keyframes standbyBlink {
0%, 70% {
opacity: 1;
}
85%, 100% {
opacity: 0.6;
}
}
.best-times {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);