-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
69 lines (56 loc) · 1.06 KB
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Commissioner:[email protected]&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 50px;
font-family: 'Commissioner', sans-serif;
font-size: 1rem;
background-color: #000;
color: whitesmoke;
}
main {
max-width: 500px;
}
h1 {
color: rgb(188, 188, 188);
}
p {
color: rgb(188, 188, 188);
padding-top: 10px;
line-height: 1.5rem;
}
.highlight {
/* color: rgb(195, 161, 145); */
color: #fff;
}
/* Links */
a {
color: rgb(91, 139, 221);
text-decoration-color: rgb(91, 139, 221, 0.5);
}
a:hover, a:focus {
color: rgb(145, 182, 246);
text-decoration-color: rgb(145, 182, 246, 0.5);
}
a:active {
color: rgb(245, 245, 245);
text-decoration-color: rgb(245, 245, 245, 0.5);
}
ul.links {
list-style-type: none;
display: inline-block;
margin: 0;
padding: 0;
}
li {
/* float: left; */
display: inline;
}
.links li a {
/* display: inline-block; */
display: inline-block;
margin-right: 8px;
}