blob: 23e50744f5e4895e404ef8224ad57f25f302e4df (
plain)
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
|
.container {
min-height: 100vh;
padding: 0 0.5rem;
display: flex;
flex-direction: column;
justify-content: center;
}
.main {
flex: 1;
display: block;
width: 100%;
max-width: 600px;
margin: 6rem auto;
font-family: monospace;
font-size: 20px;
color: #333;
}
.main h1 {
margin: 1rem 0;
line-height: 1.15;
font-size: 28px;
}
.listing {
margin: 0 -12px;
}
.listing div {
padding: 4px 12px;
}
.main a:hover,
.main a:active,
.main a:focus {
text-decoration: none;
font-weight: bold;
}
.listing div:nth-child(even) { background: #eee }
.listing div:nth-child(odd) { background: #fff }
.breadcrumbs {
margin: 1rem 0 1rem -8px;
font-size: 16px;
color: #666 !important;
}
.breadcrumbs .separator {
margin: 0 8px;
}
.homeLink {
font-size: 16px;
color: #666;
display: block;
margin-bottom: 2rem;
}
|