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
|
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
.color-murky-pond {
color: #91947f;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Lucida Grande", "Lucida Sans Unicode", Geneva, sans-serif;
}
h2 {
font-weight: bold;
font-size: 1.5em;
}
.code {
font-family: "Monaco", monospace;
line-height: 1.6em;
}
.font-size-0\.8 {
font-size: 0.8em;
}
.font-size-1\.52 {
font-size: 1.52em;
}
.font-size-15 {
font-size: 15em;
}
.text-center {
text-align: center;
}
a:link { color: #b71863; }
a:hover { color: #880442; }
body {
background-color: #e3ce88;
color: #222;
font: 19px "Georgia", serif;
line-height: 1.65em;
}
header { margin-left: -90px; }
header h1 { display: none; }
h2 {
margin-top: 1.2em;
margin-bottom: 0.4em;
}
p {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
ul {
list-style: disc;
}
.content {
width: 640px;
margin-top: 1.8em;
margin-bottom: 2em;
margin-left: 11%;
}
.code-block {
padding: 12px 16px;
overflow: auto;
border: solid 2px #8c6e6e;
border-radius: 6px;
box-shadow: inset 1px 1px 10px #402929;
background-color: #2d1f1c;
color: #c9ccb4;
text-shadow: 1px 3px 5px #230f0f;
}
.margin-top-0\.5 {
margin-top: 0.5em;
}
.margin-bottom-0\.63 {
margin-bottom: 0.63em;
}
.margin-bottom-1\.8 {
margin-bottom: 1.8em;
}
|