-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
66 lines (56 loc) · 938 Bytes
/
index.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
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800|Gentium+Book+Basic:400i');
body {
font-family: 'Open Sans', sans-serif;
padding: 1rem;
}
h1 {
font: 800 64px/64px 'Open Sans', sans-serif;
text-transform: uppercase;
text-align: center;
}
h1 span {
font: 400 60px/60px 'gentium book basic';
font-style: italic;
text-transform: lowercase;
margin: 0 4px 0 -10px;
}
main {
display: flex;
}
main > div {
flex-grow: 1;
}
#stats {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
dl > li {
list-style: none;
}
dl > li + li {
margin-top: 1rem;
}
dl {
padding: 0.5em;
}
dt {
float: left;
clear: left;
width: 110px;
text-align: right;
font-weight: bold;
color: green;
}
dt::after {
content: ":";
}
dd {
margin: 0 0 0 115px;
padding: 0 0 0.5em 0;
}
dl:nth-of-type(even) {
background-color: WhiteSmoke;
}