asciidoc.css 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. .asciidoc em {
  2. font-style: italic;
  3. color: #111111;
  4. }
  5. .asciidoc strong {
  6. font-weight: bold;
  7. color: #111111;
  8. }
  9. .asciidoc tt {
  10. color: #111111;
  11. }
  12. .asciidoc h1, .asciidoc h2, .asciidoc h3, .asciidoc h4, .asciidoc h5, .asciidoc h6 {
  13. color: #111111;
  14. font-family: sans-serif;
  15. margin-top: 1.2em;
  16. margin-bottom: 0.5em;
  17. line-height: 1.3;
  18. }
  19. .asciidoc h1, .asciidoc h2, .asciidoc h3 {
  20. border-bottom: 2px solid silver;
  21. }
  22. .asciidoc h2 {
  23. padding-top: 0.5em;
  24. }
  25. .asciidoc h3 {
  26. float: left;
  27. }
  28. .asciidoc h3 + * {
  29. clear: left;
  30. }
  31. .asciidoc div.sectionbody {
  32. font-family: serif;
  33. margin-left: 0;
  34. }
  35. .asciidoc hr {
  36. border: 1px solid silver;
  37. }
  38. .asciidoc p {
  39. margin-top: 0.5em;
  40. margin-bottom: 0.5em;
  41. }
  42. .asciidoc ul, .asciidoc ol, .asciidoc li > p {
  43. margin-top: 0;
  44. }
  45. .asciidoc pre {
  46. padding: 0;
  47. margin: 0;
  48. line-height: 14px;
  49. font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;
  50. font-size: 12px;
  51. }
  52. .asciidoc div.tableblock, .asciidoc div.imageblock, .asciidoc div.exampleblock,
  53. .asciidoc div.verseblock, .asciidoc div.quoteblock, .asciidoc div.literalblock,
  54. .asciidoc div.listingblock, .asciidoc div.sidebarblock,
  55. .asciidoc div.admonitionblock {
  56. margin-top: 1.5em;
  57. margin-bottom: 1.5em;
  58. }
  59. .asciidoc div.admonitionblock {
  60. margin-top: 2.5em;
  61. margin-bottom: 2.5em;
  62. }
  63. .asciidoc div.content { /* Block element content. */
  64. padding: 0;
  65. }
  66. /* Block element titles. */
  67. .asciidoc div.title, .asciidoc caption.title, .asciidoc div.sidebar-title {
  68. color: #111111;
  69. font-family: sans-serif;
  70. font-weight: bold;
  71. text-align: left;
  72. margin-top: 1.0em;
  73. margin-bottom: 0.5em;
  74. }
  75. .asciidoc div.title + * {
  76. margin-top: 0;
  77. }
  78. .asciidoc td div.title:first-child {
  79. margin-top: 0.0em;
  80. }
  81. .asciidoc div.content div.title:first-child {
  82. margin-top: 0.0em;
  83. }
  84. .asciidoc div.content + div.title {
  85. margin-top: 0.0em;
  86. }
  87. .asciidoc div.sidebarblock > div.sidebar-content {
  88. background: #ffffee;
  89. border: 1px solid silver;
  90. padding: 0.5em;
  91. }
  92. .asciidoc div.listingblock > div.content {
  93. border: 1px solid silver;
  94. background: #f4f4f4;
  95. padding: 0.5em;
  96. }
  97. .asciidoc div.quoteblock {
  98. padding-left: 2.0em;
  99. margin-right: 10%;
  100. }
  101. .asciidoc div.quoteblock > div.attribution {
  102. padding-top: 0.5em;
  103. text-align: right;
  104. }
  105. .asciidoc div.verseblock {
  106. padding-left: 2.0em;
  107. margin-right: 10%;
  108. }
  109. .asciidoc div.verseblock > div.content {
  110. white-space: pre;
  111. }
  112. .asciidoc div.verseblock > div.attribution {
  113. padding-top: 0.75em;
  114. text-align: left;
  115. }
  116. /* DEPRECATED: Pre version 8.2.7 verse style literal block. */
  117. .asciidoc div.verseblock + div.attribution {
  118. text-align: left;
  119. }
  120. .asciidoc div.admonitionblock .icon {
  121. vertical-align: top;
  122. font-size: 1.1em;
  123. font-weight: bold;
  124. text-decoration: underline;
  125. color: #111111;
  126. padding-right: 0.5em;
  127. }
  128. .asciidoc div.admonitionblock td.content {
  129. padding-left: 0.5em;
  130. border-left: 2px solid silver;
  131. }
  132. .asciidoc div.exampleblock > div.content {
  133. border-left: 2px solid silver;
  134. padding: 0.5em;
  135. }
  136. .asciidoc div.imageblock div.content { padding-left: 0; }
  137. .asciidoc span.image img { border-style: none; }
  138. .asciidoc a.image:visited { color: white; }
  139. .asciidoc dl {
  140. margin-top: 0.8em;
  141. margin-bottom: 0.8em;
  142. }
  143. .asciidoc dt {
  144. margin-top: 0.5em;
  145. margin-bottom: 0;
  146. font-style: normal;
  147. color: #111111;
  148. }
  149. .asciidoc dd > *:first-child {
  150. margin-top: 0.1em;
  151. }
  152. .asciidoc ul, ol {
  153. list-style-position: outside;
  154. }
  155. .asciidoc ol.arabic {
  156. list-style-type: decimal;
  157. }
  158. .asciidoc ol.loweralpha {
  159. list-style-type: lower-alpha;
  160. }
  161. .asciidoc ol.upperalpha {
  162. list-style-type: upper-alpha;
  163. }
  164. .asciidoc ol.lowerroman {
  165. list-style-type: lower-roman;
  166. }
  167. .asciidoc ol.upperroman {
  168. list-style-type: upper-roman;
  169. }
  170. .asciidoc div.compact ul, .asciidoc div.compact ol,
  171. .asciidoc div.compact p, .asciidoc div.compact p,
  172. .asciidoc div.compact div, .asciidoc div.compact div {
  173. margin-top: 0.1em;
  174. margin-bottom: 0.1em;
  175. }
  176. .asciidoc div.tableblock > table {
  177. border: 3px solid #527bbd;
  178. }
  179. .asciidoc thead {
  180. font-family: sans-serif;
  181. font-weight: bold;
  182. }
  183. .asciidoc tfoot {
  184. font-weight: bold;
  185. }
  186. .asciidoc td > div.verse {
  187. white-space: pre;
  188. }
  189. .asciidoc p.table {
  190. margin-top: 0;
  191. }
  192. /* Because the table frame attribute is overriden by CSS in most browsers. */
  193. .asciidoc div.tableblock > table[frame="void"] {
  194. border-style: none;
  195. }
  196. .asciidoc div.tableblock > table[frame="hsides"] {
  197. border-left-style: none;
  198. border-right-style: none;
  199. }
  200. .asciidoc div.tableblock > table[frame="vsides"] {
  201. border-top-style: none;
  202. border-bottom-style: none;
  203. }
  204. .asciidoc div.hdlist {
  205. margin-top: 0.8em;
  206. margin-bottom: 0.8em;
  207. }
  208. .asciidoc div.hdlist tr {
  209. padding-bottom: 15px;
  210. }
  211. .asciidoc dt.hdlist1.strong, .asciidoc td.hdlist1.strong {
  212. font-weight: bold;
  213. }
  214. .asciidoc td.hdlist1 {
  215. vertical-align: top;
  216. font-style: normal;
  217. padding-right: 0.8em;
  218. color: #111111;
  219. }
  220. .asciidoc td.hdlist2 {
  221. vertical-align: top;
  222. }
  223. .asciidoc div.hdlist.compact tr {
  224. margin: 0;
  225. padding-bottom: 0;
  226. }
  227. .asciidoc .comment {
  228. background: yellow;
  229. }
  230. @media print {
  231. div#footer-badges { display: none; }
  232. }
  233. .asciidoc div#toctitle {
  234. color: #111111;
  235. font-family: sans-serif;
  236. font-size: 1.1em;
  237. font-weight: bold;
  238. margin-top: 1.0em;
  239. margin-bottom: 0.1em;
  240. }
  241. .asciidoc div.toclevel1,
  242. .asciidoc div.toclevel2,
  243. .asciidoc div.toclevel3,
  244. .asciidoc div.toclevel4 {
  245. margin-top: 0;
  246. margin-bottom: 0;
  247. }
  248. .asciidoc div.toclevel2 {
  249. margin-left: 2em;
  250. font-size: 0.9em;
  251. }
  252. .asciidoc div.toclevel3 {
  253. margin-left: 4em;
  254. font-size: 0.9em;
  255. }
  256. .asciidoc div.toclevel4 {
  257. margin-left: 6em;
  258. font-size: 0.9em;
  259. }