blob: bf027af3f6c177058bcdc6e861e1ba974e538b83 (
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
|
body {
font-family: monospace;
font-size: 100%;
background-color: white;
color: #111;
width: 80%;
min-width: 400px;
min-height: 200px;
padding: 1em;
margin: 5% 10%;
border: thin solid gray;
border-radius: 5px;
display: block;
}
a:link { color: blue; text-decoration: none; }
a:hover { color: blue; text-decoration: underline; }
a:visited { color: blue; }
h1 a { color: inherit !important }
h2 a { color: inherit !important }
h3 a { color: inherit !important }
h4 a { color: inherit !important }
h5 a { color: inherit !important }
h6 a { color: inherit !important }
#menu li {
display: inline;
}
#post-list {
margin-bottom: 1em;
margin-top: 1em;
}
pre {
margin: 2em 1em 2em 4em;
}
|