-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
80 lines (66 loc) · 1.14 KB
/
styles.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
75
76
77
78
79
80
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
:root {
--background-color: #0f0f23;
--foreground-color: #ccc;
--accent-color: #99ff99;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--background-color);
color: var(--foreground-color);
padding: 1rem;
font-weight: 300;
font-family: "Roboto", sans-serif;
}
a {
color: var(--accent-color);
}
#leaderboard-header {
display: flex;
justify-content: space-between;
}
#leaderboard-header-info {
display: flex;
}
.shiny {
text-shadow: 0 0 2px var(--accent-color), 0 0 5px var(--accent-color);
}
.star {
color: yellow;
}
ul {
margin-top: 1rem;
list-style: none;
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 1rem;
}
li {
display: flex;
flex-direction: column;
gap: 0.2rem;
border: 1px solid var(--accent-color);
padding: 0.8rem;
}
.user-item {
display: flex;
gap: 0.2rem;
}
.user-name {
font-weight: bold;
}
footer {
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
p {
line-height: 1.5;
}