]> git.plutz.net Git - shellwiki/blob - themes/default.css
minor improvements: table, color, etc.
[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 [id$="/[revision]"] main .revisions,
111 [id$="/[attachment]"] main > .attachment.list {
112   margin: 1em;
113   padding: 1em 2em;
114 }
115 [id$="/[revision]"] main .revisions:before,
116 [id$="/[attachment]"] main > .attachment.list:before {
117   content: '';
118   position: absolute;
119   top: 0; bottom: 0; left: 0; right: 0;
120   background-color: #FFF;
121   box-shadow: .25em .25em .75em;
122 }
123
124 main code {
125   padding: .125em .25em;
126   background-color: #EEE;
127 }
128 main pre {
129   padding: .5em .5em;
130   background-color: #EEE;
131   max-width: 100%;
132   overflow-x: auto;
133 }
134 main pre > code {
135   padding: 0;
136 }
137
138 li.task > input[type=checkbox][disabled],
139 li.task > p > input[type=checkbox][disabled] {
140   display: none;
141 }
142 li.task > p:first-child { display: inline-block;}
143
144 -li.task:before { font-size: 1.125em; }
145 li.task.pending:before  { content: '\274f  '; color: #222; }
146 li.task.partial:before  { content: '\25d4  '; color: #880; }
147 li.task.negative:before { content: '\2718  '; color: #800; }
148 li.task.done:before     { content: '\2714  '; color: #080; }
149 li.task.unsure:before   { content: '?  '    ; color: #880; font-weight: bold; padding-left: 2pt; }
150
151 /* Alternative Check Symbols, all from "geometric shapes" block */ /*
152 -li.task.pending:before  { content: '\25a1  '; color: #222; }
153 -li.task.partial:before  { content: '\25d4  '; color: #880; }
154 -li.task.negative:before { content: '\25a8  '; color: #800; }
155 -li.task.done:before     { content: '\25a3  '; color: #080; }
156 */
157
158 h1 { text-align: center; }
159 .center { text-align: center; }
160
161 form.search {
162   text-align: center;
163   margin-bottom: 1em;
164 }
165 input.search {
166   min-width: 50%;
167   max-width: 80%;
168   max-width: calc(100%  - 2.5em);
169 }
170 ul.searchresults, ol.searchresults {
171   margin-left: auto; margin-right: auto;
172   width: 100%; max-width: 540pt;
173   text-align: center;
174 }
175
176 table {
177   min-width: 50%;
178   margin-left: auto;
179   margin-right: auto;
180 }
181
182 @media(min-width: 540pt) {
183   .half {
184     display: inline-block;
185     width: 50%;
186     padding-right: 1em;
187     vertical-align: top;
188   }
189   .right {
190     float: right;
191     width: 33%;
192     margin: .25em 0 .5em 1em;
193   }
194   .left {
195     float: left;
196     width: 33%;
197     margin: .25em 1em .5em 0;
198   }
199   section.left  > :first-child,
200   section.right > :first-child {
201     float: none;
202     margin: 0 0 .5em 0;
203   }
204   .left  > section:first-child > :first-child,
205   .right > section:first-child > :first-child {
206     margin-top: 0;
207   }
208   .left table, .right table, .half table {
209     width: 100%;
210   }
211
212   .left  input.search,
213   .right input.search {
214     width: 80%;
215     width: calc(100% - 2.5em);
216   }
217   ul.searchresults, ol.searchresults {
218     min-width: 50%;
219   }
220 }
221
222
223 /* === Editor === */
224
225 [id$="/[edit]"] main .pagemenu {
226   margin-bottom: 1em;
227 }
228
229 .tab[name=edithelp] ~ .tab.editor textarea,
230 .tab[name=edithelp] ~ .tab.syntax,
231 .tab[name=edithelp] ~ .tab.attach,
232 .tab[name=edithelp] ~ .tab.transl {
233   background-color: #FFF;
234   min-height: 20em; min-height: 50vh;
235 }
236
237 .tab[name=edithelp] ~ .tab.editor textarea {
238   width: 100%;
239   font-family: monospace;
240   font-size: inherit;
241 }
242
243 .tab[name=edithelp] ~ .tab.attach {
244   padding-top: 1em;
245   padding-left: 7em;
246 }
247 .tab[name=edithelp] ~ .tab.attach .aimg img {
248   float: left;
249   max-height: 4em;
250   margin-left: -6em;
251 }
252
253 .tab[name=edithelp] ~ .tab.transl {
254   font-family: monospace;
255   white-space: pre;
256 }
257
258 .tab[name=edithelp]#editor:checked ~ .tab.editor,
259 .tab[name=edithelp]#syntax:checked ~ .tab.syntax,
260 .tab[name=edithelp]#attach:checked ~ .tab.attach,
261 .tab[name=edithelp]#transl:checked ~ .tab.transl {
262   display: block;
263 }
264
265
266 /* === Attachments === */
267
268 .attachment.list button[name=delete] {
269   font-size: .75em;
270   line-height: 1.25em;
271   margin-right: 1.25em;
272 }
273 .attachment.list .size,
274 .attachment.list .date {
275   font-size: .875em;
276   top: -.25em;
277 }
278
279 .attachment.list .name:after {
280   white-space: pre-line;
281   content: "\0a";
282 }
283 .attachment.list .size {
284   margin-right: 1em;
285 }
286
287 .revisions li { margin: 1em 0; }
288 .revisions li span.hash,
289 .revisions li span.date {
290   margin-right: 1em;
291 }
292
293 .revisions .diff span {
294   font-family: monospace;
295   display: block;
296   white-space: pre;
297   line-height: 1.375em;
298 }
299 .revisions .diff span.linenum { color: #D60; }
300 .revisions .diff span.linedel { color: #A00; }
301 .revisions .diff span.lineadd { color: #0A0; }
302 .revisions .diff span.linenote { color: #AAA; }
303
304
305 [id$="/[attachment]"] input[type=radio].tab ~ div.tab {
306   display: block;
307   padding-top: 1em;
308 }
309 [id$="/[attachment]"] input[type=radio].tab ~ div.tab ul.attachment.list {
310   list-style: none;
311   margin-left: 0;
312 }
313
314 .tab ul li input[name=select],
315 .tab ul li label.name,
316 .tab ul li a.name,
317 .tab ul li input.name {
318   display: none;
319 }
320
321 [id$="/[attachment]"] input[type=radio].tab#tview:checked ~ div.tab ul li a.name,
322 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab ul li input[name=select],
323 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab ul li label.name,
324 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab ul li input[name=select],
325 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab ul li label.name {
326   display: inline;
327 }
328 [id$="/[attachment]"] input[type=radio].tab#tren:checked ~ .tab ul li input.name {
329   display: block;
330 }
331
332 [id$="/[attachment]"] label[for=moveto], [id$="/[attachment]"] input#moveto,
333 [id$="/[attachment]"] button[name=action] { display: none; }
334
335 [id$="/[attachment]"] .upload button[name=action] { display: inline-block; }
336 [id$="/[attachment]"] input[type=radio].tab#tdel:checked  ~ div.tab button[name=action][value=delete],
337 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab label[for=moveto],
338 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab input#moveto,
339 [id$="/[attachment]"] input[type=radio].tab#tmove:checked ~ div.tab button[name=action][value=move],
340 [id$="/[attachment]"] input[type=radio].tab#tren:checked  ~ div.tab button[name=action][value=rename] {
341   display: inline;
342 }
343
344
345 /* === Macros === */
346
347 .macro.toc {
348   display: inline-block;
349   list-style-position: inside;
350   margin-left: 0;
351   background-color: #DDD;
352   background-color: rgba(0, 0, 0, .125);
353   padding: .75em 1em;
354   border: 1pt solid;
355   border-radius: 2pt;
356 }
357 .macro.toc li.h2 { margin-left: 1.25em; }
358 .macro.toc li.h3 { margin-left: 2.5em; }
359 .macro.toc li.h4 { margin-left: 3.75em; }
360 .macro.toc li.h5 { margin-left: 5em; }
361 .macro.toc li.h6 { margin-left: 6.25em; }
362
363
364 .macro.gallery {
365   text-align: center;
366   margin: 2em 0;
367   padding: .5em .125em;
368   background-color: #444;
369   clear: both;
370 }
371 .macro.gallery img {
372   max-height: 9em;
373   margin: 0 .25em;
374 }
375
376
377 ul.macro.tag { padding: 0; }
378 .macro.tag li.tag {
379   display: inline-block;
380   color: #FFF;
381   background-color: #333;
382   font-size: .875em;
383   padding: 0 .5em;
384   margin: .25em .25em 0 0;
385   border-radius: .375em;
386 }
387
388
389 .macro.changes td .date {
390   display: block;
391   font-size: .75em;
392 }
393 .macro.changes td.outdated,
394 .macro.changes td.current,
395 .macro.changes td.missing {
396   text-align: center;
397 }
398 .macro.changes th { background-color: #EEF; }
399 .macro.changes td { background-color: #DFF; }
400 .macro.changes td.outdated { background-color: #FFD; }
401 .macro.changes td.current  { background-color: #DFD; }
402 .macro.changes td.missing  { background-color: #FDD; }