-
Notifications
You must be signed in to change notification settings - Fork 136
/
manual
164 lines (135 loc) · 2.26 KB
/
manual
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
* Modified and lightened version of Twitter Bootstrap, by Thiht
* Originally licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
body {
background-color: #fff;
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 20px;
margin: 0 auto;
padding-top: 30px;
width: 940px;
text-align:justify;
text-justify:inter-word;
}
h1, h2, h3, h4, h5, h6 {
color: inherit;
font-family: inherit;
font-weight: 700;
line-height: 1;
margin: 10px 0;
text-rendering: optimizelegibility;
}
h1, h2, h3 {
line-height: 40px;
}
h4, h5, h6 {
line-height: 20px;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 14px;
}
h6 {
font-size: 12px;
}
p {
margin: 0 0 10px;
}
strong {
font-weight: 700;
}
em {
font-style: italic;
}
a {
color: #08c;
text-decoration: none;
}
a:hover {
color: #005580;
text-decoration: underline;
}
blockquote {
border-left: 5px solid #ddd;
margin: 0 0 20px;
padding: 0 0 0 15px;
}
blockquote p {
font-size: 16px;
font-weight: 300;
line-height: 25px;
margin-bottom: 0;
}
blockquote:before, blockquote:after {
content: "";
}
cite {
font-style: normal;
}
li {
line-height: 20px;
}
ul,ol {
margin: 0 0 10px 25px;
padding: 0;
}
ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}
code, pre {
border-radius: 3px;
color: #333;
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-size: 12px;
padding: 0 3px 2px;
}
code {
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
color: #d14;
padding: 2px 4px;
}
pre {
background-color: #f5f5f5;
border: 1px solid rgba(0,0,0,0.15);
border-radius: 4px;
display: block;
font-size: 13px;
line-height: 20px;
margin: 0 0 10px;
padding: 9.5px;
white-space: pre-wrap;
word-break: break-all;
word-wrap: break-word;
}
pre code {
background-color: transparent;
border: 0;
color: inherit;
padding: 0;
}
hr {
border: 0;
border-bottom: 1px solid #eee;
border-top: 1px solid #ddd;
margin: 20px 0;
}
abbr[title] {
border-bottom: 1px dotted #999;
cursor: help;
}