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 @@
1
+ /* Empty placeholder file */
@@ -0,0 +1,584 @@
1
+ /*
2
+ * AsciiDoc 'flask' theme for xhtml11 and html5 backends. A shameless knock-off
3
+ * of the Flask website styling (http://flask.pocoo.org/docs/).
4
+ *
5
+ * The implementation is straight-forward, consisting of the asciidoc.css file
6
+ * followed by theme specific overrides.
7
+ *
8
+ * */
9
+
10
+
11
+ /* Shared CSS for AsciiDoc xhtml11 and html5 backends */
12
+
13
+ /* Default font. */
14
+ body {
15
+ font-family: Georgia,serif;
16
+ }
17
+
18
+ /* Title font. */
19
+ h1, h2, h3, h4, h5, h6,
20
+ div.title, caption.title,
21
+ thead, p.table.header,
22
+ #toctitle,
23
+ #author, #revnumber, #revdate, #revremark,
24
+ #footer {
25
+ font-family: Arial,Helvetica,sans-serif;
26
+ }
27
+
28
+ body {
29
+ margin: 1em 5% 1em 5%;
30
+ }
31
+
32
+ a {
33
+ color: blue;
34
+ text-decoration: underline;
35
+ }
36
+ a:visited {
37
+ color: fuchsia;
38
+ }
39
+
40
+ em {
41
+ font-style: italic;
42
+ color: navy;
43
+ }
44
+
45
+ strong {
46
+ font-weight: bold;
47
+ color: #083194;
48
+ }
49
+
50
+ h1, h2, h3, h4, h5, h6 {
51
+ color: #527bbd;
52
+ margin-top: 1.2em;
53
+ margin-bottom: 0.5em;
54
+ line-height: 1.3;
55
+ }
56
+
57
+ h1, h2, h3 {
58
+ border-bottom: 2px solid silver;
59
+ }
60
+ h2 {
61
+ padding-top: 0.5em;
62
+ }
63
+ h3 {
64
+ float: left;
65
+ }
66
+ h3 + * {
67
+ clear: left;
68
+ }
69
+ h5 {
70
+ font-size: 1.0em;
71
+ }
72
+
73
+ div.sectionbody {
74
+ margin-left: 0;
75
+ }
76
+
77
+ hr {
78
+ border: 1px solid silver;
79
+ }
80
+
81
+ p {
82
+ margin-top: 0.5em;
83
+ margin-bottom: 0.5em;
84
+ }
85
+
86
+ ul, ol, li > p {
87
+ margin-top: 0;
88
+ }
89
+ ul > li { color: #aaa; }
90
+ ul > li > * { color: black; }
91
+
92
+ pre {
93
+ padding: 0;
94
+ margin: 0;
95
+ }
96
+
97
+ #author {
98
+ color: #527bbd;
99
+ font-weight: bold;
100
+ font-size: 1.1em;
101
+ }
102
+ #email {
103
+ }
104
+ #revnumber, #revdate, #revremark {
105
+ }
106
+
107
+ #footer {
108
+ font-size: small;
109
+ border-top: 2px solid silver;
110
+ padding-top: 0.5em;
111
+ margin-top: 4.0em;
112
+ }
113
+ #footer-text {
114
+ float: left;
115
+ padding-bottom: 0.5em;
116
+ }
117
+ #footer-badges {
118
+ float: right;
119
+ padding-bottom: 0.5em;
120
+ }
121
+
122
+ #preamble {
123
+ margin-top: 1.5em;
124
+ margin-bottom: 1.5em;
125
+ }
126
+ div.imageblock, div.exampleblock, div.verseblock,
127
+ div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
128
+ div.admonitionblock {
129
+ margin-top: 1.0em;
130
+ margin-bottom: 1.5em;
131
+ }
132
+ div.admonitionblock {
133
+ margin-top: 2.0em;
134
+ margin-bottom: 2.0em;
135
+ margin-right: 10%;
136
+ color: #606060;
137
+ }
138
+
139
+ div.content { /* Block element content. */
140
+ padding: 0;
141
+ }
142
+
143
+ /* Block element titles. */
144
+ div.title, caption.title {
145
+ color: #527bbd;
146
+ font-weight: bold;
147
+ text-align: left;
148
+ margin-top: 1.0em;
149
+ margin-bottom: 0.5em;
150
+ }
151
+ div.title + * {
152
+ margin-top: 0;
153
+ }
154
+
155
+ td div.title:first-child {
156
+ margin-top: 0.0em;
157
+ }
158
+ div.content div.title:first-child {
159
+ margin-top: 0.0em;
160
+ }
161
+ div.content + div.title {
162
+ margin-top: 0.0em;
163
+ }
164
+
165
+ div.sidebarblock > div.content {
166
+ background: #ffffee;
167
+ border: 1px solid #dddddd;
168
+ border-left: 4px solid #f0f0f0;
169
+ padding: 0.5em;
170
+ }
171
+
172
+ div.listingblock > div.content {
173
+ border: 1px solid #dddddd;
174
+ border-left: 5px solid #f0f0f0;
175
+ background: #f8f8f8;
176
+ padding: 0.5em;
177
+ }
178
+
179
+ div.quoteblock, div.verseblock {
180
+ padding-left: 1.0em;
181
+ margin-left: 1.0em;
182
+ margin-right: 10%;
183
+ border-left: 5px solid #f0f0f0;
184
+ color: #777777;
185
+ }
186
+
187
+ div.quoteblock > div.attribution {
188
+ padding-top: 0.5em;
189
+ text-align: right;
190
+ }
191
+
192
+ div.verseblock > pre.content {
193
+ font-family: inherit;
194
+ font-size: inherit;
195
+ }
196
+ div.verseblock > div.attribution {
197
+ padding-top: 0.75em;
198
+ text-align: left;
199
+ }
200
+ /* DEPRECATED: Pre version 8.2.7 verse style literal block. */
201
+ div.verseblock + div.attribution {
202
+ text-align: left;
203
+ }
204
+
205
+ div.admonitionblock .icon {
206
+ vertical-align: top;
207
+ font-size: 1.1em;
208
+ font-weight: bold;
209
+ text-decoration: underline;
210
+ color: #527bbd;
211
+ padding-right: 0.5em;
212
+ }
213
+ div.admonitionblock td.content {
214
+ padding-left: 0.5em;
215
+ border-left: 3px solid #dddddd;
216
+ }
217
+
218
+ div.exampleblock > div.content {
219
+ border-left: 3px solid #dddddd;
220
+ padding-left: 0.5em;
221
+ }
222
+
223
+ div.imageblock div.content { padding-left: 0; }
224
+ span.image img { border-style: none; }
225
+ a.image:visited { color: white; }
226
+
227
+ dl {
228
+ margin-top: 0.8em;
229
+ margin-bottom: 0.8em;
230
+ }
231
+ dt {
232
+ margin-top: 0.5em;
233
+ margin-bottom: 0;
234
+ font-style: normal;
235
+ color: navy;
236
+ }
237
+ dd > *:first-child {
238
+ margin-top: 0.1em;
239
+ }
240
+
241
+ ul, ol {
242
+ list-style-position: outside;
243
+ }
244
+ ol.arabic {
245
+ list-style-type: decimal;
246
+ }
247
+ ol.loweralpha {
248
+ list-style-type: lower-alpha;
249
+ }
250
+ ol.upperalpha {
251
+ list-style-type: upper-alpha;
252
+ }
253
+ ol.lowerroman {
254
+ list-style-type: lower-roman;
255
+ }
256
+ ol.upperroman {
257
+ list-style-type: upper-roman;
258
+ }
259
+
260
+ div.compact ul, div.compact ol,
261
+ div.compact p, div.compact p,
262
+ div.compact div, div.compact div {
263
+ margin-top: 0.1em;
264
+ margin-bottom: 0.1em;
265
+ }
266
+
267
+ tfoot {
268
+ font-weight: bold;
269
+ }
270
+ td > div.verse {
271
+ white-space: pre;
272
+ }
273
+
274
+ div.hdlist {
275
+ margin-top: 0.8em;
276
+ margin-bottom: 0.8em;
277
+ }
278
+ div.hdlist tr {
279
+ padding-bottom: 15px;
280
+ }
281
+ dt.hdlist1.strong, td.hdlist1.strong {
282
+ font-weight: bold;
283
+ }
284
+ td.hdlist1 {
285
+ vertical-align: top;
286
+ font-style: normal;
287
+ padding-right: 0.8em;
288
+ color: navy;
289
+ }
290
+ td.hdlist2 {
291
+ vertical-align: top;
292
+ }
293
+ div.hdlist.compact tr {
294
+ margin: 0;
295
+ padding-bottom: 0;
296
+ }
297
+
298
+ .comment {
299
+ background: yellow;
300
+ }
301
+
302
+ .footnote, .footnoteref {
303
+ font-size: 0.8em;
304
+ }
305
+
306
+ span.footnote, span.footnoteref {
307
+ vertical-align: super;
308
+ }
309
+
310
+ #footnotes {
311
+ margin: 20px 0 20px 0;
312
+ padding: 7px 0 0 0;
313
+ }
314
+
315
+ #footnotes div.footnote {
316
+ margin: 0 0 5px 0;
317
+ }
318
+
319
+ #footnotes hr {
320
+ border: none;
321
+ border-top: 1px solid silver;
322
+ height: 1px;
323
+ text-align: left;
324
+ margin-left: 0;
325
+ width: 20%;
326
+ min-width: 100px;
327
+ }
328
+
329
+ div.colist td {
330
+ padding-right: 0.5em;
331
+ padding-bottom: 0.3em;
332
+ vertical-align: top;
333
+ }
334
+ div.colist td img {
335
+ margin-top: 0.3em;
336
+ }
337
+
338
+ @media print {
339
+ #footer-badges { display: none; }
340
+ }
341
+
342
+ #toc {
343
+ margin-bottom: 2.5em;
344
+ }
345
+
346
+ #toctitle {
347
+ color: #527bbd;
348
+ font-size: 1.1em;
349
+ font-weight: bold;
350
+ margin-top: 1.0em;
351
+ margin-bottom: 0.1em;
352
+ }
353
+
354
+ div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
355
+ margin-top: 0;
356
+ margin-bottom: 0;
357
+ }
358
+ div.toclevel2 {
359
+ margin-left: 2em;
360
+ font-size: 0.9em;
361
+ }
362
+ div.toclevel3 {
363
+ margin-left: 4em;
364
+ font-size: 0.9em;
365
+ }
366
+ div.toclevel4 {
367
+ margin-left: 6em;
368
+ font-size: 0.9em;
369
+ }
370
+
371
+ span.aqua { color: aqua; }
372
+ span.black { color: black; }
373
+ span.blue { color: blue; }
374
+ span.fuchsia { color: fuchsia; }
375
+ span.gray { color: gray; }
376
+ span.green { color: green; }
377
+ span.lime { color: lime; }
378
+ span.maroon { color: maroon; }
379
+ span.navy { color: navy; }
380
+ span.olive { color: olive; }
381
+ span.purple { color: purple; }
382
+ span.red { color: red; }
383
+ span.silver { color: silver; }
384
+ span.teal { color: teal; }
385
+ span.white { color: white; }
386
+ span.yellow { color: yellow; }
387
+
388
+ span.aqua-background { background: aqua; }
389
+ span.black-background { background: black; }
390
+ span.blue-background { background: blue; }
391
+ span.fuchsia-background { background: fuchsia; }
392
+ span.gray-background { background: gray; }
393
+ span.green-background { background: green; }
394
+ span.lime-background { background: lime; }
395
+ span.maroon-background { background: maroon; }
396
+ span.navy-background { background: navy; }
397
+ span.olive-background { background: olive; }
398
+ span.purple-background { background: purple; }
399
+ span.red-background { background: red; }
400
+ span.silver-background { background: silver; }
401
+ span.teal-background { background: teal; }
402
+ span.white-background { background: white; }
403
+ span.yellow-background { background: yellow; }
404
+
405
+ span.big { font-size: 2em; }
406
+ span.small { font-size: 0.6em; }
407
+
408
+ span.underline { text-decoration: underline; }
409
+ span.overline { text-decoration: overline; }
410
+ span.line-through { text-decoration: line-through; }
411
+
412
+
413
+ /*
414
+ * xhtml11 specific
415
+ *
416
+ * */
417
+
418
+ tt {
419
+ font-family: monospace;
420
+ font-size: inherit;
421
+ color: navy;
422
+ }
423
+
424
+ div.tableblock {
425
+ margin-top: 1.0em;
426
+ margin-bottom: 1.5em;
427
+ }
428
+ div.tableblock > table {
429
+ border: 3px solid #527bbd;
430
+ }
431
+ thead, p.table.header {
432
+ font-weight: bold;
433
+ color: #527bbd;
434
+ }
435
+ p.table {
436
+ margin-top: 0;
437
+ }
438
+ /* Because the table frame attribute is overriden by CSS in most browsers. */
439
+ div.tableblock > table[frame="void"] {
440
+ border-style: none;
441
+ }
442
+ div.tableblock > table[frame="hsides"] {
443
+ border-left-style: none;
444
+ border-right-style: none;
445
+ }
446
+ div.tableblock > table[frame="vsides"] {
447
+ border-top-style: none;
448
+ border-bottom-style: none;
449
+ }
450
+
451
+
452
+ /*
453
+ * html5 specific
454
+ *
455
+ * */
456
+
457
+ .monospaced {
458
+ font-family: monospace;
459
+ font-size: inherit;
460
+ color: navy;
461
+ }
462
+
463
+ table.tableblock {
464
+ margin-top: 1.0em;
465
+ margin-bottom: 1.5em;
466
+ }
467
+ thead, p.tableblock.header {
468
+ font-weight: bold;
469
+ color: #527bbd;
470
+ }
471
+ p.tableblock {
472
+ margin-top: 0;
473
+ }
474
+ table.tableblock {
475
+ border-width: 3px;
476
+ border-spacing: 0px;
477
+ border-style: solid;
478
+ border-color: #527bbd;
479
+ border-collapse: collapse;
480
+ }
481
+ th.tableblock, td.tableblock {
482
+ border-width: 1px;
483
+ padding: 4px;
484
+ border-style: solid;
485
+ border-color: #527bbd;
486
+ }
487
+
488
+ table.tableblock.frame-topbot {
489
+ border-left-style: hidden;
490
+ border-right-style: hidden;
491
+ }
492
+ table.tableblock.frame-sides {
493
+ border-top-style: hidden;
494
+ border-bottom-style: hidden;
495
+ }
496
+ table.tableblock.frame-none {
497
+ border-style: hidden;
498
+ }
499
+
500
+ th.tableblock.halign-left, td.tableblock.halign-left {
501
+ text-align: left;
502
+ }
503
+ th.tableblock.halign-center, td.tableblock.halign-center {
504
+ text-align: center;
505
+ }
506
+ th.tableblock.halign-right, td.tableblock.halign-right {
507
+ text-align: right;
508
+ }
509
+
510
+ th.tableblock.valign-top, td.tableblock.valign-top {
511
+ vertical-align: top;
512
+ }
513
+ th.tableblock.valign-middle, td.tableblock.valign-middle {
514
+ vertical-align: middle;
515
+ }
516
+ th.tableblock.valign-bottom, td.tableblock.valign-bottom {
517
+ vertical-align: bottom;
518
+ }
519
+
520
+
521
+ /*
522
+ * Theme specific overrides of the preceding (asciidoc.css) CSS.
523
+ *
524
+ */
525
+ body {
526
+ font-family: Garamond, Georgia, serif;
527
+ font-size: 17px;
528
+ color: #3E4349;
529
+ line-height: 1.3em;
530
+ }
531
+ h1, h2, h3, h4, h5, h6,
532
+ div.title, caption.title,
533
+ thead, p.table.header,
534
+ #toctitle,
535
+ #author, #revnumber, #revdate, #revremark,
536
+ #footer {
537
+ font-family: Garmond, Georgia, serif;
538
+ font-weight: normal;
539
+ border-bottom-width: 0;
540
+ color: #3E4349;
541
+ }
542
+ div.title, caption.title { color: #596673; font-weight: bold; }
543
+ h1 { font-size: 240%; }
544
+ h2 { font-size: 180%; }
545
+ h3 { font-size: 150%; }
546
+ h4 { font-size: 130%; }
547
+ h5 { font-size: 100%; }
548
+ h6 { font-size: 100%; }
549
+ #header h1 { margin-top: 0; }
550
+ #toc {
551
+ color: #444444;
552
+ line-height: 1.5;
553
+ padding-top: 1.5em;
554
+ }
555
+ #toctitle {
556
+ font-size: 20px;
557
+ }
558
+ #toc a {
559
+ border-bottom: 1px dotted #999999;
560
+ color: #444444 !important;
561
+ text-decoration: none !important;
562
+ }
563
+ #toc a:hover {
564
+ border-bottom: 1px solid #6D4100;
565
+ color: #6D4100 !important;
566
+ text-decoration: none !important;
567
+ }
568
+ div.toclevel1 { margin-top: 0.2em; font-size: 16px; }
569
+ div.toclevel2 { margin-top: 0.15em; font-size: 14px; }
570
+ em, dt, td.hdlist1 { color: black; }
571
+ strong { color: #3E4349; }
572
+ a { color: #004B6B; text-decoration: none; border-bottom: 1px dotted #004B6B; }
573
+ a:visited { color: #615FA0; border-bottom: 1px dotted #615FA0; }
574
+ a:hover { color: #6D4100; border-bottom: 1px solid #6D4100; }
575
+ div.tableblock > table, table.tableblock { border: 3px solid #E8E8E8; }
576
+ th.tableblock, td.tableblock { border: 1px solid #E8E8E8; }
577
+ ul > li > * { color: #3E4349; }
578
+ pre, tt, .monospaced { font-family: Consolas,Menlo,'Deja Vu Sans Mono','Bitstream Vera Sans Mono',monospace; }
579
+ tt, .monospaced { font-size: 0.9em; color: black;
580
+ }
581
+ div.exampleblock > div.content, div.sidebarblock > div.content, div.listingblock > div.content { border-width: 0 0 0 3px; border-color: #E8E8E8; }
582
+ div.verseblock { border-left-width: 0; margin-left: 3em; }
583
+ div.quoteblock { border-left-width: 3px; margin-left: 0; margin-right: 0;}
584
+ div.admonitionblock td.content { border-left: 3px solid #E8E8E8; }