You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

505 lines
10 KiB

  1. /*
  2. Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.html or http://ckeditor.com/license
  4. */
  5. /*
  6. This CSS applies to the old 'default' Dokuwiki template
  7. */
  8. body
  9. {
  10. /* Font */
  11. font-family: Arial, Verdana, sans-serif;
  12. font-size: 12px;
  13. /* Text color */
  14. color: #222;
  15. /* Remove the background color to make it transparent */
  16. background-color: #fff;
  17. }
  18. ol,ul,dl
  19. {
  20. /* IE7: reset rtl list margin. (#7334) */
  21. *margin-right:0px;
  22. /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
  23. padding:0 40px;
  24. }
  25. body, td, th {
  26. font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
  27. }
  28. body
  29. {
  30. background-color: #ffffff;
  31. padding: 5px 5px 5px 5px;
  32. margin: 0px;
  33. }
  34. table { min-width: 50%; }
  35. th, .tblheader {
  36. padding: 3px;
  37. border: 1px solid #8cacbb !important;
  38. background-color: #dee7ec;
  39. font-weight: bold;
  40. }
  41. td {
  42. padding: 3px;
  43. border: 1px solid #8cacbb !important;
  44. }
  45. td
  46. {
  47. /* font-family: Arial, Verdana, sans-serif;
  48. font-size: 10pt;
  49. */
  50. }
  51. a[href]
  52. {
  53. /* color: -moz-hyperlinktext !important; */ /* For Firefox... mark as important, otherwise it becomes black */
  54. /* text-decoration: -moz-anchor-decoration; */ /* For Firefox 3, otherwise no underline will be used */
  55. }
  56. /*
  57. Just uncomment the following block if you want to avoid spaces between
  58. paragraphs. Remember to apply the same style in your output front end page.
  59. */
  60. /*
  61. p, ul, li
  62. {
  63. margin-top: 0px;
  64. margin-bottom: 0px;
  65. }
  66. */
  67. /*
  68. The following are some sample styles used in the "Styles" toolbar command.
  69. You should instead remove them, and include the styles used by the site
  70. you are using the editor in.
  71. */
  72. .Bold
  73. {
  74. font-weight: bold;
  75. }
  76. .Title
  77. {
  78. font-weight: bold;
  79. font-size: 18px;
  80. color: #cc3300;
  81. }
  82. pre {
  83. margin: 0 0 1.0em 0;
  84. font-size: 120%;
  85. padding: 0.5em;
  86. border: 1px dashed black;
  87. color: black;
  88. overflow: auto;
  89. }
  90. /* code blocks by code tag */
  91. pre.code {
  92. background-color: #f7f9fa;
  93. line-height:100%;
  94. }
  95. pre.file {
  96. background-color: #dee7ec;
  97. line-height:100%;
  98. }
  99. h1,h2,h3,h4,h5 {
  100. color: black;
  101. background-color: inherit;
  102. font-size: 100%;
  103. font-weight: normal;
  104. margin: 0 0 1em 0;
  105. padding: 0.5em 0 0 0;
  106. border-bottom: 1px solid #8cacbb;
  107. clear: left;
  108. }
  109. h1,h2,h3,h4,h5
  110. {
  111. color: black !important;
  112. text-decoration: none !important;
  113. }
  114. h1 {font-size: 160%; margin-left: 0px; font-weight: bold;}
  115. h2 {font-size: 150%; margin-left: 20px;}
  116. h3 {font-size: 140%; margin-left: 40px; border-bottom: none; font-weight: bold;}
  117. h4 {font-size: 120%; margin-left: 60px; border-bottom: none; font-weight: bold; }
  118. h5 {font-size: 100%; margin-left: 80px; border-bottom: none; font-weight: bold;}
  119. div.level1 {margin-left: 3px;}
  120. div.level2 {margin-left: 23px;}
  121. div.level3 {margin-left: 43px;}
  122. div.level4 {margin-left: 63px;}
  123. div.dokuwiki div.level5 {margin-left: 83px;}
  124. img.media {
  125. border: 0;
  126. margin: 3px;
  127. }
  128. img.medialeft {
  129. border: 0;
  130. margin: 0 1.5em 0 0;
  131. float: left;
  132. }
  133. img.baseline {
  134. vertical-align:bottom;
  135. text-align:left;
  136. display:block;
  137. border: 0;
  138. margin: 3px;
  139. }
  140. img.mediaright {
  141. border: 0;
  142. float: right;
  143. margin: 0 0 0 1.5em;
  144. }
  145. img.mediacenter, .mediacenter {
  146. text-align:center;
  147. display:block;
  148. border: 0 ;
  149. border-top: 3px solid none;
  150. margin: 0 auto;
  151. }
  152. .leftalign {text-align: left;}
  153. .centeralign {text-align: center;}
  154. .rightalign {text-align: right;}
  155. div.footnotes {
  156. clear: both;
  157. border-top: 1px solid black;
  158. padding-left: 1em;
  159. margin-top: 1em;
  160. }
  161. div.fn {
  162. font-size: 90%;
  163. }
  164. a.fn_bot {
  165. font-weight: bold;
  166. }
  167. .dwcode {
  168. font-family: sans-serif;
  169. }
  170. /* unordered lists */
  171. ul {
  172. line-height: 1.5em;
  173. list-style-type: square;
  174. list-style-image: none;
  175. margin: 0 0 1em 3.5em;
  176. color: black;
  177. }
  178. /* ordered lists */
  179. ol {
  180. line-height: 1.5em;
  181. list-style-image: none;
  182. margin: 0 0 1em 3.5em;
  183. color: black;
  184. }
  185. /* no gap in between nested lists */
  186. li ul {
  187. margin-bottom: 0;
  188. }
  189. li ol {
  190. margin-bottom: 0;
  191. }
  192. ol {list-style-type: decimal}
  193. ol ol {list-style-type: upper-roman}
  194. ol ol ol {list-style-type: lower-alpha}
  195. ol ol ol ol {list-style-type: lower-greek}
  196. li { font-weight: normal; }
  197. a.windows {
  198. background: transparent url(images/windows.gif) 0px 1px no-repeat;
  199. padding: 1px 0px 1px 16px;
  200. color: #436976 !important;
  201. text-decoration: none !important;
  202. }
  203. a.urlextern {
  204. background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
  205. padding: 1px 0px 1px 16px;
  206. color: #436976 !important;
  207. text-decoration: none !important;
  208. }
  209. a.wikilink2 {
  210. color: red !important;
  211. text-decoration: none !important;
  212. }
  213. a.wikilink1 {
  214. color: green !important;
  215. text-decoration: none !important;
  216. }
  217. span.np_break {
  218. line-height: 50%;
  219. border:0px;
  220. padding:0px;
  221. margin:0px;
  222. }
  223. /* filenames for file and code blocks */
  224. dl.file,
  225. dl.code {
  226. margin-top: 2em;
  227. margin-bottom: 2.5em;
  228. }
  229. dl.file dt,
  230. dl.code dt {
  231. border: 1px dashed #8cacbb;
  232. display: inline;
  233. padding: 0.1em 1em;
  234. margin-left: 5em;
  235. }
  236. dl.code dt a,
  237. dl.file dt a {
  238. color:#000;
  239. }
  240. dl.code dt {
  241. background-color: __background_other__;
  242. border-bottom: 1px solid __background_other__;
  243. }
  244. dl.file dt {
  245. background-color: #dee7ec;
  246. border-bottom: 1px solid #dee7ec;
  247. }
  248. dd pre.file {
  249. line-height: 125%;
  250. }
  251. /* syntax highlighting code */
  252. .code .br0 { color: #66cc66; }
  253. .code .co0 { color: #808080; font-style: italic; }
  254. .code .co1 { color: #808080; font-style: italic; }
  255. .code .co2 { color: #808080; font-style: italic; }
  256. .code .co3 { color: #808080; }
  257. .code .coMULTI { color: #808080; font-style: italic; }
  258. .code .es0 { color: #000099; font-weight: bold; }
  259. .code .kw1 { color: #b1b100; }
  260. .code .kw2 { color: #000000; font-weight: bold; }
  261. .code .kw3 { color: #000066; }
  262. .code .kw4 { color: #993333; }
  263. .code .kw5 { color: #0000ff; }
  264. .code .me1 { color: #006600; }
  265. .code .me2 { color: #006600; }
  266. .code .nu0 { color: #cc66cc; }
  267. .code .re0 { color: #0000ff; }
  268. .code .re1 { color: #0000ff; }
  269. .code .re2 { color: #0000ff; }
  270. .code .re3 { color: #ff3333; font-weight:bold; }
  271. .code .re4 { color: #009999; }
  272. .code .st0 { color: #ff0000; }
  273. .code .sy0 { color: #66cc66; }
  274. a.mediafile {
  275. background: url(images/fileicons/file.png) no-repeat scroll 0 1px transparent;
  276. padding-bottom: 1px;
  277. padding-left: 18px;
  278. color: #436976 !important;
  279. text-decoration: none !important;
  280. }
  281. /* email link */
  282. a.mail {
  283. background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
  284. padding: 1px 0px 1px 16px;
  285. color: #436976 !important;
  286. text-decoration: none !important;
  287. }
  288. a.mf_gz {
  289. background-image: url(images/fileicons/gz.png);
  290. }
  291. a.mf_csv {
  292. background-image: url(images/fileicons/csv.png);
  293. }
  294. a.mf_gif {
  295. background-image: url(images/fileicons/gif.png);
  296. }
  297. a.mf_png {
  298. background-image: url(images/fileicons/png.png);
  299. }
  300. a.mf_txt {
  301. background-image: url(images/fileicons/txt.png);
  302. }
  303. a.mf_tar {
  304. background-image: url(images/fileicons/tar.png);
  305. }
  306. a.mf_jpg {
  307. background-image: url(images/fileicons/jpg.png);
  308. }
  309. a.mf_xml {
  310. background-image: url(images/fileicons/xml.png);
  311. }
  312. a.mf_c {
  313. background-image: url(images/fileicons/c.png);
  314. }
  315. a.mf_ppt {
  316. background-image: url(images/fileicons/ppt.png);
  317. }
  318. a.mf_conf {
  319. background-image: url(images/fileicons/conf.png);
  320. }
  321. a.mf_xls {
  322. background-image: url(images/fileicons/xls.png);
  323. }
  324. a.mf_doc {
  325. background-image: url(images/fileicons/doc.png);
  326. }
  327. a.mf_php {
  328. background-image: url(images/fileicons/php.png);
  329. }
  330. a.mf_cs {
  331. background-image: url(images/fileicons/cs.png);
  332. }
  333. a.mf_pdf {
  334. background-image: url(images/fileicons/pdf.png);
  335. }
  336. a.mf_odc {
  337. background-image: url(images/fileicons/odg.png);
  338. }
  339. a.mf_cpp {
  340. background-image: url(images/fileicons/cpp.png);
  341. }
  342. a.mf_sql {
  343. background-image: url(images/fileicons/sql.png);
  344. }
  345. a.mf_bz2 {
  346. background-image: url(images/fileicons/bz2.png);
  347. }
  348. a.mf_zip {
  349. background-image: url(images/fileicons/zip.png);
  350. }
  351. a.mf_deb {
  352. background-image: url(images/fileicons/deb.png);
  353. }
  354. a.mf_jpeg {
  355. background-image: url(images/fileicons/jpeg.png);
  356. }
  357. a.mf_odg {
  358. background-image: url(images/fileicons/odg.png);
  359. }
  360. a.mf_py {
  361. background-image: url(images/fileicons/py.png);
  362. }
  363. a.mf_js {
  364. background-image: url(images/fileicons/js.png);
  365. }
  366. a.mf_java {
  367. background-image: url(images/fileicons/java.png);
  368. }
  369. a.mf_htm {
  370. background-image: url(images/fileicons/htm.png);
  371. }
  372. a.mf_odt {
  373. background-image: url(images/fileicons/odt.png);
  374. }
  375. a.mf_rtf {
  376. background-image: url(images/fileicons/rtf.png);
  377. }
  378. a.mf_odf {
  379. background-image: url(images/fileicons/odg.png);
  380. }
  381. a.mf_css {
  382. background-image: url(images/fileicons/css.png);
  383. }
  384. a.mf_docx {
  385. background-image: url(images/fileicons/docx.png);
  386. }
  387. a.mf_xlsx {
  388. background-image: url(images/fileicons/xlsx.png);
  389. }
  390. a.mf_odp {
  391. background-image: url(images/fileicons/odg.png);
  392. }
  393. a.mf_rar {
  394. background-image: url(images/fileicons/rar.png);
  395. }
  396. a.mf_tgz {
  397. background-image: url(images/fileicons/tgz.png);
  398. }
  399. a.mf_7z {
  400. background-image: url(images/fileicons/7z.png);
  401. }
  402. a.mf_html {
  403. background-image: url(images/fileicons/html.png);
  404. }
  405. a.mf_pl {
  406. background-image: url(images/fileicons/pl.png);
  407. }
  408. a.mf_rpm {
  409. background-image: url(images/fileicons/rpm.png);
  410. }
  411. a.mf_ps {
  412. background-image: url(images/fileicons/ps.png);
  413. }
  414. a.mf_swf {
  415. background-image: url(images/fileicons/swf.png);
  416. }
  417. a.mf_epub {
  418. background-image: url(images/fileicons/epub.png);
  419. }
  420. a.interwiki {
  421. background: url(images/fileicons/wp.gif) no-repeat scroll 0 1px transparent;
  422. padding-bottom: 1px;
  423. padding-left: 18px;
  424. color: #436976 !important;
  425. text-decoration: none !important;
  426. }
  427. /*
  428. a.interwiki {
  429. background-image: url(images/fileicons/wp.gif);
  430. }
  431. */
  432. span.multi_p_open
  433. {
  434. display: block;
  435. }