quality update:

- calculator
- result screens
- some fixes
This commit is contained in:
2026-02-08 15:19:13 +01:00
parent aa01f4136d
commit d0bbf7bdce
39 changed files with 3323 additions and 69107 deletions
+156 -101
View File
@@ -96,22 +96,25 @@
.league-container {
height: calc(100vh - 90px);
display: grid;
grid-template-columns: 1fr 3fr;
grid-template-columns: 1fr 2fr;
gap: 20px;
padding: 20px;
overflow: hidden;
}
/* Left Column - Header & Champions */
.left-column {
display: flex;
flex-direction: column;
gap: 20px;
gap: 0;
min-height: 0;
overflow: hidden;
}
.league-header {
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
padding: 25px;
border-radius: 12px 12px 0 0;
box-shadow: none;
padding: 20px;
text-align: center;
flex-shrink: 0;
color: white;
@@ -149,37 +152,37 @@
}
.header-logo {
height: 70px;
max-width: 180px;
height: 50px;
max-width: 150px;
object-fit: contain;
margin-bottom: 20px;
margin-bottom: 10px;
filter: brightness(1.2) contrast(1.1);
background-color: white;
padding: 10px;
border-radius: 8px;
padding: 6px;
border-radius: 6px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.league-title {
font-size: 2.2rem;
font-size: 1.8rem;
font-weight: 700;
color: rgb(255, 255, 255);
margin-bottom: 10px;
margin-bottom: 8px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.league-subtitle {
font-size: 1.1rem;
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.95);
margin-bottom: 20px;
margin-bottom: 12px;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.league-meta {
display: flex;
justify-content: space-around;
gap: 15px;
gap: 10px;
}
.meta-item {
@@ -187,7 +190,7 @@
}
.meta-number {
font-size: 1.6rem;
font-size: 1.2rem;
font-weight: 700;
color: #ffffff;
display: block;
@@ -195,83 +198,121 @@
}
.meta-label {
font-size: 0.8rem;
font-size: 0.65rem;
color: rgba(255, 255, 255, 0.9);
text-transform: uppercase;
letter-spacing: 0.5px;
letter-spacing: 0.3px;
font-weight: 500;
}
/* League Champion Section */
.champion-section {
background: white;
border-radius: 12px;
border-radius: 0 0 12px 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
padding: 25px;
padding: 12px;
flex: 1;
display: flex;
flex-direction: column;
overflow: visible;
min-height: 0;
border-top: 1px solid #e9ecef;
}
.champion-title {
text-align: center;
font-size: 1.4rem;
font-size: 0.9rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
margin-bottom: 8px;
flex-shrink: 0;
}
.champion-container {
display: flex;
flex-direction: column;
gap: 15px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 0.75fr 0.75fr 1.5fr;
gap: 10px;
flex: 1;
overflow: hidden;
min-height: 0;
}
.champion-card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
padding: 12px 12px 18px 12px;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
transition: all 0.2s ease;
gap: 8px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border-left: 5px solid;
border: 1px solid #e9ecef;
border-top: 6px solid;
justify-content: flex-end;
}
.champion-card::before {
content: '';
position: absolute;
top: 6px;
left: 1px;
right: 1px;
bottom: 1px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
pointer-events: none;
z-index: 1;
border-radius: 0 0 11px 11px;
}
.champion-card:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.champion-card.rank-1 {
border-left-color: #ffd700;
background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
border-top-color: #ffd700;
border-color: #ffd700;
background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
grid-column: 2;
grid-row: 1 / 4;
}
.champion-card.rank-2 {
border-left-color: #c0c0c0;
background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
border-top-color: #c0c0c0;
border-color: #c0c0c0;
background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 100%);
grid-column: 1;
grid-row: 2 / 4;
}
.champion-card.rank-3 {
border-left-color: #cd7f32;
background: linear-gradient(135deg, #fdf6f0 0%, #ffffff 100%);
border-top-color: #cd7f32;
border-color: #cd7f32;
background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
grid-column: 3;
grid-row: 3;
}
.rank-display {
display: flex;
flex-direction: column;
align-items: center;
min-width: 60px;
gap: 2px;
position: relative;
z-index: 2;
}
.medal {
font-size: 4.5rem;
line-height: 1;
}
.rank-number {
font-size: 1.8rem;
font-weight: bold;
font-size: 1.9rem;
font-weight: 900;
color: #333;
line-height: 1;
}
@@ -280,29 +321,31 @@
.champion-card.rank-2 .rank-number { color: #696969; }
.champion-card.rank-3 .rank-number { color: #8b4513; }
.rank-suffix {
font-size: 0.7rem;
color: #666;
text-transform: uppercase;
font-weight: bold;
}
.medal {
font-size: 1.5rem;
margin-top: 3px;
}
.participant-info {
flex: 1;
min-width: 0;
text-align: center;
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.participant-name {
font-size: 1.3rem;
font-weight: bold;
color: #333;
margin-bottom: 5px;
font-size: 1rem;
font-weight: 700;
color: #2c3e50;
margin: 0;
word-wrap: break-word;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
line-height: 1.2;
}
.participant-details {
@@ -315,59 +358,80 @@
.participant-id {
background: #28a745;
color: white;
padding: 3px 10px;
padding: 6px 12px;
border-radius: 12px;
font-size: 0.8rem;
font-weight: bold;
font-size: 0.75rem;
font-weight: 700;
display: inline-block;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}
.joker-badge {
background: #ffc107;
color: #856404;
padding: 3px 8px;
border-radius: 8px;
font-size: 0.7rem;
font-weight: bold;
padding: 6px 12px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 700;
display: inline-block;
text-transform: uppercase;
letter-spacing: 0.5px;
box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}
.score-display {
text-align: right;
min-width: 100px;
text-align: center;
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
gap: 1px;
}
.final-score {
font-size: 2rem;
font-weight: bold;
.score-number {
font-size: 1.8rem;
font-weight: 900;
color: #28a745;
line-height: 1;
}
.tens-count {
font-size: 1.2rem;
color: #ffc107;
font-weight: 700;
}
.total-score {
font-size: 0.9rem;
color: #666;
margin-top: 2px;
font-size: 0.8rem;
color: #ffc107;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.3px;
}
.tens-count {
font-size: 0.9rem;
font-size: 0.8rem;
color: #ffc107;
font-weight: bold;
margin-top: 2px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.3px;
}
.score-label {
font-size: 0.8rem;
color: #666;
font-size: 0.6rem;
color: #999;
text-transform: uppercase;
font-weight: bold;
font-weight: 600;
letter-spacing: 0.3px;
}
/* Right Column - League Table */
.right-column {
background: white;
border-radius: 8px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
display: flex;
@@ -376,13 +440,13 @@
.table-header {
background: #f8f9fa;
padding: 15px 20px;
padding: 12px 15px;
border-bottom: 1px solid #dee2e6;
flex-shrink: 0;
}
.table-title {
font-size: 1.25rem;
font-size: 0.95rem;
font-weight: 600;
color: #2c3e50;
margin: 0;
@@ -396,12 +460,12 @@
.league-table {
width: 100%;
border-collapse: collapse;
font-size: 0.85rem;
font-size: 0.75rem;
}
.league-table th,
.league-table td {
padding: 7px 5px;
padding: 6px 4px;
text-align: center;
border-bottom: 1px solid #f1f3f4;
border-right: 1px solid #f1f3f4;
@@ -421,20 +485,20 @@
.league-table th.player-col {
text-align: left;
width: 120px;
width: 100px;
}
.league-table th.tournament-col {
width: 70px;
width: 60px;
}
.league-table th.final-col {
width: 80px;
width: 70px;
background: #e3f2fd;
}
.league-table th.tens-col {
width: 70px;
width: 60px;
background: #fff3cd;
}
@@ -1043,33 +1107,24 @@
const topThree = processedParticipants.slice(0, 3);
return topThree.map(participant => {
const suffix = participant.rank === 1 ? 'st' :
participant.rank === 2 ? 'nd' :
participant.rank === 3 ? 'rd' : 'th';
const medal = participant.rank === 1 ? '🥇' :
participant.rank === 2 ? '🥈' :
const medal = participant.rank === 1 ? '🥇' :
participant.rank === 2 ? '🥈' :
participant.rank === 3 ? '🥉' : '';
return `
<div class="champion-card rank-${participant.rank}">
<div class="rank-display">
<div class="rank-number">${participant.rank}</div>
<div class="rank-suffix">${suffix}</div>
<div class="medal">${medal}</div>
</div>
<div class="participant-info">
<div class="participant-name">${participant.name}</div>
<div class="participant-details">
<div class="participant-id">ID: ${participant.id}</div>
</div>
</div>
<div class="score-display">
<div class="final-score">${participant.final_score}</div>
<div class="tens-count">🎯 ${participant.total_tens} × 10</div>
<div class="score-number">${participant.final_score}</div>
<div class="tens-count">🎯 ${participant.total_tens}</div>
</div>
</div>
`;