-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopten.css
74 lines (64 loc) · 1.05 KB
/
topten.css
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #1e1e2f;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
}
header {
background-color: #282c34;
width: 100%;
padding: 15px 0;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
color: #61dafb;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.content {
margin: 20px;
width: 90%;
max-width: 800px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #2c2f3e;
}
th,
td {
padding: 12px;
text-align: center;
border: 1px solid #444;
}
th {
background-color: #3a3d4f;
color: #61dafb;
}
tr:nth-child(even) {
background-color: #292b3a;
}
tr:hover {
background-color: #3d3f50;
}
.loading {
margin: 20px 0;
font-size: 1.2rem;
color: #61dafb;
}
.error {
margin: 20px 0;
font-size: 1rem;
color: #ff6f6f;
}
a {
text-decoration: none;
color: #ab9ff2;
}
a:hover {
color: grey;
}