blob: 27d4f7ba9f6a8dc43d33a584a7ccea49570923a9 [file] [log] [blame]
Marc Kupietza737b1b2023-10-07 09:32:20 +02001/**
2 * IDS theme for reveal.js
3 *
4 * By Marc Kupietz
5 */
Marc Kupietza0f8f682026-08-08 14:13:11 +02006@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@300;400;700;800&family=Fira+Sans:wght@200;300;400;700&family=Fira+Sans+Extra+Condensed:wght@300;700&display=swap");
Marc Kupietzbfab8a12026-08-19 14:42:42 +02007@import url("https://code.cdn.mozilla.net/fonts/fira.css");
Marc Kupietzc22be152026-08-18 15:54:55 +02008@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap");
Marc Kupietza737b1b2023-10-07 09:32:20 +02009@import url("https://korap.ids-mannheim.de/font/libertinus.css");
10section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
11 color: #fff;
12}
13
14/*********************************************
15 * GLOBAL STYLES
16 *********************************************/
17:root {
18 --r-background-color: #fff;
19 --r-main-font: Libertinus Serif, Helvetica, sans-serif;
20 --r-main-font-size: 42px;
21 --r-main-color: #222;
22 --r-block-margin: 20px;
23 --r-heading-margin: 0 0 20px 0;
Marc Kupietza0f8f682026-08-08 14:13:11 +020024 --r-heading-font: Fira Sans Extra Condensed, Fira Sans Condensed, Fira Sans, Helvetica, sans-serif;
Marc Kupietza737b1b2023-10-07 09:32:20 +020025 --r-heading-color: #f6a800;
26 --r-heading-line-height: 1.2;
27 --r-heading-letter-spacing: 0.05ex;
28 --r-heading-text-transform: uppercase;
29 --r-heading-text-shadow: none;
Marc Kupietza0f8f682026-08-08 14:13:11 +020030 --r-heading-font-weight: 700;
Marc Kupietza737b1b2023-10-07 09:32:20 +020031 --r-heading1-text-shadow: none;
32 --r-heading1-size: 2em;
33 --r-heading2-size: 1.35em;
Marc Kupietzdc994e22023-10-07 18:50:18 +020034 --r-heading3-size: 0.9em;
35 --r-heading4-size: 0.7em;
Marc Kupietzbfab8a12026-08-19 14:42:42 +020036 --r-code-font: Fira Code, Fira Mono, DejaVu Sans Mono, Source Code Pro, monospace;
Marc Kupietza737b1b2023-10-07 09:32:20 +020037 --r-link-color: #2a76dd;
Marc Kupietzbfab8a12026-08-19 14:42:42 +020038 --r-link-color-dark: rgb(12.0674763833%, 39.0418353576%, 75.5991902834%);
39 --r-link-color-hover: rgb(42.3410335794%, 62.9141859173%, 90.7962213225%);
40 --r-selection-background-color: rgb(59.5879971422%, 74.0073033262%, 93.5492577598%);
Marc Kupietza737b1b2023-10-07 09:32:20 +020041 --r-selection-color: #fff;
Marc Kupietz9c036a42024-05-14 13:17:25 +020042 --r-overlay-element-bg-color: 240, 240, 240;
43 --r-overlay-element-fg-color: 0, 0, 0;
Marc Kupietza737b1b2023-10-07 09:32:20 +020044}
45
46.reveal-viewport {
47 background: #fff;
48 background-color: var(--r-background-color);
49}
50
51.reveal {
52 font-family: var(--r-main-font);
53 font-size: var(--r-main-font-size);
54 font-weight: normal;
55 color: var(--r-main-color);
56}
57
58.reveal ::selection {
59 color: var(--r-selection-color);
60 background: var(--r-selection-background-color);
61 text-shadow: none;
62}
63
64.reveal ::-moz-selection {
65 color: var(--r-selection-color);
66 background: var(--r-selection-background-color);
67 text-shadow: none;
68}
69
70.reveal .slides section,
Marc Kupietzbfab8a12026-08-19 14:42:42 +020071.reveal .slides section > section {
Marc Kupietza737b1b2023-10-07 09:32:20 +020072 line-height: 1.3;
73 font-weight: inherit;
74}
75
76/*********************************************
77 * HEADERS
78 *********************************************/
79.reveal h1,
80.reveal h2,
81.reveal h3,
82.reveal h4,
83.reveal h5,
84.reveal h6 {
85 margin: var(--r-heading-margin);
86 color: var(--r-heading-color);
87 font-family: var(--r-heading-font);
88 font-weight: var(--r-heading-font-weight);
89 line-height: var(--r-heading-line-height);
90 letter-spacing: var(--r-heading-letter-spacing);
91 text-transform: var(--r-heading-text-transform);
92 text-shadow: var(--r-heading-text-shadow);
93 word-wrap: break-word;
94}
95
96.reveal h1 {
97 font-size: var(--r-heading1-size);
98}
99
100.reveal h2 {
101 font-size: var(--r-heading2-size);
102}
103
104.reveal h3 {
105 font-size: var(--r-heading3-size);
106}
107
108.reveal h4 {
109 font-size: var(--r-heading4-size);
110}
111
112.reveal h1 {
113 text-shadow: var(--r-heading1-text-shadow);
114}
115
116/*********************************************
117 * OTHER
118 *********************************************/
119.reveal p {
120 margin: var(--r-block-margin) 0;
121 line-height: 1.3;
122}
123
124/* Remove trailing margins after titles */
125.reveal h1:last-child,
126.reveal h2:last-child,
127.reveal h3:last-child,
128.reveal h4:last-child,
129.reveal h5:last-child,
130.reveal h6:last-child {
131 margin-bottom: 0;
132}
133
134/* Ensure certain elements are never larger than the slide itself */
135.reveal img,
136.reveal video,
137.reveal iframe {
138 max-width: 95%;
139 max-height: 95%;
140}
141
142.reveal strong,
143.reveal b {
144 font-weight: bold;
145}
146
147.reveal em {
148 font-style: italic;
149}
150
151.reveal ol,
152.reveal dl,
153.reveal ul {
154 display: inline-block;
155 text-align: left;
156 margin: 0 0 0 1em;
157}
158
159.reveal ol {
160 list-style-type: decimal;
161}
162
163.reveal ul {
164 list-style-type: disc;
165}
166
167.reveal ul ul {
168 list-style-type: square;
169}
170
171.reveal ul ul ul {
172 list-style-type: circle;
173}
174
175.reveal ul ul,
176.reveal ul ol,
177.reveal ol ol,
178.reveal ol ul {
179 display: block;
180 margin-left: 40px;
181}
182
183.reveal dt {
184 font-weight: bold;
185}
186
187.reveal dd {
188 margin-left: 40px;
189}
190
191.reveal blockquote {
192 display: block;
193 position: relative;
194 width: 70%;
195 margin: var(--r-block-margin) auto;
196 padding: 5px;
197 font-style: italic;
198 background: rgba(255, 255, 255, 0.05);
199 box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
200}
201
202.reveal blockquote p:first-child,
203.reveal blockquote p:last-child {
204 display: inline-block;
205}
206
207.reveal q {
208 font-style: italic;
209}
210
211.reveal pre {
212 display: block;
213 position: relative;
214 width: 90%;
215 margin: var(--r-block-margin) auto;
216 text-align: left;
217 font-size: 0.55em;
218 font-family: var(--r-code-font);
219 line-height: 1.2em;
220 word-wrap: break-word;
221 box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
222}
223
224.reveal code {
225 font-family: var(--r-code-font);
226 text-transform: none;
227 tab-size: 2;
228}
229
230.reveal pre code {
231 display: block;
232 padding: 5px;
233 overflow: auto;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200234 max-height: 400px;
Marc Kupietza737b1b2023-10-07 09:32:20 +0200235 word-wrap: normal;
236}
237
238.reveal .code-wrapper {
239 white-space: normal;
240}
241
242.reveal .code-wrapper code {
243 white-space: pre;
244}
245
246.reveal table {
247 margin: auto;
248 border-collapse: collapse;
249 border-spacing: 0;
250}
251
252.reveal table th {
253 font-weight: bold;
254}
255
256.reveal table th,
257.reveal table td {
258 text-align: left;
259 padding: 0.2em 0.5em 0.2em 0.5em;
260 border-bottom: 1px solid;
261}
262
263.reveal table th[align=center],
264.reveal table td[align=center] {
265 text-align: center;
266}
267
268.reveal table th[align=right],
269.reveal table td[align=right] {
270 text-align: right;
271}
272
273.reveal table tbody tr:last-child th,
274.reveal table tbody tr:last-child td {
275 border-bottom: none;
276}
277
278.reveal sup {
279 vertical-align: super;
280 font-size: smaller;
281}
282
283.reveal sub {
284 vertical-align: sub;
285 font-size: smaller;
286}
287
288.reveal small {
289 display: inline-block;
290 font-size: 0.6em;
291 line-height: 1.2em;
292 vertical-align: top;
293}
294
295.reveal small * {
296 vertical-align: top;
297}
298
299.reveal img {
300 margin: var(--r-block-margin) 0;
301}
302
303/*********************************************
304 * LINKS
305 *********************************************/
306.reveal a {
307 color: var(--r-link-color);
308 text-decoration: none;
309 transition: color 0.15s ease;
310}
311
312.reveal a:hover {
313 color: var(--r-link-color-hover);
314 text-shadow: none;
315 border: none;
316}
317
318.reveal .roll span:after {
319 color: #fff;
320 background: var(--r-link-color-dark);
321}
322
323/*********************************************
324 * Frame helper
325 *********************************************/
326.reveal .r-frame {
327 border: 4px solid var(--r-main-color);
328 box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
329}
330
331.reveal a .r-frame {
332 transition: all 0.15s linear;
333}
334
335.reveal a:hover .r-frame {
336 border-color: var(--r-link-color);
337 box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
338}
339
340/*********************************************
341 * NAVIGATION CONTROLS
342 *********************************************/
343.reveal .controls {
344 color: var(--r-link-color);
345}
346
347/*********************************************
348 * PROGRESS BAR
349 *********************************************/
350.reveal .progress {
351 background: rgba(0, 0, 0, 0.2);
352 color: var(--r-link-color);
353}
354
355/*********************************************
356 * PRINT BACKGROUND
357 *********************************************/
358@media print {
359 .backgrounds {
360 background-color: var(--r-background-color);
361 }
362}
Marc Kupietza0f8f682026-08-08 14:13:11 +0200363.reveal .slides section:not(.stack) {
364 box-sizing: border-box !important;
365 padding-left: calc(calc(var(--slide-height) * 0.05) + 24px) !important;
366 padding-right: calc(calc(var(--slide-height) * 0.05) + 24px) !important;
367}
368
369.reveal .slides section:not(.stack):not(.title-frame) {
370 text-align: left !important;
371}
372
373.reveal .slides section:not(.title-frame) ul,
374.reveal .slides section:not(.title-frame) ol {
375 display: block !important;
376 text-align: left !important;
377 margin-left: 0 !important;
Marc Kupietze0826862026-08-11 16:34:54 +0200378 padding-left: 0.65em !important;
379 list-style: none !important;
380}
381
382.reveal .slides section:not(.title-frame) li {
383 position: relative !important;
384}
385
386.reveal .slides section:not(.title-frame) li::before {
387 position: absolute !important;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200388 left: calc(-1 * 0.65em) !important;
Marc Kupietze0826862026-08-11 16:34:54 +0200389 color: var(--r-list-bullet-color) !important;
390}
391
392.reveal .slides section:not(.title-frame) li li::before {
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200393 left: calc(-1 * 0.65em / 0.8) !important;
Marc Kupietze0826862026-08-11 16:34:54 +0200394}
395
Marc Kupietze0826862026-08-11 16:34:54 +0200396.reveal .slides section:not(.title-frame) ul > li::before {
397 content: "" !important;
398 top: calc((1.3em - 0.22em) / 2) !important;
399 width: 0.22em !important;
400 height: 0.22em !important;
401 box-sizing: border-box !important;
402 border-radius: 50% !important;
403 background: var(--r-list-bullet-color) !important;
404}
405
406.reveal .slides section:not(.title-frame) ul ul > li::before {
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200407 border-radius: 0 !important;
Marc Kupietze0826862026-08-11 16:34:54 +0200408}
409
410.reveal .slides section:not(.title-frame) ul ul ul > li::before {
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200411 background: transparent !important;
Marc Kupietze0826862026-08-11 16:34:54 +0200412 border: 0.055em solid var(--r-list-bullet-color) !important;
413 border-radius: 50% !important;
414}
415
Marc Kupietze0826862026-08-11 16:34:54 +0200416.reveal .slides section:not(.title-frame) ol > li::before {
417 content: counter(list-item, decimal) "." !important;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200418 width: calc(0.65em - 0.12em) !important;
Marc Kupietze0826862026-08-11 16:34:54 +0200419 text-align: right !important;
420}
421
Marc Kupietze0826862026-08-11 16:34:54 +0200422.reveal .slides section:not(.title-frame) ul.task-list li::before {
423 content: none !important;
Marc Kupietza0f8f682026-08-08 14:13:11 +0200424}
425
426.reveal .slides section:not(.title-frame) pre {
427 width: auto !important;
428 margin-left: 0 !important;
429 margin-right: 0 !important;
430}
431
432.reveal .slides {
433 background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/IDS-Logo-2019.svg");
434 background-repeat: no-repeat;
435 background-position: top 10px right 8px;
436 background-size: calc(var(--slide-height) * 0.25) auto;
437}
438
439.reveal .slides section:not(.title-frame) > h1:first-child,
440.reveal .slides section:not(.title-frame) > h2:first-child {
441 position: relative !important;
442 display: block !important;
443 text-align: left !important;
444 margin: 0 calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) 8px calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) !important;
445 padding: 0 0 0 calc(calc(var(--slide-height) * 0.05) + 24px) !important;
446 font-weight: var(--r-heading-font-weight) !important;
447}
448
449.reveal .slides section:not(.title-frame) > h1:first-child::before,
450.reveal .slides section:not(.title-frame) > h2:first-child::before,
451.reveal .slides section:not(.title-frame) > h2:first-child + h3::before {
452 content: "" !important;
453 position: absolute !important;
454 width: calc(var(--slide-height) * 0.05) !important;
455 background: #f6a800 !important;
456}
457
458.reveal .slides section:not(.title-frame) > h1:first-child::before,
459.reveal .slides section:not(.title-frame) > h2:first-child::before {
460 top: 0 !important;
461 left: calc(-1 * var(--ids-band-left, 0px)) !important;
462 height: 100% !important;
463}
464
465.reveal .slides section:not(.title-frame) > h1:first-child:not(:has(+ h3)),
466.reveal .slides section:not(.title-frame) > h2:first-child:not(:has(+ h3)) {
467 margin-bottom: calc(8px + 45.36px + 20px) !important;
468}
469
470.reveal .slides section:not(.title-frame) > h1:first-child:not(:has(+ h3))::before,
471.reveal .slides section:not(.title-frame) > h2:first-child:not(:has(+ h3))::before {
472 height: calc(100% + 8px + 45.36px) !important;
473}
474
475.reveal .slides section:not(.title-frame) > h2:first-child + h3 {
476 position: relative !important;
477 text-align: left !important;
478 margin-top: 0 !important;
479 margin-left: 0 !important;
480 margin-bottom: 20px !important;
481}
482
483.reveal .slides section:not(.title-frame) > h2:first-child + h3::before {
484 top: calc(-1 * (8px + 2px)) !important;
485 left: calc(-1 * (calc(calc(var(--slide-height) * 0.05) + 24px) + var(--ids-band-left, 0px))) !important;
486 height: calc(100% + 8px + 2px) !important;
Marc Kupietza737b1b2023-10-07 09:32:20 +0200487}
488
Marc Kupietz55c9cef2026-08-08 16:03:06 +0200489.reveal .slides section.level1:not(.title-frame) {
490 height: 100% !important;
491 display: flex !important;
492 flex-direction: column !important;
493 justify-content: center !important;
494}
495
496.reveal .slides section.level1:not(.title-frame)::before {
497 content: "" !important;
498 position: absolute !important;
499 top: 0 !important;
500 left: calc(-1 * var(--ids-band-left, 0px)) !important;
501 width: calc(var(--slide-height) * 0.05) !important;
502 height: 121.4px !important;
503 background: #f6a800 !important;
504}
505
506.reveal .slides section.level1:not(.title-frame) > h1:first-child {
507 text-align: center !important;
508 margin: 0 !important;
509 padding: 0 !important;
510}
511
512.reveal .slides section.level1:not(.title-frame) > h1:first-child::before {
513 content: none !important;
514}
515
Marc Kupietza737b1b2023-10-07 09:32:20 +0200516:root {
517 --r-bold-color: #f6a800;
518 --r-list-bullet-color: #f6a800;
519}
520
521.reveal strong, .reveal b {
Marc Kupietz9b795bd2026-08-19 06:58:44 +0200522 font-family: "Fira Sans Condensed", sans-serif;
523 font-weight: 600;
524 font-size: 90%;
Marc Kupietza737b1b2023-10-07 09:32:20 +0200525 color: var(--r-bold-color);
526}
527.reveal ul li::marker, .reveal ol li::marker {
528 color: var(--r-list-bullet-color) !important;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200529}
530
Marc Kupietz281ba9c2026-08-11 15:37:48 +0200531.reveal li li {
532 font-size: 0.8em;
533}
534
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200535/*********************************************
536 * FOOTER
537 *********************************************/
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200538#ids-footer:not(title-slide) {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200539 opacity: 1;
540 background: white;
541 color: #444444;
542 border-top: dotted orange 2px;
543 transition: opacity 800ms ease-in-out;
544 position: fixed;
545 height: 6%;
546 line-height: 6%;
547 z-index: -20;
548 width: 100%;
549 letter-spacing: 0em;
550 text-align: center;
551 display: table;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200552}
553
554#ids-footer span {
555 height: 100%;
556 line-height: 100%;
557 z-index: -20;
Marc Kupietz5a457902024-05-14 22:11:43 +0200558 font-size: 1.8vh;
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200559 font-family: "Fira Sans Condensed", "Fira Sans", "Roboto Condensed", "League Gothic", Impact, sans-serif;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200560 display: inline-block;
561 display: table-cell;
562 vertical-align: middle;
563}
564
565/* Bottom position for the IDS-Footer footer when both progress bar and TOC-Progress are visible */
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200566div.progress[style="display: block;"] ~ #ids-footer {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200567 bottom: calc(3px + 0vh);
568}
569
570/* Bottom position for the IDS-Footer footer when TOC-Progress is visible */
571#ids-footer {
572 bottom: 3px;
573}
574
575#ids-footer a {
576 color: #555555;
577}
578
579/* Bottom position for the IDS-Footer footer when progress bar is visible */
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200580div.progress[style="display: block;"] ~ footer:last-of-type#ids-footer {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200581 bottom: 3px;
582}
583
584/* Bottom position for the IDS-Footer footer when neither progress bar nor TOC-Progress are visible */
585footer:last-of-type#ids-footer {
586 bottom: 0px;
587}
588
589/* Make IDS-Footer invisible if explicitly indicated */
590.no-ids-footer #ids-footer {
591 opacity: 0;
592 transition: opacity 800ms ease-in-out;
593}
594
595.title-frame #ids-footer {
596 opacity: 0;
597 transition: opacity 800ms ease-in-out;
598}
599
600.no-toc-progress #ids-footer {
601 opacity: 0;
602 transition: opacity 800ms ease-in-out;
603}
604
605/* Make IDS-Footer invisible in overview mode */
606.overview #ids-footer {
607 opacity: 0;
608 transition: opacity 800ms ease-in-out;
609}
610
Marc Kupietza0f8f682026-08-08 14:13:11 +0200611.reveal .slides section.title-frame {
612 background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/Mitglied_WGL_transparent.svg");
Marc Kupietzf0ce0322023-10-07 15:33:47 +0200613 background-repeat: no-repeat;
Marc Kupietz67715592026-08-15 14:55:18 +0200614 background-position: right 8px bottom 10px;
615 background-size: calc(var(--slide-height) * 0.1) auto;
616 /* full slide height, so "bottom" really is the slide's bottom edge */
617 height: 100%;
Marc Kupietz5a457902024-05-14 22:11:43 +0200618}
Marc Kupietz026356a2025-09-02 11:49:58 +0200619
Marc Kupietzf0ce0322023-10-07 15:33:47 +0200620.slide-menu-items, .slide-menu-toolbar {
621 font-family: "Fira Sans" !important;
622}
623
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200624/*
625 * Menu controls
626 */
627body .reveal .slide-menu-button {
628 color: #aaaaaa !important;
629 position: fixed;
630 left: 30px;
631 bottom: 2%;
632 vertical-align: middle;
633 z-index: 30;
634 font-size: 2vh;
635}
636
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200637#customcontrols > ul {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200638 color: #aaaaaa !important;
639 position: fixed;
Marc Kupietzf51e9152023-10-07 15:32:33 +0200640 left: 50px;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200641 bottom: 2% !important;
642 vertical-align: middle;
643 z-index: 30;
644 font-size: 2vh;
645}
646
647@media only screen and (min-width: 500px) {
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200648 #customcontrols > ul {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200649 bottom: 2% !important;
650 }
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200651}
Marc Kupietzc7249f92023-10-10 07:16:50 +0200652.reveal .controls .controls-arrow {
653 position: relative;
654 width: 3.6em;
655 height: 3.6em;
656 bottom: -12px;
657 right: -4px;
658}
659
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200660.reveal h3, h4, h5, h6 {
661 text-transform: none !important;
662}
663
664.reveal h3, h4, h5, h6 {
665 text-transform: none !important;
666}
667
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200668.reveal h2 + h3 {
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200669 margin-top: -0.5em !important;
670}
671
672.title-frame h1,
673.title-frame h2 {
674 margin: 0 0 0 0;
Marc Kupietz9c036a42024-05-14 13:17:25 +0200675 background: rgb(246, 168, 0);
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200676 color: white;
677 font-family: "Fira Sans Condensed", "Roboto Condensed", Impact, sans-serif;
678 font-weight: 600;
679 line-height: 1.2;
680 letter-spacing: 0.05ex;
681 text-transform: uppercase;
682 width: 100%;
683 margin-top: 0.5em;
684 padding-top: 0.5em;
685 font-size: 1.75em;
686 margin-left: 0;
687 text-align: center;
688 text-shadow: none;
689 word-wrap: break-word;
690}
691
692.title-frame .author {
693 font-family: "Fira Sans Condensed", sans-serif;
694 font-weight: 400;
695 color: #657b83;
696 margin-top: 10vh;
697}
698
699.title-frame .place {
700 font-family: "Fira Sans Condensed", sans-serif;
701 margin-top: 40px;
702 font-weight: 400;
703 color: #657b83;
704}
705
706.title-frame h2 {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200707 margin-top: -3px;
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200708 margin-bottom: 1em;
709 padding-bottom: 0.5em;
710 font-size: 1em;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200711}
712
713/*********************************************
714 * TABLES
715 *********************************************/
716th {
Marc Kupietz9c036a42024-05-14 13:17:25 +0200717 color: rgb(246, 168, 0);
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200718}
719
720table {
721 font-family: "Fira Sans Condensed", sans-serif;
722 font-weight: 400;
723 font-size: 16px;
724}
725
726.reveal table.dataTable {
727 border: #aaaaaa 1px solid;
728 border-collapse: collapse;
729}
730
731.reveal table.dataTable td {
732 border: #aaaaaa 1px solid;
733 border-collapse: collapse;
734}
735
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200736.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate, table.dataTable thead > tr > th.sorting::before, table.dataTable thead > tr > th.sorting::after, table.dataTable thead > tr > th.sorting_asc::before, table.dataTable thead > tr > th.sorting_asc::after, table.dataTable thead > tr > th.sorting_desc::before, table.dataTable thead > tr > th.sorting_desc::after, table.dataTable thead > tr > th.sorting_asc_disabled::before, table.dataTable thead > tr > th.sorting_asc_disabled::after, table.dataTable thead > tr > th.sorting_desc_disabled::before, table.dataTable thead > tr > th.sorting_desc_disabled::after, table.dataTable thead > tr > td.sorting::before, table.dataTable thead > tr > td.sorting::after, table.dataTable thead > tr > td.sorting_asc::before, table.dataTable thead > tr > td.sorting_asc::after, table.dataTable thead > tr > td.sorting_desc::before, table.dataTable thead > tr > td.sorting_desc::after, table.dataTable thead > tr > td.sorting_asc_disabled::before, table.dataTable thead > tr > td.sorting_asc_disabled::after, table.dataTable thead > tr > td.sorting_desc_disabled::before, table.dataTable thead > tr > td.sorting_desc_disabled::after {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200737 display: none;
738}
739
740.caption {
741 font-family: "Fira Sans Condensed", sans-serif;
742 font-weight: 400;
743 font-size: 16px;
744 text-align: center;
745}
746
747/*
748table.display td { white-space: nowrap; }
749*/
750.dt-buttons, .dataTables_filter {
751 margin-top: 10pt;
752}
753
Marc Kupietz069f1e42023-10-11 10:26:16 +0200754/* Sort Arrows in DataTables */
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200755table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > td.sorting:before, table.dataTable thead > tr > td.sorting:after, table.dataTable thead > tr > td.sorting_asc:before, table.dataTable thead > tr > td.sorting_asc:after, table.dataTable thead > tr > td.sorting_desc:before, table.dataTable thead > tr > td.sorting_desc:after, table.dataTable thead > tr > td.sorting_asc_disabled:before, table.dataTable thead > tr > td.sorting_asc_disabled:after, table.dataTable thead > tr > td.sorting_desc_disabled:before, table.dataTable thead > tr > td.sorting_desc_disabled:after {
Marc Kupietz069f1e42023-10-11 10:26:16 +0200756 right: 0 !important;
757 line-height: 80% !important;
758}
759
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200760/*********************************************
761 * BIBLIOGRAPHY
762 *********************************************/
763.reveal .references {
764 font-family: "Fira Sans Condensed", sans-serif;
765 font-size: 16px;
766 text-align: left;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200767 margin-top: 10px;
768 max-height: 510px;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200769 font-weight: 400;
770 color: #253b43;
771 overflow-y: auto;
772}
773
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200774.hanging-indent > .csl-entry {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200775 padding-left: 22px;
776 text-indent: -22px;
777}
778
Marc Kupietz21f526c2026-08-14 12:32:56 +0200779.references .csl-entry {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200780 color: #888888;
Marc Kupietz21f526c2026-08-14 12:32:56 +0200781 margin-bottom: 0.5em;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200782}
783
Marc Kupietz21f526c2026-08-14 12:32:56 +0200784.csl-entry .csl-authors-year {
785 display: block;
786 font-weight: bold;
787 color: #4d616b;
Marc Kupietz11797162023-10-09 23:17:36 +0200788}
789
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200790.reveal code.sourceCode:last-child + pre {
Marc Kupietz11797162023-10-09 23:17:36 +0200791 height: 800px !important;
Marc Kupietz589d1b82023-10-10 12:31:33 +0200792}
793
794/*********************************************
795 * ARROWS and SLIDE NUMBERS
796 *********************************************/
797.reveal .controls .controls-arrow:after, .reveal .controls .controls-arrow:before {
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200798 width: 13px !important; /* size */
799 height: 4px; /* line width */
Marc Kupietz589d1b82023-10-10 12:31:33 +0200800}
801
802.reveal .controls {
803 display: none;
804 position: absolute;
805 top: auto;
806 bottom: -8px;
807 right: 16px;
808 left: auto;
809 z-index: 11;
810 /* color: #000;*/
811 pointer-events: none;
812 font-size: 8px;
813}
814
815.reveal .controls .controls-arrow {
816 position: relative;
817 height: 3.6em;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200818 width: 1.2em; /* distance betwee arrows */
Marc Kupietz589d1b82023-10-10 12:31:33 +0200819 bottom: 0;
820 right: 0;
821}
822
823.reveal div.slide-number {
824 text-align: center;
825 width: 2em;
826 position: absolute;
827 display: block;
828 right: 29px;
829 bottom: 22px;
830 z-index: 31;
831 font-family: "Fira Sans Condensed", sans-serif;
832 font-size: 18px;
833 line-height: 1;
834 background-color: white;
835 color: #666;
836 padding: 0;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200837}
838
839/*# sourceMappingURL=ids.css.map */