-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.css
More file actions
86 lines (74 loc) · 1.49 KB
/
stats.css
File metadata and controls
86 lines (74 loc) · 1.49 KB
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
.stats-container {
background: rgba(255, 255, 255, 0.95);
border-radius: 8px;
padding: 20px;
margin: 20px auto;
max-width: 800px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.stats-container h2 {
color: #333;
text-align: center;
margin-bottom: 30px;
font-size: 2em;
}
.stat-section {
background: #f8f9fa;
border-radius: 6px;
padding: 15px;
margin-bottom: 20px;
}
.stat-section h3 {
color: #444;
margin-bottom: 15px;
font-size: 1.5em;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
.stats-list {
list-style: none;
padding: 0;
}
.stats-list li {
padding: 8px 12px;
margin: 5px 0;
background: white;
border-radius: 4px;
display: flex;
justify-content: space-between;
align-items: center;
transition: transform 0.2s;
}
.stats-list li:hover {
transform: translateX(5px);
background: #f0f0f0;
}
.stat-number {
font-weight: bold;
color: #666;
}
.total-levels {
text-align: center;
font-size: 1.8em;
color: #333;
margin: 20px 0;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.stat-section {
animation: fadeIn 0.5s ease-out forwards;
}
.stat-section:nth-child(2) {
animation-delay: 0.2s;
}
.stat-section:nth-child(3) {
animation-delay: 0.4s;
}