-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 771 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 771 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
:root {
--color-yellow: #f0db4f;
--color-black: #323330;
--color-white: #eeeeee;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
background-color: var(--color-black);
color: var(--color-white);
font-family: Arial, Helvetica, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
a, sub {
color: var(--color-yellow);
text-decoration: none;
}
a {
padding: 5px 2px;
}
a:hover {
background-color: var(--color-yellow);
color: var(--color-black);
transition: .2s ease;
}
#heading {
display: flex;
align-items: baseline;
justify-content: space-between;
width: 400px;
}
h1 {
margin: 0;
}
#points {
text-align: center;
}