-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (47 loc) · 1.08 KB
/
style.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
body {
margin: 8;
background-color: #222;
color: #fff;
font-family: 'JetBrains Mono', monospace;
}
footer {
text-align: center;
padding: 1rem;
background-color: #212121;
}
h1, h2, h3, h4, p {
text-align: center;
}
.versions {
margin: 20px;
}
h2.versions, h2.dev_versions, h2.pre_versions {
padding: 10px;
margin: 0;
text-align: center;
font-size: 24px;
border-radius: 5px;
margin-top: 20px;
}
h2.versions {
background-color: #3498db;
}
h2.dev_versions {
background-color: #e67e22;
}
h2.pre_versions {
background-color: #e74c3c;
}
p {
margin: 5px;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
color: #2980b9;
}
p.footer {
font-size: 8px;
}