1/**
2 * This file provides styles for the general layout structure.
3 */
4
5/*____________ Header ____________*/
6/* title, logo, tagline */
7
8#dokuwiki__header {
9	background: hsla(0,0%,100%,0.5);
10
11    h1 {
12        margin: 0;
13        font-size: 1.5em;
14        font-weight: normal;
15		text-align: center;
16
17        img {
18        margin: .5em;
19	    max-width:90%;
20        max-height: 6em;
21        }
22
23        span {
24            display: block;
25            padding-top: 10px;
26        }
27
28        a {
29            text-decoration: none;
30            color: @ini_text;
31            background-color: inherit;
32        }
33    }
34
35    p.claim {
36        font-size: 0.875em;
37		text-align: center;
38		display:inline;
39		margin: 0 auto;
40		padding: .1em .5em 1em;
41		/*background-color: @ini_background;
42		border-radius: 5px;*/
43    }
44}
45
46.headings {
47	display: flex;
48	justify-content: center;
49	flex-direction: column;
50}
51
52/*____________ dokuwiki__content not in "read" mode ____________*/
53
54#dokuwiki__content {
55	max-width: 100% ;
56}
57
58/*____________ dokuwiki__site ____________*/
59/* Sidebar+Article+tools */
60
61#dokuwiki__site {
62    margin: 0 auto;
63}
64
65#dokuwiki__site > .site {
66    padding: 0 .5em;
67}
68
69#dokuwiki__site .wrapper {
70    position: relative;
71    padding-top: 1.2em;
72	display:flex;
73	justify-content: center;
74}
75
76
77/*____________ Sidebar ____________*/
78#dokuwiki__sidebar {
79    width: @ini_sidebar_width;
80    display: block;
81}
82
83/* If sidebar or not sidebar, content make same width */
84.showSidebar .mode_show #dokuwiki__content, .mode_show #dokuwiki__content {
85	max-width: @ini_article_width;
86	min-width:30em;
87}
88
89.showSidebar #dokuwiki__content, #dokuwiki__content {
90    width: 100%;
91	margin: 0 1em;
92}
93
94/* Details of sidebar */
95
96.dokuwiki .sidebar {
97    font-size: 0.875em;
98    overflow: hidden;
99    word-wrap: break-word;
100    background-color: @ini_background ;
101    padding:0em 1em 0em 1em;
102	display:flex;
103	/*box-shadow: 0 1.2em .5em @ini_text_alt;*/
104
105    /* make sidebar more condensed */
106    h1 {
107        font-size: 1.714em;
108        margin-bottom: .292em;
109    }
110
111    h2 {
112        margin-bottom: .333em;
113    }
114
115    h3 {
116        margin-bottom: .444em;
117    }
118
119    h4 {
120        margin-bottom: .5em;
121    }
122
123    h5 {
124        margin-bottom: .5714em;
125    }
126
127    p,
128    ul,
129    ol,
130    dl,
131    pre,
132    table,
133    fieldset,
134    blockquote,
135    address {
136        margin-bottom: .7em;
137    }
138
139    ul,
140    ol {
141        padding-left: .5em;
142    }
143
144    li ul,
145    li ol {
146        margin-bottom: 0;
147        padding: 0;
148    }
149
150    a {
151		text-decoration:none;
152    }
153	a.wikilink2 {
154    text-decoration: underline dashed;
155	}
156}
157
158[dir=rtl] .dokuwiki .sidebar ul,
159[dir=rtl] .dokuwiki .sidebar ol {
160    padding-right: .5em;
161}
162
163
164/*____________ Footer ____________*/
165
166.dokuwiki .wrapper {
167    margin-bottom: 1.4em;
168}
169
170#dokuwiki__footer {
171    margin-bottom: 1em;
172    text-align: center;
173
174    > .pad {
175        font-size: 0.875em;
176    }
177
178    div.license {
179        margin-bottom: 0.5em;
180        font-size: 100%;
181    }
182
183    div.buttons a {
184        img {
185            opacity: 0.5;
186        }
187
188        &:hover img,
189        &:active img,
190        &:focus img {
191            opacity: 1;
192        }
193    }
194
195}
196
197[dir=rtl] #dokuwiki__footer .license img {
198    margin: 0 0 0 .5em;
199}
200
201#dokuwiki__footer {
202    clear: both;
203}
204
205/* license note under edit window */
206.dokuwiki div.license {
207    font-size: 93.75%;
208}
209