blob: c886002f2e33978ceacedc76cdb8acc33074f489 [file] [log] [blame]
Marc Kupietza737b1b2023-10-07 09:32:20 +02001/**
2 * IDS theme for reveal.js
3 *
4 * By Marc Kupietz
5 */
6@import url("https://code.cdn.mozilla.net/fonts/fira.css");
7@import url("https://korap.ids-mannheim.de/font/fira-condensed.css");
8@import url("https://korap.ids-mannheim.de/font/libertinus.css");
9section.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 {
10 color: #fff;
11}
12
13/*********************************************
14 * GLOBAL STYLES
15 *********************************************/
16:root {
17 --r-background-color: #fff;
18 --r-main-font: Libertinus Serif, Helvetica, sans-serif;
19 --r-main-font-size: 42px;
20 --r-main-color: #222;
21 --r-block-margin: 20px;
22 --r-heading-margin: 0 0 20px 0;
Marc Kupietzdf0eda92023-10-07 20:50:00 +020023 --r-heading-font: Fira Sans Condensed, Fira Sans, Helvetica, sans-serif;
Marc Kupietza737b1b2023-10-07 09:32:20 +020024 --r-heading-color: #f6a800;
25 --r-heading-line-height: 1.2;
26 --r-heading-letter-spacing: 0.05ex;
27 --r-heading-text-transform: uppercase;
28 --r-heading-text-shadow: none;
29 --r-heading-font-weight: 600;
30 --r-heading1-text-shadow: none;
31 --r-heading1-size: 2em;
32 --r-heading2-size: 1.35em;
Marc Kupietzdc994e22023-10-07 18:50:18 +020033 --r-heading3-size: 0.9em;
34 --r-heading4-size: 0.7em;
Marc Kupietza737b1b2023-10-07 09:32:20 +020035 --r-code-font: monospace;
36 --r-link-color: #2a76dd;
37 --r-link-color-dark: #1a53a1;
38 --r-link-color-hover: #6ca0e8;
39 --r-selection-background-color: #98bdef;
40 --r-selection-color: #fff;
41}
42
43.reveal-viewport {
44 background: #fff;
45 background-color: var(--r-background-color);
46}
47
48.reveal {
49 font-family: var(--r-main-font);
50 font-size: var(--r-main-font-size);
51 font-weight: normal;
52 color: var(--r-main-color);
53}
54
55.reveal ::selection {
56 color: var(--r-selection-color);
57 background: var(--r-selection-background-color);
58 text-shadow: none;
59}
60
61.reveal ::-moz-selection {
62 color: var(--r-selection-color);
63 background: var(--r-selection-background-color);
64 text-shadow: none;
65}
66
67.reveal .slides section,
68.reveal .slides section > section {
69 line-height: 1.3;
70 font-weight: inherit;
71}
72
73/*********************************************
74 * HEADERS
75 *********************************************/
76.reveal h1,
77.reveal h2,
78.reveal h3,
79.reveal h4,
80.reveal h5,
81.reveal h6 {
82 margin: var(--r-heading-margin);
83 color: var(--r-heading-color);
84 font-family: var(--r-heading-font);
85 font-weight: var(--r-heading-font-weight);
86 line-height: var(--r-heading-line-height);
87 letter-spacing: var(--r-heading-letter-spacing);
88 text-transform: var(--r-heading-text-transform);
89 text-shadow: var(--r-heading-text-shadow);
90 word-wrap: break-word;
91}
92
93.reveal h1 {
94 font-size: var(--r-heading1-size);
95}
96
97.reveal h2 {
98 font-size: var(--r-heading2-size);
99}
100
101.reveal h3 {
102 font-size: var(--r-heading3-size);
103}
104
105.reveal h4 {
106 font-size: var(--r-heading4-size);
107}
108
109.reveal h1 {
110 text-shadow: var(--r-heading1-text-shadow);
111}
112
113/*********************************************
114 * OTHER
115 *********************************************/
116.reveal p {
117 margin: var(--r-block-margin) 0;
118 line-height: 1.3;
119}
120
121/* Remove trailing margins after titles */
122.reveal h1:last-child,
123.reveal h2:last-child,
124.reveal h3:last-child,
125.reveal h4:last-child,
126.reveal h5:last-child,
127.reveal h6:last-child {
128 margin-bottom: 0;
129}
130
131/* Ensure certain elements are never larger than the slide itself */
132.reveal img,
133.reveal video,
134.reveal iframe {
135 max-width: 95%;
136 max-height: 95%;
137}
138
139.reveal strong,
140.reveal b {
141 font-weight: bold;
142}
143
144.reveal em {
145 font-style: italic;
146}
147
148.reveal ol,
149.reveal dl,
150.reveal ul {
151 display: inline-block;
152 text-align: left;
153 margin: 0 0 0 1em;
154}
155
156.reveal ol {
157 list-style-type: decimal;
158}
159
160.reveal ul {
161 list-style-type: disc;
162}
163
164.reveal ul ul {
165 list-style-type: square;
166}
167
168.reveal ul ul ul {
169 list-style-type: circle;
170}
171
172.reveal ul ul,
173.reveal ul ol,
174.reveal ol ol,
175.reveal ol ul {
176 display: block;
177 margin-left: 40px;
178}
179
180.reveal dt {
181 font-weight: bold;
182}
183
184.reveal dd {
185 margin-left: 40px;
186}
187
188.reveal blockquote {
189 display: block;
190 position: relative;
191 width: 70%;
192 margin: var(--r-block-margin) auto;
193 padding: 5px;
194 font-style: italic;
195 background: rgba(255, 255, 255, 0.05);
196 box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
197}
198
199.reveal blockquote p:first-child,
200.reveal blockquote p:last-child {
201 display: inline-block;
202}
203
204.reveal q {
205 font-style: italic;
206}
207
208.reveal pre {
209 display: block;
210 position: relative;
211 width: 90%;
212 margin: var(--r-block-margin) auto;
213 text-align: left;
214 font-size: 0.55em;
215 font-family: var(--r-code-font);
216 line-height: 1.2em;
217 word-wrap: break-word;
218 box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
219}
220
221.reveal code {
222 font-family: var(--r-code-font);
223 text-transform: none;
224 tab-size: 2;
225}
226
227.reveal pre code {
228 display: block;
229 padding: 5px;
230 overflow: auto;
231 max-height: 400px;
232 word-wrap: normal;
233}
234
235.reveal .code-wrapper {
236 white-space: normal;
237}
238
239.reveal .code-wrapper code {
240 white-space: pre;
241}
242
243.reveal table {
244 margin: auto;
245 border-collapse: collapse;
246 border-spacing: 0;
247}
248
249.reveal table th {
250 font-weight: bold;
251}
252
253.reveal table th,
254.reveal table td {
255 text-align: left;
256 padding: 0.2em 0.5em 0.2em 0.5em;
257 border-bottom: 1px solid;
258}
259
260.reveal table th[align=center],
261.reveal table td[align=center] {
262 text-align: center;
263}
264
265.reveal table th[align=right],
266.reveal table td[align=right] {
267 text-align: right;
268}
269
270.reveal table tbody tr:last-child th,
271.reveal table tbody tr:last-child td {
272 border-bottom: none;
273}
274
275.reveal sup {
276 vertical-align: super;
277 font-size: smaller;
278}
279
280.reveal sub {
281 vertical-align: sub;
282 font-size: smaller;
283}
284
285.reveal small {
286 display: inline-block;
287 font-size: 0.6em;
288 line-height: 1.2em;
289 vertical-align: top;
290}
291
292.reveal small * {
293 vertical-align: top;
294}
295
296.reveal img {
297 margin: var(--r-block-margin) 0;
298}
299
300/*********************************************
301 * LINKS
302 *********************************************/
303.reveal a {
304 color: var(--r-link-color);
305 text-decoration: none;
306 transition: color 0.15s ease;
307}
308
309.reveal a:hover {
310 color: var(--r-link-color-hover);
311 text-shadow: none;
312 border: none;
313}
314
315.reveal .roll span:after {
316 color: #fff;
317 background: var(--r-link-color-dark);
318}
319
320/*********************************************
321 * Frame helper
322 *********************************************/
323.reveal .r-frame {
324 border: 4px solid var(--r-main-color);
325 box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
326}
327
328.reveal a .r-frame {
329 transition: all 0.15s linear;
330}
331
332.reveal a:hover .r-frame {
333 border-color: var(--r-link-color);
334 box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
335}
336
337/*********************************************
338 * NAVIGATION CONTROLS
339 *********************************************/
340.reveal .controls {
341 color: var(--r-link-color);
342}
343
344/*********************************************
345 * PROGRESS BAR
346 *********************************************/
347.reveal .progress {
348 background: rgba(0, 0, 0, 0.2);
349 color: var(--r-link-color);
350}
351
352/*********************************************
353 * PRINT BACKGROUND
354 *********************************************/
355@media print {
356 .backgrounds {
357 background-color: var(--r-background-color);
358 }
359}
360body {
361 background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/IDS-Logo-2019.svg"), url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/orange_bar.png") !important;
362 background-repeat: no-repeat !important;
363 background-position: top 20px right 20px, top 20px left !important;
364 background-size: 25vH auto, 4vH 16vH !important;
365}
366
367:root {
368 --r-bold-color: #f6a800;
369 --r-list-bullet-color: #f6a800;
370}
371
372.reveal strong, .reveal b {
373 color: var(--r-bold-color);
374}
375.reveal ul li::marker, .reveal ol li::marker {
376 color: var(--r-list-bullet-color) !important;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200377}
378
379/*********************************************
380 * FOOTER
381 *********************************************/
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200382#ids-footer:not(title-slide) {
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200383 opacity: 1;
384 background: white;
385 color: #444444;
386 border-top: dotted orange 2px;
387 transition: opacity 800ms ease-in-out;
388 position: fixed;
389 height: 6%;
390 line-height: 6%;
391 z-index: -20;
392 width: 100%;
393 letter-spacing: 0em;
394 text-align: center;
395 display: table;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200396}
397
398#ids-footer span {
399 height: 100%;
400 line-height: 100%;
401 z-index: -20;
402 font-size: 2vh;
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200403 font-family: "Fira Sans Condensed", "Fira Sans", "Roboto Condensed", "League Gothic", Impact, sans-serif;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200404 display: inline-block;
405 display: table-cell;
406 vertical-align: middle;
407}
408
409/* Bottom position for the IDS-Footer footer when both progress bar and TOC-Progress are visible */
410div.progress[style="display: block;"] ~ #ids-footer {
411 bottom: calc(3px + 0vh);
412}
413
414/* Bottom position for the IDS-Footer footer when TOC-Progress is visible */
415#ids-footer {
416 bottom: 3px;
417}
418
419#ids-footer a {
420 color: #555555;
421}
422
423/* Bottom position for the IDS-Footer footer when progress bar is visible */
424div.progress[style="display: block;"] ~ footer:last-of-type#ids-footer {
425 bottom: 3px;
426}
427
428/* Bottom position for the IDS-Footer footer when neither progress bar nor TOC-Progress are visible */
429footer:last-of-type#ids-footer {
430 bottom: 0px;
431}
432
433/* Make IDS-Footer invisible if explicitly indicated */
434.no-ids-footer #ids-footer {
435 opacity: 0;
436 transition: opacity 800ms ease-in-out;
437}
438
439.title-frame #ids-footer {
440 opacity: 0;
441 transition: opacity 800ms ease-in-out;
442}
443
444.no-toc-progress #ids-footer {
445 opacity: 0;
446 transition: opacity 800ms ease-in-out;
447}
448
449/* Make IDS-Footer invisible in overview mode */
450.overview #ids-footer {
451 opacity: 0;
452 transition: opacity 800ms ease-in-out;
453}
454
Marc Kupietzf0ce0322023-10-07 15:33:47 +0200455.reveal .slide-number {
456 position: absolute;
457 display: block;
458 right: 48px;
459 bottom: 32px;
460 z-index: 31;
461 font-family: Fira Sans, sans-serif;
462 font-size: 18px;
463 line-height: 1;
464 background-color: white;
465 color: #666;
466 padding: 5px;
467}
468
469.reveal .title-frame .slide-number {
470 display: none !important;
471}
472
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200473.title-frame div.slide-background-content {
Marc Kupietzf0ce0322023-10-07 15:33:47 +0200474 text-align: right !important;
475 background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/Mitglied_WGL_transparent.svg") !important;
476 background-repeat: no-repeat;
477 background-position: right 90px bottom 10px !important;
478 background-size: 7vH auto !important;
479}
480
481.slide-menu-items, .slide-menu-toolbar {
482 font-family: "Fira Sans" !important;
483}
484
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200485/*
486 * Menu controls
487 */
488body .reveal .slide-menu-button {
489 color: #aaaaaa !important;
490 position: fixed;
491 left: 30px;
492 bottom: 2%;
493 vertical-align: middle;
494 z-index: 30;
495 font-size: 2vh;
496}
497
498#customcontrols > ul {
499 color: #aaaaaa !important;
500 position: fixed;
Marc Kupietzf51e9152023-10-07 15:32:33 +0200501 left: 50px;
Marc Kupietz7c8f7de2023-10-07 11:42:29 +0200502 bottom: 2% !important;
503 vertical-align: middle;
504 z-index: 30;
505 font-size: 2vh;
506}
507
508@media only screen and (min-width: 500px) {
509 #customcontrols > ul {
510 bottom: 2% !important;
511 }
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200512}
513.reveal h3, h4, h5, h6 {
514 text-transform: none !important;
515}
516
517.reveal h3, h4, h5, h6 {
518 text-transform: none !important;
519}
520
521.reveal h2 + h3 {
522 margin-top: -0.5em !important;
523}
524
525.title-frame h1,
526.title-frame h2 {
527 margin: 0 0 0 0;
528 background: #f6a800;
529 color: white;
530 font-family: "Fira Sans Condensed", "Roboto Condensed", Impact, sans-serif;
531 font-weight: 600;
532 line-height: 1.2;
533 letter-spacing: 0.05ex;
534 text-transform: uppercase;
535 width: 100%;
536 margin-top: 0.5em;
537 padding-top: 0.5em;
538 font-size: 1.75em;
539 margin-left: 0;
540 text-align: center;
541 text-shadow: none;
542 word-wrap: break-word;
543}
544
545.title-frame .author {
546 font-family: "Fira Sans Condensed", sans-serif;
547 font-weight: 400;
548 color: #657b83;
549 margin-top: 10vh;
550}
551
552.title-frame .place {
553 font-family: "Fira Sans Condensed", sans-serif;
554 margin-top: 40px;
555 font-weight: 400;
556 color: #657b83;
557}
558
559.title-frame h2 {
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200560 margin-top: -3px;
Marc Kupietzdf0eda92023-10-07 20:50:00 +0200561 margin-bottom: 1em;
562 padding-bottom: 0.5em;
563 font-size: 1em;
Marc Kupietz0a3c2e52023-10-08 20:20:43 +0200564}
565
566/*********************************************
567 * TABLES
568 *********************************************/
569th {
570 color: #f6a800;
571}
572
573table {
574 font-family: "Fira Sans Condensed", sans-serif;
575 font-weight: 400;
576 font-size: 16px;
577}
578
579.reveal table.dataTable {
580 border: #aaaaaa 1px solid;
581 border-collapse: collapse;
582}
583
584.reveal table.dataTable td {
585 border: #aaaaaa 1px solid;
586 border-collapse: collapse;
587}
588
589.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 {
590 display: none;
591}
592
593.caption {
594 font-family: "Fira Sans Condensed", sans-serif;
595 font-weight: 400;
596 font-size: 16px;
597 text-align: center;
598}
599
600/*
601table.display td { white-space: nowrap; }
602*/
603.dt-buttons, .dataTables_filter {
604 margin-top: 10pt;
605}
606
607/*********************************************
608 * BIBLIOGRAPHY
609 *********************************************/
610.reveal .references {
611 font-family: "Fira Sans Condensed", sans-serif;
612 font-size: 16px;
613 text-align: left;
614 margin-top: 35px;
615 max-height: 540px;
616 font-weight: 400;
617 color: #253b43;
618 overflow-y: auto;
619}
620
621.hanging-indent > .csl-entry {
622 padding-left: 22px;
623 text-indent: -22px;
624}
625
626.csl-entry::first-line {
627 color: #253b43;
628}
629
630.csl-entry {
631 color: #888888;
632}
633
634/* Add line break after authors and year*/
635.csl-entry :first-child::before {
636 content: "\a";
637 white-space: pre;
Marc Kupietza737b1b2023-10-07 09:32:20 +0200638}