Bug fixed, Wettkampfmodus Done. TODO: Zeitstempel der Statusampel im Master verwenden

This commit is contained in:
Carsten Graf
2025-08-06 22:47:31 +02:00
parent 4a04565878
commit ba1b86a053
7 changed files with 102 additions and 87 deletions

View File

@@ -355,18 +355,24 @@ body {
font-weight: 600;
}
.status.ready {
.status.finished {
background-color: rgba(52, 152, 219, 0.3);
border: 2px solid #3498db;
}
.status.running {
.status.ready {
background-color: rgba(46, 204, 113, 0.3);
border: 2px solid #2ecc71;
animation: pulse 1s infinite;
}
.status.finished {
.status.armed {
background-color: rgb(197, 194, 0);
border: 2px solid #fbff00;
animation: pulse 1s infinite;
}
.status.running {
background-color: rgba(231, 76, 60, 0.3);
border: 2px solid #e74c3c;
}