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.

266 lines
5.1 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. /**
  2. * This file provides the main design styles for the
  3. * bits that surround the content.
  4. *
  5. * @author Anika Henke <anika@selfthinker.org>
  6. * @author Andreas Gohr <andi@splitbrain.org>
  7. */
  8. /* header
  9. ********************************************************************/
  10. #dokuwiki__header {
  11. margin: 1em 0 0;
  12. }
  13. #IE7 #dokuwiki__header {
  14. margin-top: 2em;
  15. }
  16. #dokuwiki__header .headings {
  17. margin-bottom: 2.1em;
  18. }
  19. #dokuwiki__header h1 {
  20. margin-bottom: 0;
  21. font-size: 1.5em;
  22. }
  23. #dokuwiki__header h1 a {
  24. text-decoration: none;
  25. color: #00c;
  26. background-color: inherit;
  27. }
  28. #dokuwiki__header p.claim {
  29. margin-bottom: 0;
  30. }
  31. #dokuwiki__header h2 {
  32. margin-bottom: 0;
  33. font-size: 1.125em;
  34. }
  35. #dokuwiki__header .tools {
  36. margin-bottom: 2.1em;
  37. }
  38. #dokuwiki__header .tools ul {
  39. margin-bottom: 0;
  40. }
  41. #dokuwiki__header .tools ul li {
  42. display: inline;
  43. }
  44. #dokuwiki__header form.search {
  45. margin: .5em 0 0;
  46. display: block;
  47. }
  48. #dokuwiki__header form.search #qsearch__in {
  49. width: 12em;
  50. margin-right: .5em;
  51. }
  52. [dir=rtl] #dokuwiki__header form.search #qsearch__in {
  53. margin-right: 0;
  54. margin-left: .5em;
  55. }
  56. #dokuwiki__header div.breadcrumbs {
  57. margin-bottom: .3em;
  58. }
  59. #dokuwiki__header div.breadcrumbs a {
  60. color: __existing__;
  61. background-color: inherit;
  62. }
  63. /* tools
  64. ********************************************************************/
  65. /* make wiki links look the same as tool links in tool bars */
  66. #dokuwiki__usertools a.wikilink1,
  67. #dokuwiki__pagetools a.wikilink1,
  68. #dokuwiki__usertools a.wikilink2,
  69. #dokuwiki__pagetools a.wikilink2 {
  70. color: #00c;
  71. border-bottom-width: 0;
  72. }
  73. #dokuwiki__usertools a.wikilink2:hover,
  74. #dokuwiki__pagetools a.wikilink2:hover,
  75. #dokuwiki__usertools a.wikilink2:active,
  76. #dokuwiki__pagetools a.wikilink2:active,
  77. #dokuwiki__usertools a.wikilink2:focus,
  78. #dokuwiki__pagetools a.wikilink2:focus {
  79. text-decoration: underline;
  80. }
  81. /* highlight selected tool */
  82. .mode_admin a.action.admin,
  83. .mode_login a.action.login,
  84. .mode_register a.action.register,
  85. .mode_profile a.action.profile,
  86. .mode_recent a.action.recent,
  87. .mode_index a.action.index,
  88. .mode_media a.action.media,
  89. .mode_revisions a.action.revs,
  90. .mode_backlink a.action.backlink,
  91. .mode_subscribe a.action.subscribe {
  92. font-weight: bold;
  93. }
  94. /*____________ user tools ____________*/
  95. #dokuwiki__usertools {
  96. position: absolute;
  97. top: 0;
  98. right: 0;
  99. border-bottom: 1px solid __border__;
  100. background-color: __background_alt__;
  101. width: 100%;
  102. }
  103. #dokuwiki__usertools ul,
  104. #dokuwiki__pagetools ul {
  105. /* imitate #dokuwiki__site */
  106. margin: 0 auto;
  107. max-width: __site_width__;
  108. padding: 0 1em;
  109. }
  110. #dokuwiki__usertools ul li.user {
  111. float: left;
  112. margin-left: 0;
  113. }
  114. [dir=rtl] #dokuwiki__usertools ul li.user {
  115. float: right;
  116. margin-right: 0;
  117. }
  118. /*____________ page tools ____________*/
  119. #dokuwiki__pagetools {
  120. position: fixed;
  121. bottom: 0;
  122. left: 0;
  123. border-top: 1px solid __border__;
  124. background-color: __background_alt__;
  125. width: 100%;
  126. z-index: 10;
  127. }
  128. #dokuwiki__pagetools ul li {
  129. display: inline;
  130. margin: 0 1.5em 0 0;
  131. }
  132. #dokuwiki__pagetools ul li a.action.top {
  133. float: right;
  134. }
  135. [dir=rtl] #dokuwiki__pagetools ul li a.action.top {
  136. float: left;
  137. }
  138. #IE7 #dokuwiki__pagetools ul {
  139. position: relative;
  140. }
  141. #IE7 #dokuwiki__pagetools ul li a.action.top {
  142. position: absolute;
  143. top: 0;
  144. right: 0;
  145. }
  146. [dir=rtl] #IE7 #dokuwiki__pagetools ul li a.action.top {
  147. right: auto;
  148. left: 0;
  149. }
  150. /* sidebar
  151. ********************************************************************/
  152. #dokuwiki__aside {
  153. padding-top: .4em;
  154. line-height: 1.2;
  155. }
  156. #dokuwiki__aside > .pad {
  157. overflow: hidden;
  158. word-wrap: break-word;
  159. }
  160. /* make sidebar more condensed */
  161. #dokuwiki__aside h1 {
  162. margin-bottom: .222em;
  163. }
  164. #dokuwiki__aside h2 {
  165. margin-bottom: .333em;
  166. }
  167. #dokuwiki__aside h3 {
  168. margin-bottom: .444em;
  169. }
  170. #dokuwiki__aside h4 {
  171. margin-bottom: .5em;
  172. }
  173. #dokuwiki__aside h5 {
  174. margin-bottom: .5714em;
  175. }
  176. #dokuwiki__aside p,
  177. #dokuwiki__aside ul,
  178. #dokuwiki__aside ol,
  179. #dokuwiki__aside dl,
  180. #dokuwiki__aside pre,
  181. #dokuwiki__aside table,
  182. #dokuwiki__aside fieldset,
  183. #dokuwiki__aside hr,
  184. #dokuwiki__aside blockquote,
  185. #dokuwiki__aside address {
  186. margin-bottom: .7em;
  187. }
  188. #dokuwiki__aside ul,
  189. #dokuwiki__aside ol {
  190. padding-left: .5em;
  191. }
  192. [dir=rtl] #dokuwiki__aside ul,
  193. [dir=rtl] #dokuwiki__aside ol {
  194. padding-right: .5em;
  195. }
  196. #dokuwiki__aside li ul,
  197. #dokuwiki__aside li ol {
  198. margin-bottom: 0;
  199. padding: 0;
  200. }
  201. /* content
  202. ********************************************************************/
  203. .dokuwiki .page {
  204. word-wrap: break-word;
  205. }
  206. /* license note in footer and under edit window */
  207. .dokuwiki div.license {
  208. font-size: 93.75%;
  209. }
  210. /* footer
  211. ********************************************************************/
  212. .dokuwiki .wrapper {
  213. margin-bottom: 2.8em;
  214. }
  215. #dokuwiki__footer {
  216. margin-bottom: 1em;
  217. }
  218. #IE7 #dokuwiki__footer {
  219. height: 1%;
  220. }
  221. #dokuwiki__footer .doc {
  222. float: left;
  223. }
  224. #dokuwiki__footer .top {
  225. float: right;
  226. }
  227. #dokuwiki__footer .license {
  228. clear: both;
  229. }
  230. #dokuwiki__footer .license img {
  231. margin: 0 .5em 0 0;
  232. float: none;
  233. }