]> git.plutz.net Git - shellwiki/blob - themes/default.css
ae1cdf9ec0376bc16d4c85a99da232b0c335efd9
[shellwiki] / themes / default.css
1 /*
2 # Copyright 2022 - 2023 Paul Hänsch
3
4 # Permission to use, copy, modify, and/or distribute this software for any
5 # purpose with or without fee is hereby granted, provided that the above
6 # copyright notice and this permission notice appear in all copies.
7
8 # THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 # SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
14 # IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17 html { min-height: 100%; }
18
19 body {
20   position: absolute;
21   width: 100%;
22   min-height: 100%;
23   padding-bottom: 6em;
24   background-color: #EEE;
25   font-size: 12pt;
26 }
27
28 header, footer {
29   background-color: #FFF;
30   box-shadow: 0 0 .75em;
31   width: 100%;
32   z-index: 1;
33 }
34
35 footer {
36   padding-top: .5em;
37   position: absolute;
38   bottom: 0;
39 }
40
41 header > :last-child,
42 main > :last-child {
43   margin-bottom: 0;
44 }
45
46 header h1,
47 header h2,
48 header .menu,
49 footer .menu {
50   display: inline-block;
51 }
52
53 header .menu,
54 footer .menu { list-style: none; }
55
56 header .menu > ul > li,
57 header .menu > ol > li,
58 footer .menu > ul > li,
59 footer .menu > ol > li {
60   display: inline-block;
61   margin-right: .5em;
62   vertical-align: top;
63 }
64
65 header .menu.dropdown li > ul,
66 header .menu.dropdown li > ol {
67   display: none;
68   position: absolute;
69   background-color: #FFF;
70   margin: 0;
71   padding: .25em .5em;
72   padding-left: 1.5em;
73   box-shadow: 0 0 .75em;
74 }
75 header .menu.dropdown li:hover > ul,
76 header .menu.dropdown li:hover > ol {
77   display: table;
78 }
79
80 main .pagemenu {
81   list-style: none;
82   background-color: #666;
83   margin: 0;
84   box-shadow: 0 0 .5em;
85   padding: .25em 2em;
86 }
87 main .pagemenu li {
88   display: inline-block;
89   margin-right: 1em;
90 }
91 main .pagemenu li a { color: #FFF; }
92
93 main article,
94 main > form#renamepage, main > form#movepage,
95 main > form#deletepage, 
96 [id$="/[attachment]"] main > form {
97   margin: 1em;
98   padding: .125em 1em 1em 1em;
99   box-shadow: .25em .25em .75em;
100   background-color: #FFF;
101 }
102
103 main > form#deletepage label[for=delsub] {
104   text-decoration: underline;
105 }
106 main > form#deletepage input#delsub:checked + label + ul li.delsub {
107   text-decoration: line-through;
108 }
109
110 main > form#movepage input,
111 main > form#renamepage input {
112   min-width: 30em;
113   max-width: 100%;
114 }
115
116 [id$="/[revision]"] main .revisions,
117 [id$="/[attachment]"] main > .attachment.list {
118   margin: 1em;
119   padding: 1em 2em;
120 }
121 [id$="/[revision]"] main .revisions:before,
122 [id$="/[attachment]"] main > .attachment.list:before {
123   content: '';
124   position: absolute;
125   top: 0; bottom: 0; left: 0; right: 0;
126   background-color: #FFF;
127   box-shadow: .25em .25em .75em;
128 }
129
130 main code {
131   padding: .125em .25em;
132   background-color: #EEE;
133 }
134 main pre {
135   padding: .5em .5em;
136   background-color: #EEE;
137   max-width: 100%;
138   overflow-x: auto;
139 }
140 main pre > code {
141   padding: 0;
142 }
143
144 li.task > input[type=checkbox][disabled],
145 li.task > p > input[type=checkbox][disabled] {
146   display: none;
147 }
148 li.task > p:first-child { display: inline-block;}
149
150 -li.task:before { font-size: 1.125em; }
151 li.task.pending:before  { content: '\274f  '; color: #222; }
152 li.task.partial:before  { content: '\25d4  '; color: #880; }
153 li.task.negative:before { content: '\2718  '; color: #800; }
154 li.task.done:before     { content: '\2714  '; color: #080; }
155 li.task.unsure:before   { content: '?  '    ; color: #880; font-weight: bold; padding-left: 2pt; }
156
157 /* Alternative Check Symbols, all from "geometric shapes" block */ /*
158 -li.task.pending:before  { content: '\25a1  '; color: #222; }
159 -li.task.partial:before  { content: '\25d4  '; color: #880; }
160 -li.task.negative:before { content: '\25a8  '; color: #800; }
161 -li.task.done:before     { content: '\25a3  '; color: #080; }
162 */
163
164 h1 { text-align: center; }
165 .center { text-align: center; }
166
167 form.newpage, form.search {
168   margin-bottom: 1em;
169 }
170 form.search { text-align: center; }
171 input.search {
172   min-width: 50%;
173   max-width: 80%;
174   max-width: calc(100%  - 2.5em);
175 }
176 ul.searchresults, ol.searchresults {
177   margin-left: auto; margin-right: auto;
178   width: 100%; max-width: 540pt;
179   text-align: center;
180 }
181
182 table {
183   min-width: 50%;
184   margin-left: auto;
185   margin-right: auto;
186 }
187
188 @media(min-width: 540pt) {
189   .half {
190     display: inline-block;
191     width: 50%;
192     padding-right: 1em;
193     vertical-align: top;
194   }
195   .right {
196     float: right;
197     clear: both;
198     width: 33%;
199     margin: .25em 0 .5em 1em;
200   }
201   .left {
202     float: left;
203     clear: both;
204     width: 33%;
205     margin: .25em 1em .5em 0;
206   }
207   .left .left, .left .right,
208   .right .left, .right .right,
209   .half .left, .half .right {
210     float: none;
211     width: 100%;
212     margin: .25em 0 .5em 0;
213   }
214   section.left  > :first-child,
215   section.right > :first-child {
216     float: none;
217     margin: 0 0 .5em 0;
218   }
219   .left  > section:first-child > :first-child,
220   .right > section:first-child > :first-child {
221     margin-top: 0;
222   }
223   .left table, .right table, .half table {
224     width: 100%;
225   }
226
227   .left  input.search,
228   .right input.search {
229     width: 80%;
230     width: calc(100% - 2.5em);
231   }
232   ul.searchresults, ol.searchresults {
233     min-width: 50%;
234   }
235 }
236
237
238 /* === Editor === */
239
240 [id$="/[edit]"] main .pagemenu {
241   margin-bottom: 1em;
242 }
243
244 .tab[name=edithelp] ~ .tab.editor textarea,
245 .tab[name=edithelp] ~ .tab.syntax,
246 .tab[name=edithelp] ~ .tab.attach,
247 .tab[name=edithelp] ~ .tab.transl {
248   background-color: #FFF;
249   min-height: 20em; min-height: 50vh;
250 }
251
252 .tab[name=edithelp] ~ .tab.editor textarea {
253   width: 100%;
254   font-family: monospace;
255   font-size: inherit;
256 }
257
258 .tab[name=edithelp] ~ .tab.attach {
259   padding-top: 1em;
260   padding-left: 7em;
261 }
262 .tab[name=edithelp] ~ .tab.attach .aimg img {
263   float: left;
264   max-height: 4em;
265   margin-left: -6em;
266 }
267
268 .tab[name=edithelp] ~ .tab.transl {
269   font-family: monospace;
270   white-space: pre;
271 }
272
273 .tab[name=edithelp]#editor:checked ~ .tab.editor,
274 .tab[name=edithelp]#syntax:checked ~ .tab.syntax,
275 .tab[name=edithelp]#attach:checked ~ .tab.attach,
276 .tab[name=edithelp]#transl:checked ~ .tab.transl {
277   display: block;
278 }
279
280
281 /* === Attachments === */
282
283 .attachment.list button[name=delete] {
284   font-size: .75em;
285   line-height: 1.25em;
286   margin-right: 1.25em;
287 }
288 .attachment.list .size,
289 .attachment.list .date {
290   font-size: .875em;
291   top: -.25em;
292 }
293
294 .attachment.list .name:after {
295   white-space: pre-line;
296   content: "\0a";
297 }
298 .attachment.list .size {
299   margin-right: 1em;
300 }
301
302 .revisions li { margin: 1em 0; }
303 .revisions li span.hash,
304 .revisions li span.date {
305   margin-right: 1em;
306 }
307
308 .revisions .diff span {
309   font-family: monospace;
310   display: block;
311   white-space: pre;
312   line-height: 1.375em;
313 }
314 .revisions .diff span.linenum { color: #D60; }
315 .revisions .diff span.linedel { color: #A00; }
316 .revisions .diff span.lineadd { color: #0A0; }
317 .revisions .diff span.linenote { color: #AAA; }
318
319
320 [id$="/[attachment]"] input[type=radio].tab ~ div.tab {
321   display: block;
322   padding-top: 1em;
323 }
324 [id$="/[attachment]"] input[type=radio].tab ~ div.tab ul.attachment.list {
325   list-style: none;
326   margin-left: 0;
327 }
328
329 .tab ul li input[name=select],
330 .tab ul li label.name,
331 .tab ul li a.name,
332 .tab ul li input.name {
333   display: none;
334 }
335
336 [id$="/[attachment]"] input[type=radio].tab#tview:checked ~ div.tab ul li a.name,
337 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab ul li input[name=select],
338 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab ul li label.name,
339 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab ul li input[name=select],
340 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab ul li label.name {
341   display: inline;
342 }
343 [id$="/[attachment]"] input[type=radio].tab#tren:checked ~ .tab ul li input.name {
344   display: block;
345 }
346
347 [id$="/[attachment]"] label[for=moveto], [id$="/[attachment]"] input#moveto,
348 [id$="/[attachment]"] button[name=action] { display: none; }
349
350 [id$="/[attachment]"] .upload button[name=action] { display: inline-block; }
351 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab button[name=action][value=delete],
352 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab label[for=moveto],
353 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab input#moveto,
354 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab button[name=action][value=move],
355 [id$="/[attachment]"] input[type=radio].tab#tren:checked  ~ div.tab button[name=action][value=rename] {
356   display: inline;
357 }
358
359
360 /* === Macros === */
361
362 .macro.toc {
363   display: inline-block;
364   list-style-position: inside;
365   margin-left: 0;
366   background-color: #DDD;
367   background-color: rgba(0, 0, 0, .125);
368   padding: .75em 1em;
369   border: 1pt solid;
370   border-radius: 2pt;
371 }
372 .macro.toc li.h2 { margin-left: 1.25em; }
373 .macro.toc li.h3 { margin-left: 2.5em; }
374 .macro.toc li.h4 { margin-left: 3.75em; }
375 .macro.toc li.h5 { margin-left: 5em; }
376 .macro.toc li.h6 { margin-left: 6.25em; }
377
378
379 .macro.gallery {
380   text-align: center;
381   margin: 2em 0;
382   padding: .5em .125em;
383   background-color: #444;
384   clear: both;
385 }
386 .macro.gallery img {
387   max-height: 9em;
388   margin: 0 .25em;
389 }
390
391
392 ul.macro.tag { padding: 0; }
393 .macro.tag li.tag {
394   display: inline-block;
395   color: #FFF;
396   background-color: #333;
397   font-size: .875em;
398   padding: 0 .5em;
399   margin: .25em .25em 0 0;
400   border-radius: .375em;
401 }
402
403
404 .macro.changes td .date {
405   display: block;
406   font-size: .75em;
407 }
408 .macro.changes td.outdated,
409 .macro.changes td.current,
410 .macro.changes td.missing {
411   text-align: center;
412 }
413 .macro.changes th { background-color: #EEF; }
414 .macro.changes td { background-color: #DFF; }
415 .macro.changes td.outdated { background-color: #FFD; }
416 .macro.changes td.current  { background-color: #DFD; }
417 .macro.changes td.missing  { background-color: #FDD; }