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
|
/*
DEMO ONLY, just to make the demo page pretty.
You don't need this stuff for SM2 to work. :)
*/
body {
font-size:75%;
}
code, pre {
font-family:"lucida console",monaco,courier,terminal,system;
font-size:100%;
color:#2233cc;
}
em em {
font-weight:normal;
font-style:normal;
color:#339933;
}
h1,
h2.special {
letter-spacing:-1px;
}
h1, h2, h3, h4 {
font-family:"helvetica neue",helvetica,verdana,arial,tahoma,"sans serif";
font-size:1em;
margin:0px;
padding:0px;
vertical-align:middle;
}
h1 {
font-size:2em;
}
h2 {
font-family:helvetica,arial,verdana,tahoma,"sans serif";
font-size:1.5em;
}
h3 {
font-size:1.17em;
border-bottom:1px solid #ccc;
padding-bottom:0.25em;
margin-top:1.5em;
}
h4 {
margin:1.5em 0px 0.5em 0px;
font-size:1.1em;
}
p {
font:normal 1em verdana,tahoma,arial,"sans serif";
}
code span,
pre span {
color:#666;
}
|