documenter_style.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. /*!
  2. * Documenter 1.6
  3. * http://rxa.li/documenter
  4. *
  5. * Copyright 2011, Xaver Birsak
  6. * http://revaxarts.com
  7. *
  8. */
  9. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{
  10. margin:0;
  11. padding:0;
  12. border:0;
  13. outline:0;
  14. font-weight:inherit;
  15. font-style:inherit;
  16. font-size:100%;
  17. font-family:inherit;
  18. vertical-align:baseline;
  19. }
  20. html {
  21. font-size:101%;
  22. font-family:Arial,verdana,arial,sans-serif;
  23. font-size:12px;
  24. -webkit-text-size-adjust:none;
  25. color:#333;
  26. }
  27. body{
  28. min-height:100%;
  29. height:auto;
  30. width:100%;
  31. background: #FFF;
  32. }
  33. footer, header, section {
  34. display:block;
  35. }
  36. a{ color:#6F6F6F; text-decoration:none; cursor:pointer; }
  37. a:hover { text-decoration:underline }
  38. p, ul, ol{
  39. margin:18px 0;
  40. line-height:1.5em;
  41. }
  42. li{
  43. list-style:none;
  44. }
  45. li.placeholder{
  46. height:70px;
  47. width:100%;
  48. font-size:16px;
  49. }
  50. hr {
  51. display:block;
  52. height:0px;
  53. line-height:0px;
  54. border:0;
  55. border-top:1px solid #ddd;
  56. border-bottom:1px solid #aaa;
  57. margin:16px 0;
  58. padding:0;
  59. }
  60. hr.notop{
  61. margin-top:0;
  62. }
  63. strong{
  64. font-weight:700;
  65. }
  66. #documenter_content{
  67. position:absolute;
  68. right:18px;
  69. left:218px;
  70. padding-left:10px;
  71. padding-bottom:800px;
  72. min-height:100%;
  73. height:auto;
  74. z-index:1;
  75. }
  76. #documenter_sidebar{
  77. -moz-box-shadow:0 0 6px rgba(3,3,3,0.6);
  78. -webkit-box-shadow:0 0 6px rgba(3,3,3,0.6);
  79. box-shadow:0 0 6px rgba(3,3,3,0.6);
  80. position:fixed;
  81. left:0;
  82. width:200px;
  83. height:100%;
  84. min-height:100%;
  85. z-index:100;
  86. }
  87. #documenter_sidebar a{
  88. position:relative;
  89. z-index:100;
  90. }
  91. img{
  92. border:0;
  93. }
  94. #documenter_copyright{
  95. position:absolute;
  96. bottom:10px;
  97. font-size:10px;
  98. right:15px;
  99. width:200px;
  100. text-align:right;
  101. z-index:1
  102. }
  103. noscript{
  104. display:block;
  105. position:absolute;
  106. top:238px;
  107. margin:0 auto;
  108. width:800px;
  109. bottom:0;
  110. z-index:20;
  111. }
  112. noscript p{
  113. width:800px;
  114. font-size:20px;
  115. padding-top:20px;
  116. margin:0 auto;
  117. color:#4D4D4D;
  118. }
  119. .small{
  120. font-size:10px;
  121. letter-spacing:0;
  122. }
  123. /*----------------------------------------------------------------------*/
  124. /* Sidebar
  125. /*----------------------------------------------------------------------*/
  126. #documenter_sidebar #documenter_logo{
  127. display:block;
  128. height:20%;
  129. max-height:200px;
  130. min-height:70px;
  131. width:200px;
  132. background-position:center center;
  133. background-repeat:no-repeat;
  134. }
  135. #documenter_sidebar ol{
  136. font-size:12px;
  137. font-weight:700;
  138. min-height:150px;
  139. height:75%;
  140. overflow:auto;
  141. }
  142. #documenter_sidebar ol li{
  143. text-align:right;
  144. padding:0;
  145. }
  146. #documenter_sidebar ol a{
  147. display:block;
  148. border-top:1px solid #ddd;
  149. border-bottom:1px solid #aaa;
  150. padding:6px 15px 7px 0;
  151. text-align:right;
  152. }
  153. #documenter_sidebar ol a:hover,#documenter_sidebar ol a.current{
  154. -webkit-text-shadow:none;
  155. -moz-text-shadow:none;
  156. text-shadow:none;
  157. text-decoration:none;
  158. }
  159. #documenter_sidebar ol li ol{
  160. border-top:0;
  161. font-size:10px;
  162. min-height:10px;
  163. height:auto;
  164. overflow:auto;
  165. margin:0;
  166. display:none;
  167. }
  168. #documenter_sidebar ol li ol li a{
  169. display:block;
  170. padding:4px 15px 5px 0;
  171. text-align:right;
  172. }
  173. /*----------------------------------------------------------------------*/
  174. /* Content
  175. /*----------------------------------------------------------------------*/
  176. #documenter_cover{
  177. height:800px;
  178. padding-top:200px !important;
  179. }
  180. #documenter_cover li{
  181. list-style:none !important;
  182. margin-left:0 !important;
  183. }
  184. #documenter_cover p{
  185. width:500px;
  186. }
  187. #documenter_content section{
  188. padding-top:70px;
  189. }
  190. #documenter_content h1{
  191. font-size:30px;
  192. font-weight:700;
  193. }
  194. #documenter_content h2{
  195. font-size:20px;
  196. margin-bottom:18px;
  197. font-weight:100;
  198. }
  199. #documenter_content h3{
  200. margin:18px 0 0;
  201. font-weight:200;
  202. color: #315680;
  203. font-size: 29px;
  204. }
  205. #documenter_content h4{
  206. font-size:20px;
  207. margin:18px 0;
  208. font-weight:100;
  209. }
  210. #documenter_content h5{
  211. font-size:16px;
  212. margin:18px 0;
  213. font-weight:100;
  214. }
  215. #documenter_content h6{
  216. font-size:14px;
  217. margin:18px 0;
  218. font-weight:100;
  219. }
  220. #documenter_content p{
  221. margin:18px 0;
  222. }
  223. #documenter_content ol li{
  224. list-style:decimal;
  225. margin-left:36px;
  226. }
  227. #documenter_content ul li{
  228. list-style:square;
  229. margin-left:36px;
  230. }
  231. #documenter_content dl{
  232. }
  233. #documenter_content dl dt{
  234. padding-top:12px;
  235. font-weight:700;
  236. font-size:14px;
  237. }
  238. #documenter_content dl dd{
  239. padding-top:3px;
  240. margin-left:18px;
  241. }
  242. #documenter_content table{
  243. border-collapse:collapse;
  244. }
  245. #documenter_content table th{
  246. font-weight:700;
  247. }
  248. #documenter_content table th, #documenter_content table td{
  249. padding:3px;
  250. text-align:left;
  251. }
  252. #documenter_content code, #documenter_content pre{
  253. font-family:"Courier New", Courier, monospace;
  254. font-size:12px;
  255. }
  256. #documenter_content .warning{
  257. padding:10px 10px 10px 30px;
  258. border:1px solid #D5D458;
  259. background-color:#F0FEB1;
  260. background-image:url(img/warning.png);
  261. background-repeat:no-repeat;
  262. background-position: 8px 11px;
  263. }
  264. #documenter_content .info{
  265. padding:10px 10px 10px 30px;
  266. border:1px solid #6AB3FF;
  267. background-color:#A3D0FF;
  268. background-image:url(img/info.png);
  269. background-repeat:no-repeat;
  270. background-position: 8px 11px;
  271. }
  272. #documenter_content pre{
  273. background-image:url(img/pre_bg.png);
  274. line-height:19px;
  275. }
  276. /*----------------------------------------------------------------------*/
  277. /* Print Styles
  278. /*----------------------------------------------------------------------*/
  279. @media print {
  280. * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  281. -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  282. a, a:visited { color: #444 !important; text-decoration: underline; }
  283. a[href]:after { content: " (" attr(href) ")"; }
  284. abbr[title]:after { content: " (" attr(title) ")"; }
  285. .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
  286. pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  287. thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  288. tr, img { page-break-inside: avoid; }
  289. @page { margin: 0.5cm; }
  290. p, h2, h3 { orphans: 3; widows: 3; }
  291. h2, h3{ page-break-after: avoid; }
  292. hr { border-top:1px solid #000 !important;border-bottom:0 !important; }
  293. #documenter_sidebar{
  294. -moz-box-shadow:none;
  295. -webkit-box-shadow:none;
  296. box-shadow:none;
  297. position:absolute;
  298. left:10px;
  299. top:0;
  300. width:100%;
  301. margin-top:500px;
  302. }
  303. #documenter_sidebar ol:before { content: "Table of Contents"; }
  304. #documenter_sidebar ol{
  305. border:0 !important;
  306. }
  307. #documenter_sidebar ol li{
  308. border:0 !important;
  309. text-align:left;
  310. }
  311. #documenter_sidebar ol li a{
  312. border:0 !important;
  313. text-align:left;
  314. padding:4px;
  315. }
  316. #documenter_sidebar ol li a:hover{
  317. border:0 !important;
  318. }
  319. #documenter_sidebar #documenter_logo{
  320. display:none;
  321. }
  322. #documenter_sidebar #documenter_copyright{
  323. display:none;
  324. }
  325. #documenter_content{
  326. left:10px;
  327. }
  328. #documenter_cover{
  329. margin-bottom:300px;
  330. }
  331. #documenter_content .warning{
  332. background-image:url(img/warning.png) !important;
  333. background-repeat:no-repeat !important;
  334. background-position: 8px 11px !important;
  335. }
  336. #documenter_content .info{
  337. background-image:url(img/info.png) !important;
  338. background-repeat:no-repeat !important;
  339. background-position: 8px 11px !important;
  340. }
  341. #documenter_content pre{
  342. background-image:url(img/pre_bg.png) !important;
  343. line-height:19px;
  344. }
  345. }