quality update:
- calculator - result screens - some fixes
This commit is contained in:
+146
-101
@@ -96,7 +96,7 @@
|
||||
.tv-container {
|
||||
height: calc(100vh - 90px);
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr;
|
||||
grid-template-columns: 1fr 2fr;
|
||||
gap: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
@@ -105,18 +105,26 @@
|
||||
.left-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 20px;
|
||||
gap: 0;
|
||||
overflow: hidden;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.results-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: 15px;
|
||||
text-align: center;
|
||||
flex-shrink: 0;
|
||||
color: white;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* Dynamic header colors based on tournament type */
|
||||
@@ -149,37 +157,37 @@
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
height: 70px;
|
||||
max-width: 180px;
|
||||
height: 60px;
|
||||
max-width: 160px;
|
||||
object-fit: contain;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 12px;
|
||||
filter: brightness(1.2) contrast(1.1);
|
||||
background-color: white;
|
||||
padding: 10px;
|
||||
padding: 8px;
|
||||
border-radius: 8px;
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.results-title {
|
||||
font-size: 2.2rem;
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
color: rgb(255, 255, 255);
|
||||
margin-bottom: 10px;
|
||||
margin-bottom: 6px;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.results-subtitle {
|
||||
font-size: 1.1rem;
|
||||
font-size: 1rem;
|
||||
color: rgba(255, 255, 255, 0.95);
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 12px;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.results-meta {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
gap: 20px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.meta-item {
|
||||
@@ -187,7 +195,7 @@
|
||||
}
|
||||
|
||||
.meta-number {
|
||||
font-size: 1.8rem;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 700;
|
||||
color: #ffffff;
|
||||
display: block;
|
||||
@@ -195,83 +203,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;
|
||||
}
|
||||
|
||||
/* Modern Podium Design */
|
||||
.podium-section {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
padding: 25px;
|
||||
border-radius: 0 0 12px 12px;
|
||||
padding: 12px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: visible;
|
||||
min-height: 0;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
border-top: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
.podium-title {
|
||||
text-align: center;
|
||||
font-size: 1.4rem;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
color: #2c3e50;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.podium-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;
|
||||
overflow: hidden;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.podium-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-top: 6px solid;
|
||||
border: 1px solid #e9ecef;
|
||||
border-top-width: 6px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.podium-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;
|
||||
}
|
||||
|
||||
.podium-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);
|
||||
}
|
||||
|
||||
.podium-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;
|
||||
}
|
||||
|
||||
.podium-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;
|
||||
}
|
||||
|
||||
.podium-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,71 +326,74 @@
|
||||
.podium-card.rank-2 .rank-number { color: #696969; }
|
||||
.podium-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-id {
|
||||
background: #28a745;
|
||||
color: white;
|
||||
padding: 3px 10px;
|
||||
border-radius: 12px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: bold;
|
||||
display: inline-block;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.score-number {
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 900;
|
||||
color: #28a745;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.tens-count {
|
||||
font-size: 1rem;
|
||||
font-size: 1.2rem;
|
||||
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 - Full Results 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;
|
||||
@@ -353,13 +402,13 @@
|
||||
|
||||
.table-header {
|
||||
background: #f8f9fa;
|
||||
padding: 15px 20px;
|
||||
padding: 8px 12px;
|
||||
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;
|
||||
@@ -367,17 +416,19 @@
|
||||
|
||||
.table-container {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow: auto;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.results-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.results-table th,
|
||||
.results-table td {
|
||||
padding: 10px 8px;
|
||||
padding: 4px 6px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #f1f3f4;
|
||||
border-right: 1px solid #f1f3f4;
|
||||
@@ -388,15 +439,15 @@
|
||||
font-weight: 600;
|
||||
color: #495057;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.8rem;
|
||||
letter-spacing: 0.5px;
|
||||
font-size: 0.65rem;
|
||||
letter-spacing: 0.3px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.results-table th.rank-col {
|
||||
width: 80px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.results-table th.player-col {
|
||||
@@ -405,12 +456,12 @@
|
||||
}
|
||||
|
||||
.results-table th.score-col {
|
||||
width: 100px;
|
||||
width: auto;
|
||||
background: #e3f2fd;
|
||||
}
|
||||
|
||||
.results-table th.tens-col {
|
||||
width: 100px;
|
||||
width: auto;
|
||||
background: #fff3cd;
|
||||
}
|
||||
|
||||
@@ -452,30 +503,30 @@
|
||||
.rank-2 { color: #6c757d; }
|
||||
.rank-3 { color: #8b4513; }
|
||||
|
||||
.results-table tbody {
|
||||
display: table-row-group;
|
||||
}
|
||||
|
||||
.player-cell {
|
||||
text-align: left !important;
|
||||
padding-left: 12px !important;
|
||||
}
|
||||
|
||||
.player-name {
|
||||
font-size: 1rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
color: #2c3e50;
|
||||
word-break: keep-all;
|
||||
overflow-wrap: break-word;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
.score-cell {
|
||||
background: #e3f2fd !important;
|
||||
font-size: 1.1rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
color: #1976d2;
|
||||
}
|
||||
|
||||
.tens-cell {
|
||||
background: #fff3cd !important;
|
||||
font-size: 1rem;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
color: #856404;
|
||||
}
|
||||
@@ -484,10 +535,10 @@
|
||||
.stats-footer {
|
||||
background: white;
|
||||
border-top: 1px solid #dee2e6;
|
||||
padding: 10px 20px;
|
||||
padding: 6px 15px;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
font-size: 0.8rem;
|
||||
font-size: 0.7rem;
|
||||
color: #6c757d;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
@@ -833,19 +884,13 @@
|
||||
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="podium-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>
|
||||
|
||||
@@ -856,7 +901,7 @@
|
||||
|
||||
<div class="score-display">
|
||||
<div class="score-number">${participant.total_score}</div>
|
||||
<div class="tens-count">🎯 ${participant.tens_count} × 10</div>
|
||||
<div class="tens-count">🎯 ${participant.tens_count}</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user