Spaces:
Sleeping
Sleeping
File size: 2,373 Bytes
d2a090a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | /* ========================================
NOVA AI GAMES - Stats Screen
Overview, Charts & Game Performance
======================================== */
.stats-content {
padding: var(--spacing-lg);
padding-top: 0;
}
.stats-overview {
display: flex;
justify-content: space-around;
margin-bottom: var(--spacing-lg);
}
.overview-stat {
text-align: center;
}
.overview-value {
display: block;
font-size: 28px;
font-weight: 700;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.overview-label {
font-size: 12px;
color: var(--text-secondary);
}
/* Weekly Chart */
.stats-chart {
margin-bottom: var(--spacing-lg);
}
.stats-chart h3 {
font-size: 16px;
margin-bottom: var(--spacing-md);
}
.chart-bars {
display: flex;
justify-content: space-between;
align-items: flex-end;
height: 120px;
padding-top: var(--spacing-md);
}
.chart-bar {
flex: 1;
margin: 0 4px;
background: var(--bg-tertiary);
border-radius: var(--radius-sm) var(--radius-sm) 0 0;
height: var(--height);
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
position: relative;
transition: all var(--transition-normal);
}
.chart-bar::before {
content: '';
position: absolute;
inset: 0;
background: var(--accent-gradient);
opacity: 0.6;
border-radius: inherit;
}
.chart-bar.today::before {
opacity: 1;
}
.chart-bar span {
position: absolute;
bottom: -24px;
font-size: 11px;
color: var(--text-muted);
}
/* Game Stats */
.game-stats h3 {
font-size: 16px;
margin-bottom: var(--spacing-md);
}
.game-stat-card {
display: flex;
align-items: center;
gap: var(--spacing-md);
margin-bottom: var(--spacing-sm);
padding: var(--spacing-md);
}
.game-stat-icon {
font-size: 28px;
}
.game-stat-info {
flex: 1;
}
.game-stat-info h4 {
font-size: 14px;
font-weight: 600;
}
.game-stat-info p {
font-size: 12px;
color: var(--text-secondary);
}
.game-stat-level {
font-size: 14px;
font-weight: 600;
color: var(--accent-primary);
} |