feat: WM2026 Tippspiel - Initial Backend + Frontend

This commit is contained in:
Ronny Müller
2026-04-03 21:41:19 +02:00
commit 1c685b90a0
2507 changed files with 997210 additions and 0 deletions
+92
View File
@@ -0,0 +1,92 @@
.page { display: flex; flex-direction: column; gap: 24px; }
.statsRow {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.statCard {
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.statValue {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 32px;
font-weight: 800;
line-height: 1;
}
.statLabel {
font-size: 12px;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.filters {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.filter, .filterActive {
padding: 7px 16px;
border-radius: 20px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
border: 1px solid rgba(255,255,255,0.1);
background: transparent;
color: var(--text-secondary);
transition: all 0.15s;
}
.filter:hover { border-color: var(--primary); color: var(--primary); }
.filterActive {
background: var(--primary-dim);
border-color: rgba(75,183,248,0.3);
color: var(--primary);
}
.dayGroup { display: flex; flex-direction: column; gap: 12px; }
.dayHeader {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 14px;
font-weight: 600;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.08em;
padding: 0 4px;
}
.matchList { display: flex; flex-direction: column; gap: 10px; }
/* States */
.loadingState, .errorState, .emptyState {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
padding: 60px 20px;
color: var(--text-secondary);
}
.spinner {
width: 32px; height: 32px;
border: 3px solid var(--surface-high);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.emptyIcon { font-size: 48px; }
.emptyHint { font-size: 13px; color: var(--text-muted); }
.errorState { color: var(--error); }