mizuho 0.9.6 → 0.9.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. data/README.markdown +4 -2
  2. data/Rakefile +0 -37
  3. data/asciidoc/BUGS +9 -18
  4. data/asciidoc/BUGS.txt +5 -14
  5. data/asciidoc/CHANGELOG +1433 -266
  6. data/asciidoc/CHANGELOG.txt +2821 -1810
  7. data/asciidoc/COPYING +339 -339
  8. data/asciidoc/COPYRIGHT +18 -18
  9. data/asciidoc/INSTALL +189 -30
  10. data/asciidoc/INSTALL.txt +175 -19
  11. data/asciidoc/MANIFEST +88 -0
  12. data/asciidoc/Makefile.in +29 -13
  13. data/asciidoc/README +16 -17
  14. data/asciidoc/README.txt +35 -36
  15. data/asciidoc/a2x.py +902 -0
  16. data/asciidoc/asciidoc.conf +610 -455
  17. data/asciidoc/asciidoc.py +1965 -1061
  18. data/asciidoc/asciidocapi.py +257 -0
  19. data/asciidoc/common.aap +2 -2
  20. data/asciidoc/configure +1170 -1023
  21. data/asciidoc/configure.ac +1 -1
  22. data/asciidoc/dblatex/asciidoc-dblatex.xsl +42 -0
  23. data/asciidoc/doc/a2x.1 +559 -102
  24. data/asciidoc/doc/a2x.1.txt +233 -91
  25. data/asciidoc/doc/article-docinfo.xml +87 -0
  26. data/asciidoc/doc/article.pdf +0 -0
  27. data/asciidoc/doc/article.txt +139 -122
  28. data/asciidoc/doc/asciidoc.1 +157 -46
  29. data/asciidoc/doc/asciidoc.1.txt +171 -118
  30. data/asciidoc/doc/asciidoc.conf +7 -8
  31. data/asciidoc/doc/asciidoc.dict +960 -635
  32. data/asciidoc/doc/asciidoc.txt +2335 -1464
  33. data/asciidoc/doc/asciidocapi.txt +189 -0
  34. data/asciidoc/doc/asciimathml.txt +14 -17
  35. data/asciidoc/doc/book-multi.txt +181 -155
  36. data/asciidoc/doc/book.epub +0 -0
  37. data/asciidoc/doc/book.txt +156 -131
  38. data/asciidoc/doc/customers.csv +18 -18
  39. data/asciidoc/doc/epub-notes.txt +210 -0
  40. data/asciidoc/doc/faq.txt +1122 -547
  41. data/asciidoc/doc/latex-backend.txt +192 -191
  42. data/asciidoc/doc/latex-bugs.txt +134 -0
  43. data/asciidoc/doc/latex-filter.pdf +0 -0
  44. data/asciidoc/doc/latex-filter.txt +196 -0
  45. data/asciidoc/doc/latexmath.txt +13 -136
  46. data/asciidoc/doc/latexmathml.txt +2 -2
  47. data/asciidoc/doc/main.aap +233 -297
  48. data/asciidoc/doc/music-filter.pdf +0 -0
  49. data/asciidoc/doc/music-filter.txt +55 -65
  50. data/asciidoc/doc/publishing-ebooks-with-asciidoc.txt +398 -0
  51. data/asciidoc/doc/slidy-example.txt +167 -0
  52. data/asciidoc/doc/slidy.txt +113 -0
  53. data/asciidoc/doc/source-highlight-filter.pdf +0 -0
  54. data/asciidoc/doc/source-highlight-filter.txt +45 -20
  55. data/asciidoc/doc/testasciidoc.txt +231 -0
  56. data/asciidoc/docbook-xsl/asciidoc-docbook-xsl.txt +30 -8
  57. data/asciidoc/docbook-xsl/chunked.xsl +17 -19
  58. data/asciidoc/docbook-xsl/common.xsl +106 -67
  59. data/asciidoc/docbook-xsl/epub.xsl +35 -0
  60. data/asciidoc/docbook-xsl/fo.xsl +3 -0
  61. data/asciidoc/docbook-xsl/htmlhelp.xsl +16 -17
  62. data/asciidoc/docbook-xsl/manpage.xsl +31 -31
  63. data/asciidoc/docbook-xsl/text.xsl +6 -1
  64. data/asciidoc/docbook-xsl/xhtml.xsl +14 -14
  65. data/asciidoc/docbook45.conf +759 -0
  66. data/asciidoc/filters/code/code-filter-readme.txt +37 -37
  67. data/asciidoc/filters/code/code-filter-test.txt +15 -15
  68. data/asciidoc/filters/code/code-filter.conf +8 -8
  69. data/asciidoc/filters/graphviz/asciidoc-graphviz-sample.txt +104 -64
  70. data/asciidoc/filters/graphviz/graphviz-filter.conf +20 -16
  71. data/asciidoc/filters/graphviz/graphviz2png.py +54 -39
  72. data/asciidoc/filters/latex/latex-filter.conf +18 -0
  73. data/asciidoc/filters/latex/latex2png.py +216 -0
  74. data/asciidoc/filters/music/music-filter.conf +8 -17
  75. data/asciidoc/filters/music/music2png.py +40 -32
  76. data/asciidoc/filters/source/source-highlight-filter.conf +40 -34
  77. data/asciidoc/help.conf +261 -96
  78. data/asciidoc/html4.conf +505 -460
  79. data/asciidoc/html5.conf +686 -0
  80. data/asciidoc/images/highlighter.png +0 -0
  81. data/asciidoc/images/icons/caution.png +0 -0
  82. data/asciidoc/images/icons/example.png +0 -0
  83. data/asciidoc/images/icons/important.png +0 -0
  84. data/asciidoc/images/icons/note.png +0 -0
  85. data/asciidoc/images/icons/tip.png +0 -0
  86. data/asciidoc/images/icons/warning.png +0 -0
  87. data/asciidoc/images/smallnew.png +0 -0
  88. data/asciidoc/javascripts/asciidoc.js +189 -0
  89. data/asciidoc/javascripts/slidy.js +2845 -0
  90. data/asciidoc/javascripts/toc.js +8 -0
  91. data/asciidoc/lang-de.conf +57 -0
  92. data/asciidoc/lang-en.conf +54 -0
  93. data/asciidoc/lang-es.conf +49 -9
  94. data/asciidoc/lang-fr.conf +59 -0
  95. data/asciidoc/lang-hu.conf +55 -0
  96. data/asciidoc/lang-it.conf +55 -0
  97. data/asciidoc/lang-nl.conf +57 -0
  98. data/asciidoc/lang-pt-BR.conf +56 -0
  99. data/asciidoc/lang-ru.conf +60 -0
  100. data/asciidoc/lang-uk.conf +60 -0
  101. data/asciidoc/latex.conf +700 -663
  102. data/asciidoc/main.aap +77 -0
  103. data/asciidoc/slidy.conf +136 -0
  104. data/asciidoc/{examples/website/xhtml11-manpage.css → stylesheets/asciidoc-manpage.css} +1 -1
  105. data/asciidoc/stylesheets/asciidoc.css +508 -0
  106. data/asciidoc/stylesheets/docbook-xsl.css +322 -272
  107. data/asciidoc/stylesheets/flask-manpage.css +1 -0
  108. data/asciidoc/stylesheets/flask.css +584 -0
  109. data/asciidoc/stylesheets/pygments.css +66 -0
  110. data/asciidoc/stylesheets/slidy.css +445 -0
  111. data/asciidoc/stylesheets/toc2.css +33 -0
  112. data/asciidoc/stylesheets/volnitsky-manpage.css +1 -0
  113. data/asciidoc/stylesheets/volnitsky.css +435 -0
  114. data/asciidoc/stylesheets/xhtml11-quirks.css +5 -3
  115. data/asciidoc/tests/asciidocapi.py +257 -0
  116. data/asciidoc/tests/data/deprecated-quotes.txt +12 -0
  117. data/asciidoc/tests/data/filters-test.txt +90 -0
  118. data/asciidoc/tests/data/lang-de-test.txt +106 -0
  119. data/asciidoc/tests/data/lang-en-test.txt +114 -0
  120. data/asciidoc/tests/data/lang-es-test.txt +106 -0
  121. data/asciidoc/tests/data/lang-fr-test.txt +106 -0
  122. data/asciidoc/tests/data/lang-hu-test.txt +106 -0
  123. data/asciidoc/tests/data/lang-nl-test.txt +94 -0
  124. data/asciidoc/tests/data/lang-pt-BR-test.txt +106 -0
  125. data/asciidoc/tests/data/lang-ru-test.txt +106 -0
  126. data/asciidoc/tests/data/lang-uk-test.txt +106 -0
  127. data/asciidoc/tests/data/oldtables.txt +64 -0
  128. data/asciidoc/tests/data/rcs-id-marker-test.txt +6 -0
  129. data/asciidoc/tests/data/testcases.conf +2 -0
  130. data/asciidoc/tests/data/testcases.txt +740 -0
  131. data/asciidoc/tests/data/utf8-bom-test.txt +9 -0
  132. data/asciidoc/tests/data/utf8-examples.txt +217 -0
  133. data/asciidoc/tests/testasciidoc.conf +520 -0
  134. data/asciidoc/tests/testasciidoc.py +411 -0
  135. data/asciidoc/text.conf +16 -16
  136. data/asciidoc/vim/syntax/asciidoc.vim +99 -91
  137. data/asciidoc/wordpress.conf +43 -3
  138. data/asciidoc/xhtml11-quirks.conf +61 -57
  139. data/asciidoc/xhtml11.conf +684 -645
  140. data/lib/mizuho.rb +2 -0
  141. data/lib/mizuho/generator.rb +2 -2
  142. data/test/generator_spec.rb +1 -1
  143. data/test/parser_spec.rb +1 -1
  144. data/test/spec_helper.rb +3 -4
  145. metadata +87 -88
  146. data/asciidoc/a2x +0 -674
  147. data/asciidoc/doc/article.css-embedded.html +0 -602
  148. data/asciidoc/doc/article.html +0 -46
  149. data/asciidoc/doc/asciidoc-revhistory.xml +0 -27
  150. data/asciidoc/doc/asciidoc.1.css-embedded.html +0 -598
  151. data/asciidoc/doc/asciidoc.1.css.html +0 -212
  152. data/asciidoc/doc/asciidoc.1.html +0 -190
  153. data/asciidoc/doc/asciidoc.css-embedded.html +0 -7853
  154. data/asciidoc/doc/asciidoc.css.html +0 -7416
  155. data/asciidoc/doc/asciidoc.html +0 -3339
  156. data/asciidoc/doc/book-multi.css-embedded.html +0 -575
  157. data/asciidoc/doc/book-multi.html +0 -55
  158. data/asciidoc/doc/book.css-embedded.html +0 -607
  159. data/asciidoc/doc/book.html +0 -43
  160. data/asciidoc/doc/docbook-xsl.css +0 -272
  161. data/asciidoc/doc/latex-backend.html +0 -117
  162. data/asciidoc/doc/music-filter.html +0 -566
  163. data/asciidoc/doc/source-highlight-filter.html +0 -214
  164. data/asciidoc/docbook.conf +0 -721
  165. data/asciidoc/examples/website/ASCIIMathML.js +0 -938
  166. data/asciidoc/examples/website/CHANGELOG.html +0 -4389
  167. data/asciidoc/examples/website/CHANGELOG.txt +0 -1810
  168. data/asciidoc/examples/website/INSTALL.html +0 -161
  169. data/asciidoc/examples/website/INSTALL.txt +0 -71
  170. data/asciidoc/examples/website/LaTeXMathML.js +0 -1223
  171. data/asciidoc/examples/website/README-website.html +0 -118
  172. data/asciidoc/examples/website/README-website.txt +0 -29
  173. data/asciidoc/examples/website/README.html +0 -125
  174. data/asciidoc/examples/website/README.txt +0 -36
  175. data/asciidoc/examples/website/a2x.1.html +0 -419
  176. data/asciidoc/examples/website/a2x.1.txt +0 -204
  177. data/asciidoc/examples/website/asciidoc-docbook-xsl.html +0 -130
  178. data/asciidoc/examples/website/asciidoc-docbook-xsl.txt +0 -43
  179. data/asciidoc/examples/website/asciidoc-graphviz-sample.txt +0 -130
  180. data/asciidoc/examples/website/asciimathml.txt +0 -64
  181. data/asciidoc/examples/website/build-website.sh +0 -25
  182. data/asciidoc/examples/website/customers.csv +0 -18
  183. data/asciidoc/examples/website/downloads.html +0 -257
  184. data/asciidoc/examples/website/downloads.txt +0 -121
  185. data/asciidoc/examples/website/faq.html +0 -673
  186. data/asciidoc/examples/website/faq.txt +0 -547
  187. data/asciidoc/examples/website/index.html +0 -419
  188. data/asciidoc/examples/website/index.txt +0 -245
  189. data/asciidoc/examples/website/latex-backend.html +0 -535
  190. data/asciidoc/examples/website/latex-backend.txt +0 -191
  191. data/asciidoc/examples/website/latexmathml.txt +0 -41
  192. data/asciidoc/examples/website/layout1.conf +0 -161
  193. data/asciidoc/examples/website/layout1.css +0 -65
  194. data/asciidoc/examples/website/layout2.conf +0 -158
  195. data/asciidoc/examples/website/layout2.css +0 -93
  196. data/asciidoc/examples/website/manpage.html +0 -266
  197. data/asciidoc/examples/website/manpage.txt +0 -118
  198. data/asciidoc/examples/website/music-filter.html +0 -242
  199. data/asciidoc/examples/website/music-filter.txt +0 -158
  200. data/asciidoc/examples/website/music1.abc +0 -12
  201. data/asciidoc/examples/website/music1.png +0 -0
  202. data/asciidoc/examples/website/music2.ly +0 -9
  203. data/asciidoc/examples/website/music2.png +0 -0
  204. data/asciidoc/examples/website/newlists.txt +0 -40
  205. data/asciidoc/examples/website/newtables.txt +0 -397
  206. data/asciidoc/examples/website/sample1.png +0 -0
  207. data/asciidoc/examples/website/sample3.png +0 -0
  208. data/asciidoc/examples/website/sample4.png +0 -0
  209. data/asciidoc/examples/website/source-highlight-filter.html +0 -286
  210. data/asciidoc/examples/website/source-highlight-filter.txt +0 -203
  211. data/asciidoc/examples/website/support.html +0 -78
  212. data/asciidoc/examples/website/support.txt +0 -5
  213. data/asciidoc/examples/website/toc.js +0 -69
  214. data/asciidoc/examples/website/userguide.html +0 -7460
  215. data/asciidoc/examples/website/userguide.txt +0 -4979
  216. data/asciidoc/examples/website/version83.txt +0 -37
  217. data/asciidoc/examples/website/version9.html +0 -143
  218. data/asciidoc/examples/website/version9.txt +0 -48
  219. data/asciidoc/examples/website/xhtml11-quirks.css +0 -41
  220. data/asciidoc/examples/website/xhtml11.css +0 -328
  221. data/asciidoc/stylesheets/xhtml11-manpage.css +0 -18
  222. data/asciidoc/stylesheets/xhtml11.css +0 -328
@@ -0,0 +1,33 @@
1
+ @media screen {
2
+ body {
3
+ max-width: 50em; /* approximately 80 characters wide */
4
+ margin-left: 16em;
5
+ }
6
+
7
+ #toc {
8
+ position: fixed;
9
+ top: 0;
10
+ left: 0;
11
+ bottom: 0;
12
+ width: 13em;
13
+ padding: 0.5em;
14
+ padding-bottom: 1.5em;
15
+ margin: 0;
16
+ overflow: auto;
17
+ border-right: 3px solid #f8f8f8;
18
+ }
19
+
20
+ #toc .toclevel1 {
21
+ margin-top: 0.5em;
22
+ }
23
+
24
+ #toc .toclevel2 {
25
+ margin-top: 0.25em;
26
+ display: list-item;
27
+ color: #aaaaaa;
28
+ }
29
+
30
+ #toctitle {
31
+ margin-top: 0.5em;
32
+ }
33
+ }
@@ -0,0 +1 @@
1
+ /* Empty placeholder file */
@@ -0,0 +1,435 @@
1
+ /*
2
+ * AsciiDoc 'volnitsky' theme for xhtml11 and html5 backends.
3
+ * Based on css from http://volnitsky.com, which was in turn based on default
4
+ * theme from AsciiDoc
5
+ *
6
+ * FIXME: The stlying is still a bit rough in places.
7
+ *
8
+ */
9
+
10
+ /* Default font. */
11
+ body {
12
+ font-family: Georgia,"Times New Roman",Times,serif;
13
+ }
14
+
15
+ /* Title font. */
16
+ h1, h2, h3, h4, h5, h6,
17
+ div.title, caption.title,
18
+ thead, p.table.header,
19
+ #toctitle,
20
+ #author, #revnumber, #revdate, #revremark,
21
+ #footer {
22
+ font-family: Candara,Arial,sans-serif;
23
+ }
24
+
25
+
26
+ #toc a {
27
+ border-bottom: 1px dotted #999999;
28
+ color: #3A3A4D !important;
29
+ text-decoration: none !important;
30
+ }
31
+ #toc a:hover {
32
+ border-bottom: 1px solid #6D4100;
33
+ color: #6D4100 !important;
34
+ text-decoration: none !important;
35
+ }
36
+ a { color: #666688; text-decoration: none; border-bottom: 1px dotted #666688; }
37
+ a:visited { color: #615FA0; border-bottom: 1px dotted #615FA0; }
38
+ a:hover { color: #6D4100; border-bottom: 1px solid #6D4100; }
39
+
40
+ em {
41
+ font-style: italic;
42
+ color: #444466;
43
+ }
44
+
45
+ strong {
46
+ font-weight: bold;
47
+ color: #444466;
48
+ }
49
+
50
+ h1, h2, h3, h4, h5, h6 {
51
+ color: #666688;
52
+ margin-bottom: 0.5em;
53
+ line-height: 1.3;
54
+ letter-spacing:+0.15em;
55
+ }
56
+
57
+ h1, h2, h3 { border-bottom: 2px solid #ccd; }
58
+ h2 { padding-top: 0.5em; }
59
+ h3 { float: left; }
60
+ h3 + * { clear: left; }
61
+
62
+ div.sectionbody {
63
+ margin-left: 0;
64
+ }
65
+
66
+ hr {
67
+ border: 1px solid #444466;
68
+ }
69
+
70
+ p {
71
+ margin-top: 0.5em;
72
+ margin-bottom: 0.5em;
73
+ }
74
+
75
+ ul, ol, li > p {
76
+ margin-top: 0;
77
+ }
78
+
79
+ pre {
80
+ padding: 0;
81
+ margin: 0;
82
+ }
83
+
84
+ #author {
85
+ color: #444466;
86
+ font-weight: bold;
87
+ font-size: 1.1em;
88
+ }
89
+
90
+ #footer {
91
+ font-size: small;
92
+ border-top: 2px solid silver;
93
+ padding-top: 0.5em;
94
+ margin-top: 4.0em;
95
+ }
96
+
97
+ #footer-text {
98
+ float: left;
99
+ padding-bottom: 0.5em;
100
+ }
101
+
102
+ #footer-badges {
103
+ float: right;
104
+ padding-bottom: 0.5em;
105
+ }
106
+
107
+ #preamble {
108
+ margin-top: 1.5em;
109
+ margin-bottom: 1.5em;
110
+ }
111
+
112
+ div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
113
+ div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
114
+ div.admonitionblock {
115
+ margin-top: 1.5em;
116
+ margin-bottom: 1.5em;
117
+ }
118
+
119
+ div.admonitionblock {
120
+ margin-top: 2.5em;
121
+ margin-bottom: 2.5em;
122
+ }
123
+
124
+ div.content { /* Block element content. */
125
+ padding: 0;
126
+ }
127
+
128
+ /* Block element titles. */
129
+ div.title, caption.title {
130
+ color: #444466;
131
+ font-weight: bold;
132
+ text-align: left;
133
+ margin-top: 1.0em;
134
+ margin-bottom: 0.5em;
135
+ }
136
+ div.title + * {
137
+ margin-top: 0;
138
+ }
139
+
140
+ td div.title:first-child {
141
+ margin-top: 0.0em;
142
+ }
143
+ div.content div.title:first-child {
144
+ margin-top: 0.0em;
145
+ }
146
+ div.content + div.title {
147
+ margin-top: 0.0em;
148
+ }
149
+
150
+ div.sidebarblock > div.content {
151
+ background: #ffffee;
152
+ border: 1px solid silver;
153
+ padding: 0.5em;
154
+ }
155
+
156
+ div.listingblock > div.content {
157
+ border: 1px solid silver;
158
+ background: #f4f4f4;
159
+ padding: 0.5em;
160
+ }
161
+
162
+ div.quoteblock {
163
+ padding-left: 2.0em;
164
+ margin-right: 10%;
165
+ }
166
+ div.quoteblock > div.attribution {
167
+ padding-top: 0.5em;
168
+ text-align: right;
169
+ }
170
+
171
+ div.verseblock {
172
+ padding-left: 2.0em;
173
+ margin-right: 10%;
174
+ }
175
+ div.verseblock > pre.content {
176
+ font-family: inherit;
177
+ }
178
+ div.verseblock > div.attribution {
179
+ padding-top: 0.75em;
180
+ text-align: left;
181
+ }
182
+ /* DEPRECATED: Pre version 8.2.7 verse style literal block. */
183
+ div.verseblock + div.attribution {
184
+ text-align: left;
185
+ }
186
+
187
+ div.admonitionblock .icon {
188
+ vertical-align: top;
189
+ font-size: 1.1em;
190
+ font-weight: bold;
191
+ text-decoration: underline;
192
+ color: #444466;
193
+ padding-right: 0.5em;
194
+ }
195
+ div.admonitionblock td.content {
196
+ padding-left: 0.5em;
197
+ border-left: 2px solid silver;
198
+ }
199
+
200
+ div.exampleblock > div.content {
201
+ border-left: 2px solid silver;
202
+ padding: 0.5em;
203
+ }
204
+
205
+ div.imageblock div.content { padding-left: 0; }
206
+ span.image img { border-style: none; }
207
+ a.image:visited { color: white; }
208
+
209
+ dl {
210
+ margin-top: 0.8em;
211
+ margin-bottom: 0.8em;
212
+ }
213
+ dt {
214
+ margin-top: 0.5em;
215
+ margin-bottom: 0;
216
+ font-style: normal;
217
+ color: #444466;
218
+ }
219
+ dd > *:first-child {
220
+ margin-top: 0.1em;
221
+ }
222
+
223
+ ul, ol {
224
+ list-style-position: outside;
225
+ }
226
+ ol.arabic {
227
+ list-style-type: decimal;
228
+ }
229
+ ol.loweralpha {
230
+ list-style-type: lower-alpha;
231
+ }
232
+ ol.upperalpha {
233
+ list-style-type: upper-alpha;
234
+ }
235
+ ol.lowerroman {
236
+ list-style-type: lower-roman;
237
+ }
238
+ ol.upperroman {
239
+ list-style-type: upper-roman;
240
+ }
241
+
242
+ div.compact ul, div.compact ol,
243
+ div.compact p, div.compact p,
244
+ div.compact div, div.compact div {
245
+ margin-top: 0.1em;
246
+ margin-bottom: 0.1em;
247
+ }
248
+
249
+ div.tableblock > table {
250
+ border: 3px solid #444466;
251
+ }
252
+ thead {
253
+ font-weight: bold;
254
+ color: #444466;
255
+ }
256
+ tfoot {
257
+ font-weight: bold;
258
+ }
259
+ td > div.verse {
260
+ white-space: pre;
261
+ }
262
+ p.table {
263
+ margin-top: 0;
264
+ }
265
+ /* Because the table frame attribute is overriden by CSS in most browsers. */
266
+ div.tableblock > table[frame="void"] {
267
+ border-style: none;
268
+ }
269
+ div.tableblock > table[frame="hsides"] {
270
+ border-left-style: none;
271
+ border-right-style: none;
272
+ }
273
+ div.tableblock > table[frame="vsides"] {
274
+ border-top-style: none;
275
+ border-bottom-style: none;
276
+ }
277
+
278
+
279
+ div.hdlist {
280
+ margin-top: 0.8em;
281
+ margin-bottom: 0.8em;
282
+ }
283
+ div.hdlist tr {
284
+ padding-bottom: 15px;
285
+ }
286
+ dt.hdlist1.strong, td.hdlist1.strong {
287
+ font-weight: bold;
288
+ }
289
+ td.hdlist1 {
290
+ vertical-align: top;
291
+ font-style: normal;
292
+ padding-right: 0.8em;
293
+ color: #444466;
294
+ }
295
+ td.hdlist2 {
296
+ vertical-align: top;
297
+ }
298
+ div.hdlist.compact tr {
299
+ margin: 0;
300
+ padding-bottom: 0;
301
+ }
302
+
303
+ .comment {
304
+ background: yellow;
305
+ }
306
+
307
+ @media print {
308
+ #footer-badges { display: none; }
309
+ }
310
+
311
+ #toctitle {
312
+ color: #666688;
313
+ font-size: 1.2em;
314
+ font-weight: bold;
315
+ margin-top: 1.0em;
316
+ margin-bottom: 0.1em;
317
+ }
318
+
319
+ div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 { margin-top: 0; margin-bottom: 0; }
320
+ div.toclevel1 { margin-top: 0.3em; margin-left: 0; font-size: 1.0em; }
321
+ div.toclevel2 { margin-top: 0.25em; margin-left: 2em; font-size: 0.9em; }
322
+ div.toclevel3 { margin-left: 4em; font-size: 0.8em; }
323
+ div.toclevel4 { margin-left: 6em; font-size: 0.8em; }
324
+
325
+ body {
326
+ margin: 1em 5%;
327
+ max-width: 55em;
328
+ padding-left: 0;
329
+
330
+ }
331
+
332
+ .monospaced, tt, div.listingblock > div.content {
333
+ font-family: Consolas, "Andale Mono", "Courier New", monospace;
334
+ color: #004400;
335
+ background: #f4f4f4;
336
+ max-width: 80em;
337
+ line-height: 1.2em;
338
+ }
339
+
340
+ .paragraph p {
341
+ line-height: 1.5em;
342
+ margin-top: 1em;
343
+ }
344
+
345
+ .paragraph p, li, dd, .content { max-width: 45em; }
346
+ .admonitionblock { max-width: 35em; }
347
+
348
+ div.sectionbody div.ulist > ul > li {
349
+ list-style-type: square;
350
+ color: #aaa;
351
+ }
352
+ div.sectionbody div.ulist > ul > li > * {
353
+ color: black;
354
+ /*font-size: 50%;*/
355
+ }
356
+
357
+
358
+ div.sectionbody div.ulist > ul > li div.ulist > ul > li {
359
+ color: #ccd ;
360
+ }
361
+ div.sectionbody div.ulist > ul > li div.ulist > ul > li > * {
362
+ color: black ;
363
+ }
364
+
365
+ em {
366
+ font-style: normal ! important;
367
+ font-weight: bold ! important;
368
+ color: #662222 ! important;
369
+ letter-spacing:+0.08em ! important;
370
+ }
371
+
372
+
373
+ /*
374
+ * html5 specific
375
+ *
376
+ * */
377
+
378
+ table.tableblock {
379
+ margin-top: 1.0em;
380
+ margin-bottom: 1.5em;
381
+ }
382
+ thead, p.tableblock.header {
383
+ font-weight: bold;
384
+ color: #666688;
385
+ }
386
+ p.tableblock {
387
+ margin-top: 0;
388
+ }
389
+ table.tableblock {
390
+ border-width: 3px;
391
+ border-spacing: 0px;
392
+ border-style: solid;
393
+ border-color: #444466;
394
+ border-collapse: collapse;
395
+ }
396
+ th.tableblock, td.tableblock {
397
+ border-width: 1px;
398
+ padding: 4px;
399
+ border-style: solid;
400
+ border-color: #444466;
401
+ }
402
+
403
+ table.tableblock.frame-topbot {
404
+ border-left-style: hidden;
405
+ border-right-style: hidden;
406
+ }
407
+ table.tableblock.frame-sides {
408
+ border-top-style: hidden;
409
+ border-bottom-style: hidden;
410
+ }
411
+ table.tableblock.frame-none {
412
+ border-style: hidden;
413
+ }
414
+
415
+ th.tableblock.halign-left, td.tableblock.halign-left {
416
+ text-align: left;
417
+ }
418
+ th.tableblock.halign-center, td.tableblock.halign-center {
419
+ text-align: center;
420
+ }
421
+ th.tableblock.halign-right, td.tableblock.halign-right {
422
+ text-align: right;
423
+ }
424
+
425
+ th.tableblock.valign-top, td.tableblock.valign-top {
426
+ vertical-align: top;
427
+ }
428
+ th.tableblock.valign-middle, td.tableblock.valign-middle {
429
+ vertical-align: middle;
430
+ }
431
+ th.tableblock.valign-bottom, td.tableblock.valign-bottom {
432
+ vertical-align: bottom;
433
+ }
434
+
435
+