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
|
#header h1 {
font-size: 120%;
display: inline-block;
}
code, pre {
color: #000;
background-color: #fff;
font-weight: normal;
font-family: "Menlo", "Consolas", "Inconsolata", "Anonymous", "Monaco", monospace;
font-size: 0.9em;
line-height: 1.2em;
}
p code, li>code {
border: 1px solid #DDDDDD;
padding: 2px;
font-size: 0.8em;
}
#header h1 a, h2.post-title a, h2.static-title a {
color: #000;
}
ul, ol {
margin-left: 2em;
}
div.highlight, pre {
margin-bottom: 1em;
}
code.has-jax {
border: none;
background-color: #fff;
}
.date {
font-style: italic;
color: #4e4e4e;
}
body {
font: 300 1.1em/1.6em "Droid Serif", "Open Sans", Cambria, Georgia, "DejaVu Serif", serif;
}
blockquote {
padding-top: 0;
}
.panel {
padding-left: 2em;
padding-right: 2em;
font-size: 120%;
}
.panel p {
font-weight: bold;
font-style: italic;
line-height: 1.1em;
}
footer {
text-align: center;
}
footer span {
font-style: italic;
}
|