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