Switch to Long-Polling, add Turniertabellen-Anzeige für ODJM D 2026

This commit is contained in:
2026-05-24 15:32:36 +02:00
parent 2ad3dab7f8
commit 7efa38c91a
4 changed files with 253 additions and 55 deletions

View File

@@ -168,18 +168,69 @@ header h1 {
border-radius: 8px;
}
#moves-panel, #all-games-panel {
#moves-panel, #all-games-panel, #standings-panel {
background: rgba(0, 0, 0, 0.3);
border-radius: 12px;
padding: 16px;
}
#moves-panel h3, #all-games-panel h3 {
#moves-panel h3, #all-games-panel h3, #standings-panel h3 {
margin-bottom: 12px;
color: #e94560;
font-size: 1rem;
}
#standings-content {
font-size: 0.9rem;
line-height: 1.6;
}
#standings-content .standings-loading {
color: #888;
font-style: italic;
}
.standings-row {
display: flex;
justify-content: space-between;
padding: 6px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.standings-row:last-child {
border-bottom: none;
}
.standings-label {
color: #aaa;
}
.standings-value {
color: #fff;
font-weight: 600;
}
.standings-rank {
font-size: 2rem;
font-weight: bold;
color: #e94560;
text-align: center;
padding: 8px 0;
}
.standings-rank-label {
font-size: 0.8rem;
color: #888;
text-align: center;
}
.standings-header {
text-align: center;
margin-bottom: 8px;
color: #ffd700;
font-size: 0.85rem;
}
#moves-list {
max-height: 300px;
overflow-y: auto;