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.

125 lines
2.6 KiB

  1. /**
  2. * This file provides the main design styles for the page content.
  3. *
  4. * @author Anika Henke <anika@selfthinker.org>
  5. * @author Andreas Gohr <andi@splitbrain.org>
  6. */
  7. /*____________ section indenting ____________
  8. .dokuwiki h1 {margin-left: 0;}
  9. .dokuwiki h2 {margin-left: .666em;}
  10. .dokuwiki h3 {margin-left: 1.776em;}
  11. .dokuwiki h4 {margin-left: 3em;}
  12. .dokuwiki h5 {margin-left: 4.5712em;}
  13. .dokuwiki div.level1 {margin-left: 0;}
  14. .dokuwiki div.level2 {margin-left: 1em;}
  15. .dokuwiki div.level3 {margin-left: 2em;}
  16. .dokuwiki div.level4 {margin-left: 3em;}
  17. .dokuwiki div.level5 {margin-left: 4em;}
  18. */
  19. /* hx margin-left = (1 / font-size) * .levelx-margin */
  20. /*____________ images ____________*/
  21. /* embedded images (styles are already partly set in lib/styles/style.css) */
  22. .dokuwiki img.media { }
  23. .dokuwiki img.medialeft { margin: .5em 1.5em .5em 0; }
  24. .dokuwiki img.mediaright { margin: .5em 0 .5em 1.5em; }
  25. .dokuwiki img.mediacenter { margin: .5em auto; }
  26. /*____________ tables ____________*/
  27. .dokuwiki table.inline {
  28. min-width: 50%;
  29. }
  30. .dokuwiki table.inline th,
  31. .dokuwiki table.inline td {
  32. border: 1px solid __text_alt__;
  33. }
  34. .dokuwiki table.inline th {
  35. color: inherit;
  36. background-color: __background_neu__;
  37. }
  38. .dokuwiki table.inline td {
  39. }
  40. .dokuwiki table.inline tr:hover td {
  41. background-color: __background_alt__;
  42. }
  43. .dokuwiki table.inline tr:hover th {
  44. background-color: __border__;
  45. }
  46. /*____________ code ____________*/
  47. .dokuwiki pre,
  48. .dokuwiki tt,
  49. .dokuwiki code,
  50. .dokuwiki samp,
  51. .dokuwiki kbd {
  52. background-color: __background_alt__;
  53. color: inherit;
  54. }
  55. .dokuwiki pre {
  56. border: 1px solid __border__;
  57. padding: 0 .2em;
  58. }
  59. /* for code in <file> */
  60. .dokuwiki pre.file {
  61. }
  62. /* filenames for downloadable file and code blocks */
  63. .dokuwiki dl.code,
  64. .dokuwiki dl.file {
  65. }
  66. .dokuwiki dl.code dt,
  67. .dokuwiki dl.file dt {
  68. background-color: __background_alt__;
  69. border: solid __border__;
  70. border-width: 1px 1px 0;
  71. color: inherit;
  72. display: inline;
  73. padding: 0 .5em;
  74. margin-left: 1em;
  75. }
  76. .dokuwiki dl.code dt a,
  77. .dokuwiki dl.file dt a {
  78. }
  79. .dokuwiki dl.code dd,
  80. .dokuwiki dl.file dd {
  81. margin: 0;
  82. }
  83. /*____________ misc ____________*/
  84. /* license note in footer and under edit window */
  85. .dokuwiki div.license {
  86. font-size: 90%;
  87. }
  88. #IE6 .dokuwiki input.button, #IE6 .dokuwiki button,
  89. #IE7 .dokuwiki input.button, #IE7 .dokuwiki button {
  90. line-height: 1.4;
  91. }
  92. /*____________ JS popup ____________*/
  93. .JSpopup {
  94. background-color: __background__;
  95. color: __text__;
  96. border: 1px solid __border__;
  97. line-height: 1.2;
  98. padding: 0 .2em;
  99. }
  100. .JSpopup ul,
  101. .JSpopup ol {
  102. padding-left: 0;
  103. }