]> git.plutz.net Git - shellwiki/blob - themes/default.css
53a3e01a4d1ff348f0bfed21d6218b2b99e21f5b
[shellwiki] / themes / default.css
1 /*
2 # Copyright 2022 - 2024 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, input[type="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 .searchresults li a {
182   display: block;
183 }
184 .searchresults li p {
185   display: inline-block;
186   margin: 0 auto .5em auto;
187   white-space: pre-line;
188 }
189
190 table {
191   min-width: 50%;
192   margin-left: auto;
193   margin-right: auto;
194 }
195
196 @media(min-width: 540pt) {
197   .half {
198     display: inline-block;
199     width: 50%;
200     padding-right: 1em;
201     vertical-align: top;
202   }
203   .right {
204     float: right;
205     clear: both;
206     width: 33%;
207     margin: .25em 0 .5em 1em;
208   }
209   .left {
210     float: left;
211     clear: both;
212     width: 33%;
213     margin: .25em 1em .5em 0;
214   }
215   .left .left, .left .right,
216   .right .left, .right .right,
217   .half .left, .half .right {
218     float: none;
219     width: 100%;
220     margin: .25em 0 .5em 0;
221   }
222   section.left  > :first-child,
223   section.right > :first-child {
224     float: none;
225     margin: 0 0 .5em 0;
226   }
227   .left  > section:first-child > :first-child,
228   .right > section:first-child > :first-child {
229     margin-top: 0;
230   }
231   .left table, .right table, .half table {
232     width: 100%;
233   }
234
235   .left  input.search, .left  input[type="search"],
236   .right input.search, .right input[type="search"] {
237     width: 80%;
238     width: calc(100% - 2.5em);
239   }
240   ul.searchresults, ol.searchresults {
241     min-width: 50%;
242   }
243 }
244
245
246 /* === Editor === */
247
248 [id$="/[edit]"] main .pagemenu {
249   margin-bottom: 1em;
250 }
251
252 .tab[name=edithelp] ~ .tab.editor textarea,
253 .tab[name=edithelp] ~ .tab.syntax,
254 .tab[name=edithelp] ~ .tab.attach,
255 .tab[name=edithelp] ~ .tab.transl {
256   background-color: #FFF;
257   min-height: 20em; min-height: 50vh;
258 }
259
260 .tab[name=edithelp] ~ .tab.editor textarea {
261   width: 100%;
262   font-family: monospace;
263   font-size: inherit;
264 }
265
266 .tab[name=edithelp] ~ .tab.attach {
267   padding-top: 1em;
268   padding-left: 7em;
269 }
270 .tab[name=edithelp] ~ .tab.attach .aimg img {
271   float: left;
272   max-height: 4em;
273   margin-left: -6em;
274 }
275
276 .tab[name=edithelp] ~ .tab.transl {
277   font-family: monospace;
278   white-space: pre;
279 }
280
281 .tab[name=edithelp]#editor:checked ~ .tab.editor,
282 .tab[name=edithelp]#syntax:checked ~ .tab.syntax,
283 .tab[name=edithelp]#attach:checked ~ .tab.attach,
284 .tab[name=edithelp]#transl:checked ~ .tab.transl {
285   display: block;
286 }
287
288
289 /* === Attachments === */
290
291 .attachment.list button[name=delete] {
292   font-size: .75em;
293   line-height: 1.25em;
294   margin-right: 1.25em;
295 }
296 .attachment.list .size,
297 .attachment.list .date {
298   font-size: .875em;
299   top: -.25em;
300 }
301
302 .attachment.list .name:after {
303   white-space: pre-line;
304   content: "\0a";
305 }
306 .attachment.list .size {
307   margin-right: 1em;
308 }
309
310 .revisions li { margin: 1em 0; }
311 .revisions li span.hash,
312 .revisions li span.date {
313   margin-right: 1em;
314 }
315
316 .revisions .diff span {
317   font-family: monospace;
318   display: block;
319   white-space: pre;
320   line-height: 1.375em;
321 }
322 .revisions .diff span.linenum { color: #D60; }
323 .revisions .diff span.linedel { color: #A00; }
324 .revisions .diff span.lineadd { color: #0A0; }
325 .revisions .diff span.linenote { color: #AAA; }
326
327
328 [id$="/[attachment]"] input[type=radio].tab ~ div.tab {
329   display: block;
330   padding-top: 1em;
331 }
332 [id$="/[attachment]"] input[type=radio].tab ~ div.tab ul.attachment.list {
333   list-style: none;
334   margin-left: 0;
335 }
336
337 .tab ul li input[name=select],
338 .tab ul li label.name,
339 .tab ul li a.name,
340 .tab ul li input.name {
341   display: none;
342 }
343
344 [id$="/[attachment]"] input[type=radio].tab#tview:checked ~ div.tab ul li a.name,
345 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab ul li input[name=select],
346 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab ul li label.name,
347 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab ul li input[name=select],
348 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab ul li label.name {
349   display: inline;
350 }
351 [id$="/[attachment]"] input[type=radio].tab#tren:checked ~ .tab ul li input.name {
352   display: block;
353 }
354
355 [id$="/[attachment]"] label[for=moveto], [id$="/[attachment]"] input#moveto,
356 [id$="/[attachment]"] button[name=action] { display: none; }
357
358 [id$="/[attachment]"] .upload button[name=action] { display: inline-block; }
359 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab button[name=action][value=delete],
360 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab label[for=moveto],
361 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab input#moveto,
362 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab button[name=action][value=move],
363 [id$="/[attachment]"] input[type=radio].tab#tren:checked  ~ div.tab button[name=action][value=rename] {
364   display: inline;
365 }
366
367
368 /* === Macros === */
369
370 .macro.toc {
371   display: inline-block;
372   list-style-position: inside;
373   margin-left: 0;
374   background-color: #DDD;
375   background-color: rgba(0, 0, 0, .125);
376   padding: .75em 1em;
377   border: 1pt solid;
378   border-radius: 2pt;
379 }
380 .macro.toc li.h2 { margin-left: 1.25em; }
381 .macro.toc li.h3 { margin-left: 2.5em; }
382 .macro.toc li.h4 { margin-left: 3.75em; }
383 .macro.toc li.h5 { margin-left: 5em; }
384 .macro.toc li.h6 { margin-left: 6.25em; }
385
386
387 .macro.gallery {
388   text-align: center;
389   margin: 2em 0;
390   padding: .5em .125em;
391   background-color: #444;
392   clear: both;
393 }
394 .macro.gallery img {
395   max-height: 9em;
396   margin: 0 .25em;
397 }
398
399
400 ul.macro.tag { padding: 0; }
401 .macro.tag li.tag {
402   display: inline-block;
403   color: #FFF;
404   background-color: #333;
405   font-size: .875em;
406   padding: 0 .5em;
407   margin: .25em .25em 0 0;
408   border-radius: .375em;
409 }
410
411
412 .macro.changes td .date {
413   display: block;
414   font-size: .75em;
415 }
416 .macro.changes td.outdated,
417 .macro.changes td.current,
418 .macro.changes td.missing {
419   text-align: center;
420 }
421 .macro.changes th { background-color: #EEF; }
422 .macro.changes td { background-color: #DFF; }
423 .macro.changes td.outdated { background-color: #FFD; }
424 .macro.changes td.current  { background-color: #DFD; }
425 .macro.changes td.missing  { background-color: #FDD; }
426
427
428 .macro.calendar.cal_month {
429   border: 1pt solid #AAA;
430   -box-shadow: .25em .25em .75em #AAA;
431 }
432 .macro.calendar.cal_month td {
433   padding: 0 .25em;
434   vertical-align: top;
435 }
436 .macro.calendar.cal_month td > label {
437   display: block;
438   background-color: #F4F4F4;
439   text-align: center;
440   margin-right: 0;
441 }
442 .macro.calendar.cal_month td > ul {
443   padding: .25em 1em;
444   margin-bottom: .125em;
445 }
446 .macro.calendar.cal_month td > ul > li {
447   display: block;
448 }