-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.css
More file actions
56 lines (48 loc) · 801 Bytes
/
stats.css
File metadata and controls
56 lines (48 loc) · 801 Bytes
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
body {
font-family: sans-serif;
padding: 20px;
background: #f5f5f5;
color: #222;
transition: background 0.3s, color 0.3s;
}
body.dark {
background: #121212;
color: #eee;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.stats-box {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.stat {
background: white;
color: #222;
padding: 15px 25px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
width: 300px;
text-align: center;
transition: background 0.3s, color 0.3s;
}
body.dark .stat {
background: #1e1e1e;
color: #fff;
}
canvas {
margin-top: 20px;
}
a.back {
display: inline-block;
margin-top: 30px;
text-align: center;
color: #007BFF;
text-decoration: none;
}
body.dark a.back {
color: #8ab4f8;
}