blob: 52f0f937f1941cf36fb1df2d292a6925c25d0e41 (
plain) (
blame)
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
|
body {
display: table;
height: calc(100vh - 100px);
}
ul {
list-style-type: none;
padding: 0 !important;
}
ul li {
color: var(--text-normal);
background-color: var(--background-code);
padding: 32px;
margin: 16px;
border-radius: 16px;
list-style-type: none;
font-size: 16px;
}
ul li a {
color: var(--text-code);
font-size: 1.3em;
line-height: 1.3;
font-weight: 700;
text-decoration: none;
}
ul li a:after {
content: "\a";
white-space: pre;
}
div.tags {
display: flex;
align-items: center;
text-align: center;
flex-wrap: wrap;
}
a.tag {
text-decoration: none;
background-color: var(--background-lighter);
color: var(--text-normal);
font-size: 0.8em;
padding: 5px 8px;
margin: 5px 5px 5px 0;
border-radius: 15px;
}
a.tag:visited {
color: var(--text-normal);
}
.index-note {
display: table-footer-group;
}
.index-note p {
text-align: center;
font-size: 15px;
}
|