blob: 982e0aa82d1014ffbd084d694ea476fe09fd6f88 [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 Kupietz61c8ec72026-08-20 20:47:45 +020038 --r-link-color-dark: rgb(30.7720647773, 99.5566801619, 192.7779352227);
39 --r-link-color-hover: rgb(107.9696356275, 160.4311740891, 231.5303643725);
40 --r-selection-background-color: rgb(151.9493927126, 188.7186234818, 238.5506072874);
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 Kupietz61c8ec72026-08-20 20:47:45 +0200363html .reveal .slides section:not(.stack) {
Marc Kupietza0f8f682026-08-08 14:13:11 +0200364 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 {
Marc Kupietz59e95a62026-08-29 10:19:05 +0300433 /* Second layer: the optional partner institution logo (--partner-logo is
434 supplied by the template from the document's partner_logo yaml entry) */
435 background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/IDS-Logo-2019.svg"), var(--partner-logo, none);
Marc Kupietza0f8f682026-08-08 14:13:11 +0200436 background-repeat: no-repeat;
Marc Kupietz59e95a62026-08-29 10:19:05 +0300437 background-position: top 6px right 8px, top 6px right calc(8px + var(--slide-height) * 0.25 + 16px);
438 background-size: calc(var(--slide-height) * 0.25) auto, auto calc(var(--slide-height) * 0.085);
Marc Kupietza0f8f682026-08-08 14:13:11 +0200439}
440
441.reveal .slides section:not(.title-frame) > h1:first-child,
442.reveal .slides section:not(.title-frame) > h2:first-child {
443 position: relative !important;
444 display: block !important;
445 text-align: left !important;
446 margin: 0 calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) 8px calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) !important;
447 padding: 0 0 0 calc(calc(var(--slide-height) * 0.05) + 24px) !important;
448 font-weight: var(--r-heading-font-weight) !important;
449}
450
451.reveal .slides section:not(.title-frame) > h1:first-child::before,
452.reveal .slides section:not(.title-frame) > h2:first-child::before,
453.reveal .slides section:not(.title-frame) > h2:first-child + h3::before {
454 content: "" !important;
455 position: absolute !important;
456 width: calc(var(--slide-height) * 0.05) !important;
457 background: #f6a800 !important;
458}
459
460.reveal .slides section:not(.title-frame) > h1:first-child::before,
461.reveal .slides section:not(.title-frame) > h2:first-child::before {
462 top: 0 !important;
463 left: calc(-1 * var(--ids-band-left, 0px)) !important;
464 height: 100% !important;
465}
466
467.reveal .slides section:not(.title-frame) > h1:first-child:not(:has(+ h3)),
468.reveal .slides section:not(.title-frame) > h2:first-child:not(:has(+ h3)) {
Marc Kupietz6acbd662026-08-20 14:41:00 +0200469 padding-top: calc((8px + 45.36px) / 2) !important;
470 margin-bottom: calc((8px + 45.36px) / 2 + 20px) !important;
Marc Kupietza0f8f682026-08-08 14:13:11 +0200471}
472
473.reveal .slides section:not(.title-frame) > h1:first-child:not(:has(+ h3))::before,
474.reveal .slides section:not(.title-frame) > h2:first-child:not(:has(+ h3))::before {
Marc Kupietz6acbd662026-08-20 14:41:00 +0200475 height: calc(100% + (8px + 45.36px) / 2) !important;
Marc Kupietza0f8f682026-08-08 14:13:11 +0200476}
477
Marc Kupietzd023f072026-08-20 15:27:37 +0200478.reveal .slides section:not(.title-frame) > h1:first-child:has(+ h3),
479.reveal .slides section:not(.title-frame) > h2:first-child:has(+ h3) {
480 padding-top: 8px !important;
481 margin-bottom: 0 !important;
482}
483
Marc Kupietza0f8f682026-08-08 14:13:11 +0200484.reveal .slides section:not(.title-frame) > h2:first-child + h3 {
485 position: relative !important;
486 text-align: left !important;
487 margin-top: 0 !important;
488 margin-left: 0 !important;
489 margin-bottom: 20px !important;
490}
491
492.reveal .slides section:not(.title-frame) > h2:first-child + h3::before {
493 top: calc(-1 * (8px + 2px)) !important;
494 left: calc(-1 * (calc(calc(var(--slide-height) * 0.05) + 24px) + var(--ids-band-left, 0px))) !important;
495 height: calc(100% + 8px + 2px) !important;
Marc Kupietza737b1b2023-10-07 09:32:20 +0200496}
497
Marc Kupietz55c9cef2026-08-08 16:03:06 +0200498.reveal .slides section.level1:not(.title-frame) {
499 height: 100% !important;
500 display: flex !important;
501 flex-direction: column !important;
502 justify-content: center !important;
503}
504
505.reveal .slides section.level1:not(.title-frame)::before {
506 content: "" !important;
507 position: absolute !important;
508 top: 0 !important;
509 left: calc(-1 * var(--ids-band-left, 0px)) !important;
510 width: calc(var(--slide-height) * 0.05) !important;
511 height: 121.4px !important;
512 background: #f6a800 !important;
513}
514
515.reveal .slides section.level1:not(.title-frame) > h1:first-child {
516 text-align: center !important;
517 margin: 0 !important;
518 padding: 0 !important;
519}
520
521.reveal .slides section.level1:not(.title-frame) > h1:first-child::before {
522 content: none !important;
523}
524
Marc Kupietza737b1b2023-10-07 09:32:20 +0200525:root {
526 --r-bold-color: #f6a800;
527 --r-list-bullet-color: #f6a800;
528}
529
530.reveal strong, .reveal b {
Marc Kupietz9b795bd2026-08-19 06:58:44 +0200531 font-family: "Fira Sans Condensed", sans-serif;
532 font-weight: 600;
533 font-size: 90%;
Marc Kupietza737b1b2023-10-07 09:32:20 +0200534 color: var(--r-bold-color);
535}
536.reveal ul li::marker, .reveal ol li::marker {
537 color: var(--r-list-bullet-color) !important;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200538}
539
Marc Kupietz281ba9c2026-08-11 15:37:48 +0200540.reveal li li {
541 font-size: 0.8em;
542}
543
Marc Kupietzf4945eb2026-08-19 17:48:41 +0200544.reveal dl {
545 font-size: 0.62em;
546 line-height: 1.25;
547}
548
549.reveal dt {
550 font-weight: 700;
551 margin-top: 0.35em;
552 font-family: "Fira Sans Condensed", sans-serif;
553 color: #f6a800;
554}
555
556.reveal dd {
557 margin: 0 0 0 1.2em;
558 color: #444;
559}
560
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200561/*********************************************
562 * FOOTER
563 *********************************************/
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200564#ids-footer:not(title-slide) {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200565 opacity: 1;
566 background: white;
567 color: #444444;
568 border-top: dotted orange 2px;
569 transition: opacity 800ms ease-in-out;
570 position: fixed;
571 height: 6%;
572 line-height: 6%;
573 z-index: -20;
574 width: 100%;
575 letter-spacing: 0em;
576 text-align: center;
577 display: table;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200578}
579
580#ids-footer span {
581 height: 100%;
582 line-height: 100%;
583 z-index: -20;
Marc Kupietz5a457902024-05-14 22:11:43 +0200584 font-size: 1.8vh;
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200585 font-family: "Fira Sans Condensed", "Fira Sans", "Roboto Condensed", "League Gothic", Impact, sans-serif;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200586 display: inline-block;
587 display: table-cell;
588 vertical-align: middle;
589}
590
591/* Bottom position for the IDS-Footer footer when both progress bar and TOC-Progress are visible */
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200592div.progress[style="display: block;"] ~ #ids-footer {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200593 bottom: calc(3px + 0vh);
594}
595
596/* Bottom position for the IDS-Footer footer when TOC-Progress is visible */
597#ids-footer {
598 bottom: 3px;
599}
600
601#ids-footer a {
602 color: #555555;
603}
604
605/* Bottom position for the IDS-Footer footer when progress bar is visible */
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200606div.progress[style="display: block;"] ~ footer:last-of-type#ids-footer {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200607 bottom: 3px;
608}
609
610/* Bottom position for the IDS-Footer footer when neither progress bar nor TOC-Progress are visible */
611footer:last-of-type#ids-footer {
612 bottom: 0px;
613}
614
615/* Make IDS-Footer invisible if explicitly indicated */
616.no-ids-footer #ids-footer {
617 opacity: 0;
618 transition: opacity 800ms ease-in-out;
619}
620
621.title-frame #ids-footer {
622 opacity: 0;
623 transition: opacity 800ms ease-in-out;
624}
625
626.no-toc-progress #ids-footer {
627 opacity: 0;
628 transition: opacity 800ms ease-in-out;
629}
630
631/* Make IDS-Footer invisible in overview mode */
632.overview #ids-footer {
633 opacity: 0;
634 transition: opacity 800ms ease-in-out;
635}
636
Marc Kupietz61c8ec72026-08-20 20:47:45 +0200637/* In print, the footer's negative stacking drops it behind the .pdf-page
638 * backgrounds (z-index 1); lift it above them. position: fixed repeats it at
639 * the bottom of every printed page. */
640html.reveal-print #ids-footer {
641 z-index: 100 !important;
642}
643
644html.reveal-print .reveal .slides .pdf-page {
645 z-index: auto !important;
646}
647
648html.reveal-print div.slide-number-pdf {
649 z-index: 200 !important;
650 bottom: 15px !important;
651}
652
653html.reveal-print .reveal .slides section:not(.title-frame) > h1:first-child::before,
654html.reveal-print .reveal .slides section:not(.title-frame) > h2:first-child::before {
655 left: 0 !important;
656}
657
658html.reveal-print .reveal .slides section:not(.title-frame) > h2:first-child + h3::before {
659 left: calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) !important;
660}
661
662html.reveal-print .reveal .slides section.level1:not(.title-frame)::before {
663 left: 0 !important;
664}
665
666html.reveal-print .reveal .slides section.title-frame {
667 background-position: right 8px bottom 55px;
668}
669
Marc Kupietza0f8f682026-08-08 14:13:11 +0200670.reveal .slides section.title-frame {
671 background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/Mitglied_WGL_transparent.svg");
Marc Kupietzf0ce0322023-10-07 15:33:47 +0200672 background-repeat: no-repeat;
Marc Kupietz67715592026-08-15 14:55:18 +0200673 background-position: right 8px bottom 10px;
674 background-size: calc(var(--slide-height) * 0.1) auto;
675 /* full slide height, so "bottom" really is the slide's bottom edge */
676 height: 100%;
Marc Kupietz5a457902024-05-14 22:11:43 +0200677}
Marc Kupietz026356a2025-09-02 11:49:58 +0200678
Marc Kupietz59e95a62026-08-29 10:19:05 +0300679.reveal .slides section.title-frame .title-qr {
680 position: absolute;
681 top: 6px;
682 left: 8px;
683 /* The generated QR matrix has no quiet zone of its own (dark modules
684 reach the svg edges); the white plate's padding supplies it. */
685 box-sizing: border-box;
686 width: calc(var(--slide-height) * 0.28);
687 padding: calc(var(--slide-height) * 0.025);
688 background: #fff;
689}
690
691.reveal .slides section.title-frame .title-qr a.qrcode,
692.reveal .slides section.title-frame .title-qr svg {
693 display: block;
694 width: 100%;
695 height: auto;
696 margin: 0;
697}
698
699.reveal .slides section.title-frame img.funder-logo {
700 position: absolute;
701 left: 8px;
702 bottom: 10px;
703 height: calc(var(--slide-height) * 0.07);
704 width: auto;
705}
706
707/* Lift the funder logo above the print footer band, like the WGL logo */
708html.reveal-print .reveal .slides section.title-frame img.funder-logo {
709 bottom: 55px;
710}
711
712/* The navigation chrome is hidden on the title slide (the template toggles
713 the ids-title-plain class when the title frame is the current slide) */
714html.ids-title-plain .reveal .controls,
715html.ids-title-plain .reveal .slide-number,
716html.ids-title-plain .reveal .slide-menu-button {
717 opacity: 0 !important;
718 visibility: hidden !important;
719 pointer-events: none !important;
720}
721
722.reveal .controls,
723.reveal .slide-number,
724.reveal .slide-menu-button {
725 transition: opacity 0.4s;
726}
727
Marc Kupietz903104a2026-08-20 10:10:41 +0200728/*********************************************
729 * SLIDES MENU
730 *********************************************/
731.slide-menu-wrapper .slide-menu {
732 font-family: "Fira Sans Condensed", sans-serif !important;
733}
734
735.slide-menu-wrapper .slide-menu:not(.slide-menu--wide):not(.slide-menu--half):not(.slide-menu--third):not(.slide-menu--full):not(.slide-menu--custom) {
Marc Kupietz7427cca2026-08-20 10:53:03 +0200736 width: 372px !important;
Marc Kupietz903104a2026-08-20 10:10:41 +0200737}
738
739.slide-menu-wrapper .slide-menu-item,
740.slide-menu-wrapper .slide-menu-item-vertical {
741 padding: 6px 12px !important;
742 line-height: 1.3 !important;
743}
744
745.slide-menu-wrapper .slide-menu-item-vertical {
746 padding-left: 26px !important;
747}
748
749.slide-menu-wrapper .slide-menu-item,
750.slide-menu-wrapper .slide-menu-item-vertical {
751 display: flex !important;
752 align-items: baseline !important;
753}
754
755.slide-menu-wrapper .slide-menu-item-title {
756 flex: 1 !important;
757 min-width: 0 !important;
758}
759
760.slide-menu-wrapper .slide-menu-item i.far,
761.slide-menu-wrapper .slide-menu-item i.fas,
762.slide-menu-wrapper .slide-menu-item-vertical i.far,
763.slide-menu-wrapper .slide-menu-item-vertical i.fas,
764.slide-menu-wrapper .slide-menu-item svg.svg-inline--fa,
765.slide-menu-wrapper .slide-menu-item-vertical svg.svg-inline--fa {
766 padding-right: 8px !important;
767}
768
Marc Kupietz7427cca2026-08-20 10:53:03 +0200769.slide-menu-wrapper .slide-menu-item {
770 font-weight: 700 !important;
771}
772
Marc Kupietz903104a2026-08-20 10:10:41 +0200773.slide-menu-wrapper .active-menu-panel li.active {
774 color: #f6a800 !important;
Marc Kupietzf0ce0322023-10-07 15:33:47 +0200775}
776
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200777/*
778 * Menu controls
779 */
780body .reveal .slide-menu-button {
781 color: #aaaaaa !important;
782 position: fixed;
783 left: 30px;
784 bottom: 2%;
785 vertical-align: middle;
786 z-index: 30;
787 font-size: 2vh;
788}
789
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200790#customcontrols > ul {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200791 color: #aaaaaa !important;
792 position: fixed;
Marc Kupietzf51e9152023-10-07 15:32:33 +0200793 left: 50px;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200794 bottom: 2% !important;
795 vertical-align: middle;
796 z-index: 30;
797 font-size: 2vh;
798}
799
800@media only screen and (min-width: 500px) {
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200801 #customcontrols > ul {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200802 bottom: 2% !important;
803 }
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200804}
Marc Kupietzc7249f92023-10-10 07:16:50 +0200805.reveal .controls .controls-arrow {
806 position: relative;
807 width: 3.6em;
808 height: 3.6em;
809 bottom: -12px;
810 right: -4px;
811}
812
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200813.reveal h3, h4, h5, h6 {
814 text-transform: none !important;
815}
816
817.reveal h3, h4, h5, h6 {
818 text-transform: none !important;
819}
820
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200821.reveal h2 + h3 {
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200822 margin-top: -0.5em !important;
823}
824
825.title-frame h1,
826.title-frame h2 {
827 margin: 0 0 0 0;
Marc Kupietz9c036a42024-05-14 13:17:25 +0200828 background: rgb(246, 168, 0);
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200829 color: white;
830 font-family: "Fira Sans Condensed", "Roboto Condensed", Impact, sans-serif;
831 font-weight: 600;
832 line-height: 1.2;
833 letter-spacing: 0.05ex;
834 text-transform: uppercase;
835 width: 100%;
836 margin-top: 0.5em;
837 padding-top: 0.5em;
838 font-size: 1.75em;
839 margin-left: 0;
840 text-align: center;
841 text-shadow: none;
842 word-wrap: break-word;
843}
844
845.title-frame .author {
846 font-family: "Fira Sans Condensed", sans-serif;
847 font-weight: 400;
848 color: #657b83;
849 margin-top: 10vh;
850}
851
852.title-frame .place {
853 font-family: "Fira Sans Condensed", sans-serif;
854 margin-top: 40px;
855 font-weight: 400;
856 color: #657b83;
857}
858
859.title-frame h2 {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200860 margin-top: -3px;
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200861 margin-bottom: 1em;
862 padding-bottom: 0.5em;
863 font-size: 1em;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200864}
865
866/*********************************************
867 * TABLES
868 *********************************************/
869th {
Marc Kupietz9c036a42024-05-14 13:17:25 +0200870 color: rgb(246, 168, 0);
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200871}
872
873table {
874 font-family: "Fira Sans Condensed", sans-serif;
875 font-weight: 400;
876 font-size: 16px;
Marc Kupietz25570ef2026-08-28 14:03:21 +0300877 font-variant-numeric: tabular-nums;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200878}
879
880.reveal table.dataTable {
881 border: #aaaaaa 1px solid;
882 border-collapse: collapse;
883}
884
885.reveal table.dataTable td {
886 border: #aaaaaa 1px solid;
887 border-collapse: collapse;
888}
889
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200890.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 +0200891 display: none;
892}
893
894.caption {
895 font-family: "Fira Sans Condensed", sans-serif;
896 font-weight: 400;
897 font-size: 16px;
898 text-align: center;
899}
900
901/*
902table.display td { white-space: nowrap; }
903*/
904.dt-buttons, .dataTables_filter {
905 margin-top: 10pt;
906}
907
Marc Kupietz069f1e42023-10-11 10:26:16 +0200908/* Sort Arrows in DataTables */
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200909table.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 +0200910 right: 0 !important;
911 line-height: 80% !important;
912}
913
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200914/*********************************************
915 * BIBLIOGRAPHY
916 *********************************************/
917.reveal .references {
918 font-family: "Fira Sans Condensed", sans-serif;
919 font-size: 16px;
920 text-align: left;
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200921 margin-top: 10px;
922 max-height: 510px;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200923 font-weight: 400;
924 color: #253b43;
925 overflow-y: auto;
926}
927
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200928.hanging-indent > .csl-entry {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200929 padding-left: 22px;
930 text-indent: -22px;
931}
932
Marc Kupietz21f526c2026-08-14 12:32:56 +0200933.references .csl-entry {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200934 color: #888888;
Marc Kupietz21f526c2026-08-14 12:32:56 +0200935 margin-bottom: 0.5em;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200936}
937
Marc Kupietz21f526c2026-08-14 12:32:56 +0200938.csl-entry .csl-authors-year {
939 display: block;
940 font-weight: bold;
941 color: #4d616b;
Marc Kupietz11797162023-10-09 23:17:36 +0200942}
943
Marc Kupietzbfab8a12026-08-19 14:42:42 +0200944.reveal code.sourceCode:last-child + pre {
Marc Kupietz11797162023-10-09 23:17:36 +0200945 height: 800px !important;
Marc Kupietz589d1b82023-10-10 12:31:33 +0200946}
947
948/*********************************************
Marc Kupietz54d9ce02026-08-21 11:38:45 +0200949 * FULLSCREEN TOGGLE
Marc Kupietz589d1b82023-10-10 12:31:33 +0200950 *********************************************/
Marc Kupietz54d9ce02026-08-21 11:38:45 +0200951#ids-fullscreen {
952 display: none;
953 position: fixed;
954 left: 30px;
955 bottom: 6%;
956 z-index: 30;
957 width: 28px;
958 height: 28px;
959 border: 0;
960 padding: 0;
961 cursor: pointer;
962 opacity: 0.55;
963 background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H5a2 2 0 0 0-2 2v3'/%3E%3Cpath d='M16 3h3a2 2 0 0 1 2 2v3'/%3E%3Cpath d='M8 21H5a2 2 0 0 1-2-2v-3'/%3E%3Cpath d='M16 21h3a2 2 0 0 0 2-2v-3'/%3E%3C/svg%3E") center/contain no-repeat;
964}
965#ids-fullscreen:active, #ids-fullscreen:focus-visible {
966 opacity: 0.9;
967}
968#ids-fullscreen.is-fullscreen {
969 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a800' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H5a2 2 0 0 0-2 2v3'/%3E%3Cpath d='M16 3h3a2 2 0 0 1 2 2v3'/%3E%3Cpath d='M8 21H5a2 2 0 0 1-2-2v-3'/%3E%3Cpath d='M16 21h3a2 2 0 0 0 2-2v-3'/%3E%3C/svg%3E");
970}
971
972@media (hover: none) and (pointer: coarse) {
973 #ids-fullscreen {
974 display: block;
975 }
976}
977html.reveal-print #ids-fullscreen {
978 display: none !important;
979}
980
Marc Kupietz88799182026-08-24 09:22:33 +0300981/*********************************************
982 * SPEAKER NOTES OVERLAY (touch devices)
983 *********************************************/
984#ids-notes {
985 display: none;
986 position: fixed;
987 left: 70px;
988 bottom: 6%;
989 z-index: 30;
990 width: 28px;
991 height: 28px;
992 border: 0;
993 padding: 0;
994 cursor: pointer;
995 opacity: 0.55;
996 background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
997}
998#ids-notes:active, #ids-notes:focus-visible {
999 opacity: 0.9;
1000}
1001#ids-notes.is-open {
1002 opacity: 0.9;
1003 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a800' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
1004}
1005
Marc Kupietz010db0b2026-08-26 09:56:45 +03001006#ids-transcript-btn {
1007 display: none;
1008 position: fixed;
1009 left: 110px;
1010 bottom: 6%;
1011 z-index: 30;
1012 width: 28px;
1013 height: 28px;
1014 border: 0;
1015 padding: 0;
1016 cursor: pointer;
1017 opacity: 0.55;
1018 background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
1019}
1020#ids-transcript-btn:active, #ids-transcript-btn:focus-visible, #ids-transcript-btn.is-open {
1021 opacity: 0.9;
1022}
1023#ids-transcript-btn.is-open {
1024 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6a800' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E");
1025}
1026
Marc Kupietz88799182026-08-24 09:22:33 +03001027@media (hover: none) and (pointer: coarse) {
Marc Kupietz010db0b2026-08-26 09:56:45 +03001028 #ids-notes, #ids-transcript-btn {
Marc Kupietz88799182026-08-24 09:22:33 +03001029 display: block;
1030 }
1031}
Marc Kupietz010db0b2026-08-26 09:56:45 +03001032html.reveal-print #ids-notes, html.reveal-print #ids-transcript-btn {
Marc Kupietz88799182026-08-24 09:22:33 +03001033 display: none !important;
1034}
1035
1036#ids-notes-overlay {
1037 position: fixed;
1038 inset: 0;
1039 z-index: 100;
1040 background: #fff;
1041 color: #444444;
1042 font-family: "Fira Sans", "Fira Sans Condensed", sans-serif;
1043 overflow-y: auto;
1044 -webkit-overflow-scrolling: touch;
1045 padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right))
1046 max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
1047}
1048#ids-notes-overlay[hidden] {
1049 display: none;
1050}
1051#ids-notes-header {
1052 display: flex;
1053 align-items: baseline;
1054 gap: 12px;
1055 border-bottom: 1px solid #e0e0e0;
1056 margin-bottom: 16px;
1057 padding-bottom: 8px;
1058}
1059#ids-notes-timing {
1060 flex-shrink: 0;
1061 color: #f6a800;
1062 font-weight: bold;
1063 white-space: nowrap;
1064}
1065#ids-notes-title {
1066 flex-grow: 1;
1067 margin: 0;
1068 font-size: 1.1em;
1069}
1070#ids-notes-close {
1071 flex-shrink: 0;
1072 border: 0;
1073 background: none;
1074 color: #888888;
1075 font-size: 1.2em;
1076 cursor: pointer;
1077 padding: 8px;
1078 margin: -8px;
1079}
1080#ids-notes-content {
1081 font-size: 20px;
1082 line-height: 1.5;
1083}
1084#ids-notes-content em {
1085 color: #888888;
1086}
1087
Marc Kupietz589d1b82023-10-10 12:31:33 +02001088.reveal .controls .controls-arrow:after, .reveal .controls .controls-arrow:before {
Marc Kupietzbfab8a12026-08-19 14:42:42 +02001089 width: 13px !important; /* size */
1090 height: 4px; /* line width */
Marc Kupietz589d1b82023-10-10 12:31:33 +02001091}
1092
1093.reveal .controls {
1094 display: none;
1095 position: absolute;
1096 top: auto;
1097 bottom: -8px;
1098 right: 16px;
1099 left: auto;
1100 z-index: 11;
1101 /* color: #000;*/
1102 pointer-events: none;
1103 font-size: 8px;
1104}
1105
1106.reveal .controls .controls-arrow {
1107 position: relative;
1108 height: 3.6em;
Marc Kupietzbfab8a12026-08-19 14:42:42 +02001109 width: 1.2em; /* distance betwee arrows */
Marc Kupietz589d1b82023-10-10 12:31:33 +02001110 bottom: 0;
1111 right: 0;
1112}
1113
1114.reveal div.slide-number {
1115 text-align: center;
1116 width: 2em;
1117 position: absolute;
1118 display: block;
1119 right: 29px;
1120 bottom: 22px;
1121 z-index: 31;
1122 font-family: "Fira Sans Condensed", sans-serif;
1123 font-size: 18px;
1124 line-height: 1;
1125 background-color: white;
1126 color: #666;
1127 padding: 0;
Marc Kupietzbfab8a12026-08-19 14:42:42 +02001128}
1129
Marc Kupietz4fc867c2026-08-25 10:30:18 +03001130/*********************************************
1131 * OVERVIEW / TOC SLIDES
1132 *********************************************/
1133.reveal .ids-overview-toc {
1134 list-style: none;
1135 margin: 0.2em 0 0 0;
1136 padding: 0;
1137 font-size: 0.72em;
1138 line-height: 1.35;
1139}
1140.reveal .ids-overview-toc > li {
1141 margin: 0.45em 0;
1142 font-weight: bold;
1143}
1144.reveal .ids-overview-toc ul {
1145 list-style: none;
1146 margin: 0.1em 0 0.2em 0;
1147 padding: 0 0 0 1.1em;
1148 font-weight: normal;
1149}
Marc Kupietz24057e52026-08-25 10:51:06 +03001150.reveal .ids-overview-toc.with-subheadings {
1151 columns: 2;
1152 column-gap: 2.5em;
1153}
1154.reveal .ids-overview-toc.with-subheadings > li {
1155 break-inside: avoid;
1156}
Marc Kupietz4fc867c2026-08-25 10:30:18 +03001157.reveal .ids-overview-toc ul li {
1158 margin: 0.18em 0;
1159}
1160.reveal .ids-overview-toc a {
1161 color: inherit;
1162}
1163.reveal .ids-overview-toc a:hover {
1164 color: var(--r-heading-color);
1165}
1166
Marc Kupietzeaaa2b42026-08-26 09:41:27 +03001167/*********************************************
1168 * TRANSCRIPT / READ-ALOUD VIEW ('r')
1169 *********************************************/
1170#ids-transcript {
1171 position: fixed;
1172 inset: 0;
1173 z-index: 90;
1174 background: #fff;
1175 color: #444444;
1176 font-family: "Fira Sans", "Fira Sans Condensed", sans-serif;
1177 font-size: 18px;
1178 line-height: 1.5;
1179 overflow-y: auto;
1180 -webkit-overflow-scrolling: touch;
1181 padding: max(32px, env(safe-area-inset-top)) max(40px, env(safe-area-inset-right))
1182 max(32px, env(safe-area-inset-bottom)) max(40px, env(safe-area-inset-left));
1183}
1184#ids-transcript[hidden] {
1185 display: none;
1186}
1187#ids-transcript .ids-transcript-slide {
1188 max-width: 900px;
1189 margin: 0 auto 2.5em auto;
1190}
1191#ids-transcript h1, #ids-transcript h2 {
1192 color: var(--r-heading-color);
1193 margin: 0 0 0.4em 0;
1194}
1195#ids-transcript h1 { font-size: 1.4em; }
1196#ids-transcript h2 { font-size: 1.2em; }
1197#ids-transcript .fragment {
1198 opacity: 1;
1199 visibility: visible;
1200}
1201#ids-transcript .ids-transcript-notes {
1202 border-left: 3px solid #f6a800;
1203 padding: 0.2em 0 0.2em 0.8em;
1204 margin-top: 0.8em;
1205 color: #666;
1206}
1207#ids-transcript .ids-transcript-notes:empty {
1208 display: none;
1209}
1210#ids-transcript img, #ids-transcript video, #ids-transcript iframe {
1211 max-width: 100%;
1212}
1213
Marc Kupietzbfab8a12026-08-19 14:42:42 +02001214/*# sourceMappingURL=ids.css.map */