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
70
71
|
body {
font-family: serif;
padding: 2ch;
margin: auto;
max-width: 78ch;
}
code {
font-family: monospace;
}
pre {
overflow: auto;
padding: 0.6rem 1rem;
border: 1px solid;
background-color: light-dark(#ffe, black);
}
table {
width: 100%;
}
footer {
padding: 5px;
}
header {
overflow: hidden;
line-height: 1.5;
}
header h1 {
float: left;
margin: 0;
}
.left {
float: left;
}
.right, header nav {
float: right;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
}
header nav ul li {
display: inline;
margin-left:10px;
}
.breadcrumb ol {
list-style: none;
margin: 0;
padding: 0;
}
.breadcrumb li {
display: inline;
white-space: nowrap;
}
.breadcrumb li:not(:last-child)::after {
margin: 0 0.25rem;
content: "/";
}
.index-post, .index-date {
padding-top: 20px;
}
.index-post {
text-align: left;
}
.index-date {
text-align: right;
}
|