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
+30
View File
@@ -0,0 +1,30 @@
.page { display: flex; flex-direction: column; gap: 20px; max-width: 640px; }
.loading { display: flex; justify-content: center; padding: 60px; }
.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); } }
.empty { color: var(--text-secondary); padding: 40px; text-align: center; }
.heroCard { padding: 28px; display: flex; align-items: center; gap: 20px; }
.avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--primary-dim); border: 2px solid rgba(75,183,248,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.heroInfo { flex: 1; }
.name { font-size: 22px; font-weight: 800; }
.rankBadge { font-size: 13px; color: var(--gold); margin-top: 4px; font-weight: 600; }
.heroPoints { text-align: right; }
.pointsVal { font-size: 40px; font-weight: 800; color: var(--primary); line-height: 1; display: block; }
.pointsLbl { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.statsGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.statCard { padding: 20px; text-align: center; }
.statVal { font-size: 36px; font-weight: 800; display: block; }
.statLbl { font-size: 13px; color: var(--text-secondary); display: block; margin-top: 4px; }
.accuracyCard { padding: 24px; }
.accuracyHeader { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.accuracyLabel { font-size: 14px; color: var(--text-secondary); }
.accuracyVal { font-size: 28px; font-weight: 800; color: var(--text-primary); }
.bar { height: 10px; background: var(--surface-high); border-radius: 5px; overflow: hidden; display: flex; margin-bottom: 12px; }
.barFill { height: 100%; transition: width 0.5s ease; }
.exact { background: var(--gold); }
.tendency { background: var(--primary); }
.barLegend { display: flex; gap: 16px; font-size: 12px; color: var(--text-secondary); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; }