blob: 0fcb7a3f942f6e2cfb85d20cd27b4fdf7aeb6d0e (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
*{
background-color: #faebbc;
}
*/
nav {
display: inline;
float: right;
}
#TOC:before {
content: "Table of Contents";
}
#TOC{
display: inline;
float: right;
margin: 1rem;
}
/*
nav#TOC li{
list-style-type: none;
}
*/
span.logo {
float: left;
}
header {
width: 40rem;
margin: auto;
overflow: auto;
background-color: #f3f3f3;
}
div.main {
width: 40rem;
margin: auto;
}
div.bodyitem {
margin: 1rem;
margin-bottom: 3rem;
line-height: 1.6;
}
a {
text-decoration: none;
}
header a {
padding: 1rem;
display: inline-block;
background-color: #f3f3f3;
}
blockquote {
border-left: .3rem solid #ccc;
padding-left: 1rem;
}
a:hover{
background-color: #ddd;
}
li.postlistitem{
margin-bottom: .5rem;
}
ul.postlist{
list-style-type: none;
padding: 0;
}
|