| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 1 | /** |
| 2 | * IDS theme for reveal.js |
| 3 | * |
| 4 | * By Marc Kupietz |
| 5 | */ |
| 6 | @import url("https://code.cdn.mozilla.net/fonts/fira.css"); |
| Marc Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 7 | @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 Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 8 | @import url("https://korap.ids-mannheim.de/font/libertinus.css"); |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 9 | |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 10 | section.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 Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 24 | --r-heading-font: Fira Sans Extra Condensed, Fira Sans Condensed, Fira Sans, Helvetica, sans-serif; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 25 | --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 Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 30 | --r-heading-font-weight: 700; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 31 | --r-heading1-text-shadow: none; |
| 32 | --r-heading1-size: 2em; |
| 33 | --r-heading2-size: 1.35em; |
| Marc Kupietz | dc994e2 | 2023-10-07 18:50:18 +0200 | [diff] [blame] | 34 | --r-heading3-size: 0.9em; |
| 35 | --r-heading4-size: 0.7em; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 36 | --r-code-font: monospace; |
| 37 | --r-link-color: #2a76dd; |
| 38 | --r-link-color-dark: #1a53a1; |
| 39 | --r-link-color-hover: #6ca0e8; |
| 40 | --r-selection-background-color: #98bdef; |
| 41 | --r-selection-color: #fff; |
| Marc Kupietz | 9c036a4 | 2024-05-14 13:17:25 +0200 | [diff] [blame] | 42 | --r-overlay-element-bg-color: 240, 240, 240; |
| 43 | --r-overlay-element-fg-color: 0, 0, 0; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 44 | } |
| 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 Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 71 | .reveal .slides section>section { |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 72 | 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 Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 234 | max-height: 540px; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 235 | 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 Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 363 | |
| Marc Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 364 | .reveal .slides section:not(.stack) { |
| 365 | box-sizing: border-box !important; |
| 366 | padding-left: calc(calc(var(--slide-height) * 0.05) + 24px) !important; |
| 367 | padding-right: calc(calc(var(--slide-height) * 0.05) + 24px) !important; |
| 368 | } |
| 369 | |
| 370 | .reveal .slides section:not(.stack):not(.title-frame) { |
| 371 | text-align: left !important; |
| 372 | } |
| 373 | |
| 374 | .reveal .slides section:not(.title-frame) ul, |
| 375 | .reveal .slides section:not(.title-frame) ol { |
| 376 | display: block !important; |
| 377 | text-align: left !important; |
| 378 | margin-left: 0 !important; |
| 379 | padding-left: 0.7em !important; |
| 380 | } |
| 381 | |
| 382 | .reveal .slides section:not(.title-frame) pre { |
| 383 | width: auto !important; |
| 384 | margin-left: 0 !important; |
| 385 | margin-right: 0 !important; |
| 386 | } |
| 387 | |
| 388 | .reveal .slides { |
| 389 | background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/IDS-Logo-2019.svg"); |
| 390 | background-repeat: no-repeat; |
| 391 | background-position: top 10px right 8px; |
| 392 | background-size: calc(var(--slide-height) * 0.25) auto; |
| 393 | } |
| 394 | |
| 395 | .reveal .slides section:not(.title-frame) > h1:first-child, |
| 396 | .reveal .slides section:not(.title-frame) > h2:first-child { |
| 397 | position: relative !important; |
| 398 | display: block !important; |
| 399 | text-align: left !important; |
| 400 | margin: 0 calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) 8px calc(-1 * calc(calc(var(--slide-height) * 0.05) + 24px)) !important; |
| 401 | padding: 0 0 0 calc(calc(var(--slide-height) * 0.05) + 24px) !important; |
| 402 | font-weight: var(--r-heading-font-weight) !important; |
| 403 | } |
| 404 | |
| 405 | .reveal .slides section:not(.title-frame) > h1:first-child::before, |
| 406 | .reveal .slides section:not(.title-frame) > h2:first-child::before, |
| 407 | .reveal .slides section:not(.title-frame) > h2:first-child + h3::before { |
| 408 | content: "" !important; |
| 409 | position: absolute !important; |
| 410 | width: calc(var(--slide-height) * 0.05) !important; |
| 411 | background: #f6a800 !important; |
| 412 | } |
| 413 | |
| 414 | .reveal .slides section:not(.title-frame) > h1:first-child::before, |
| 415 | .reveal .slides section:not(.title-frame) > h2:first-child::before { |
| 416 | top: 0 !important; |
| 417 | left: calc(-1 * var(--ids-band-left, 0px)) !important; |
| 418 | height: 100% !important; |
| 419 | } |
| 420 | |
| 421 | .reveal .slides section:not(.title-frame) > h1:first-child:not(:has(+ h3)), |
| 422 | .reveal .slides section:not(.title-frame) > h2:first-child:not(:has(+ h3)) { |
| 423 | margin-bottom: calc(8px + 45.36px + 20px) !important; |
| 424 | } |
| 425 | |
| 426 | .reveal .slides section:not(.title-frame) > h1:first-child:not(:has(+ h3))::before, |
| 427 | .reveal .slides section:not(.title-frame) > h2:first-child:not(:has(+ h3))::before { |
| 428 | height: calc(100% + 8px + 45.36px) !important; |
| 429 | } |
| 430 | |
| 431 | .reveal .slides section:not(.title-frame) > h2:first-child + h3 { |
| 432 | position: relative !important; |
| 433 | text-align: left !important; |
| 434 | margin-top: 0 !important; |
| 435 | margin-left: 0 !important; |
| 436 | margin-bottom: 20px !important; |
| 437 | } |
| 438 | |
| 439 | .reveal .slides section:not(.title-frame) > h2:first-child + h3::before { |
| 440 | top: calc(-1 * (8px + 2px)) !important; |
| 441 | left: calc(-1 * (calc(calc(var(--slide-height) * 0.05) + 24px) + var(--ids-band-left, 0px))) !important; |
| 442 | height: calc(100% + 8px + 2px) !important; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 443 | } |
| 444 | |
| Marc Kupietz | 55c9cef | 2026-08-08 16:03:06 +0200 | [diff] [blame^] | 445 | .reveal .slides section.level1:not(.title-frame) { |
| 446 | height: 100% !important; |
| 447 | display: flex !important; |
| 448 | flex-direction: column !important; |
| 449 | justify-content: center !important; |
| 450 | } |
| 451 | |
| 452 | .reveal .slides section.level1:not(.title-frame)::before { |
| 453 | content: "" !important; |
| 454 | position: absolute !important; |
| 455 | top: 0 !important; |
| 456 | left: calc(-1 * var(--ids-band-left, 0px)) !important; |
| 457 | width: calc(var(--slide-height) * 0.05) !important; |
| 458 | height: 121.4px !important; |
| 459 | background: #f6a800 !important; |
| 460 | } |
| 461 | |
| 462 | .reveal .slides section.level1:not(.title-frame) > h1:first-child { |
| 463 | text-align: center !important; |
| 464 | margin: 0 !important; |
| 465 | padding: 0 !important; |
| 466 | } |
| 467 | |
| 468 | .reveal .slides section.level1:not(.title-frame) > h1:first-child::before { |
| 469 | content: none !important; |
| 470 | } |
| 471 | |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 472 | :root { |
| 473 | --r-bold-color: #f6a800; |
| 474 | --r-list-bullet-color: #f6a800; |
| 475 | } |
| 476 | |
| 477 | .reveal strong, .reveal b { |
| 478 | color: var(--r-bold-color); |
| 479 | } |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 480 | |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 481 | .reveal ul li::marker, .reveal ol li::marker { |
| 482 | color: var(--r-list-bullet-color) !important; |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | /********************************************* |
| 486 | * FOOTER |
| 487 | *********************************************/ |
| Marc Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 488 | #ids-footer:not(title-slide) { |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 489 | opacity: 1; |
| 490 | background: white; |
| 491 | color: #444444; |
| 492 | border-top: dotted orange 2px; |
| 493 | transition: opacity 800ms ease-in-out; |
| 494 | position: fixed; |
| 495 | height: 6%; |
| 496 | line-height: 6%; |
| 497 | z-index: -20; |
| 498 | width: 100%; |
| 499 | letter-spacing: 0em; |
| 500 | text-align: center; |
| 501 | display: table; |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | #ids-footer span { |
| 505 | height: 100%; |
| 506 | line-height: 100%; |
| 507 | z-index: -20; |
| Marc Kupietz | 5a45790 | 2024-05-14 22:11:43 +0200 | [diff] [blame] | 508 | font-size: 1.8vh; |
| Marc Kupietz | df0eda9 | 2023-10-07 20:50:00 +0200 | [diff] [blame] | 509 | font-family: "Fira Sans Condensed", "Fira Sans", "Roboto Condensed", "League Gothic", Impact, sans-serif; |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 510 | display: inline-block; |
| 511 | display: table-cell; |
| 512 | vertical-align: middle; |
| 513 | } |
| 514 | |
| 515 | /* Bottom position for the IDS-Footer footer when both progress bar and TOC-Progress are visible */ |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 516 | div.progress[style="display: block;"]~#ids-footer { |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 517 | bottom: calc(3px + 0vh); |
| 518 | } |
| 519 | |
| 520 | /* Bottom position for the IDS-Footer footer when TOC-Progress is visible */ |
| 521 | #ids-footer { |
| 522 | bottom: 3px; |
| 523 | } |
| 524 | |
| 525 | #ids-footer a { |
| 526 | color: #555555; |
| 527 | } |
| 528 | |
| 529 | /* Bottom position for the IDS-Footer footer when progress bar is visible */ |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 530 | div.progress[style="display: block;"]~footer:last-of-type#ids-footer { |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 531 | bottom: 3px; |
| 532 | } |
| 533 | |
| 534 | /* Bottom position for the IDS-Footer footer when neither progress bar nor TOC-Progress are visible */ |
| 535 | footer:last-of-type#ids-footer { |
| 536 | bottom: 0px; |
| 537 | } |
| 538 | |
| 539 | /* Make IDS-Footer invisible if explicitly indicated */ |
| 540 | .no-ids-footer #ids-footer { |
| 541 | opacity: 0; |
| 542 | transition: opacity 800ms ease-in-out; |
| 543 | } |
| 544 | |
| 545 | .title-frame #ids-footer { |
| 546 | opacity: 0; |
| 547 | transition: opacity 800ms ease-in-out; |
| 548 | } |
| 549 | |
| 550 | .no-toc-progress #ids-footer { |
| 551 | opacity: 0; |
| 552 | transition: opacity 800ms ease-in-out; |
| 553 | } |
| 554 | |
| 555 | /* Make IDS-Footer invisible in overview mode */ |
| 556 | .overview #ids-footer { |
| 557 | opacity: 0; |
| 558 | transition: opacity 800ms ease-in-out; |
| 559 | } |
| 560 | |
| Marc Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 561 | .reveal .slides section.title-frame { |
| 562 | background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/Mitglied_WGL_transparent.svg"); |
| Marc Kupietz | f0ce032 | 2023-10-07 15:33:47 +0200 | [diff] [blame] | 563 | background-repeat: no-repeat; |
| Marc Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 564 | background-position: right 15px bottom 5px; |
| 565 | background-size: calc(var(--slide-height) * 0.07) auto; |
| Marc Kupietz | f0ce032 | 2023-10-07 15:33:47 +0200 | [diff] [blame] | 566 | } |
| 567 | |
| Marc Kupietz | 5a45790 | 2024-05-14 22:11:43 +0200 | [diff] [blame] | 568 | @media only screen { |
| Marc Kupietz | a0f8f68 | 2026-08-08 14:13:11 +0200 | [diff] [blame] | 569 | .reveal .slides section.title-frame { |
| 570 | background-position: right 45px bottom 5px; |
| Marc Kupietz | 5a45790 | 2024-05-14 22:11:43 +0200 | [diff] [blame] | 571 | } |
| 572 | } |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 573 | |
| Marc Kupietz | f0ce032 | 2023-10-07 15:33:47 +0200 | [diff] [blame] | 574 | .slide-menu-items, .slide-menu-toolbar { |
| 575 | font-family: "Fira Sans" !important; |
| 576 | } |
| 577 | |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 578 | /* |
| 579 | * Menu controls |
| 580 | */ |
| 581 | body .reveal .slide-menu-button { |
| 582 | color: #aaaaaa !important; |
| 583 | position: fixed; |
| 584 | left: 30px; |
| 585 | bottom: 2%; |
| 586 | vertical-align: middle; |
| 587 | z-index: 30; |
| 588 | font-size: 2vh; |
| 589 | } |
| 590 | |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 591 | #customcontrols>ul { |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 592 | color: #aaaaaa !important; |
| 593 | position: fixed; |
| Marc Kupietz | f51e915 | 2023-10-07 15:32:33 +0200 | [diff] [blame] | 594 | left: 50px; |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 595 | bottom: 2% !important; |
| 596 | vertical-align: middle; |
| 597 | z-index: 30; |
| 598 | font-size: 2vh; |
| 599 | } |
| 600 | |
| 601 | @media only screen and (min-width: 500px) { |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 602 | #customcontrols>ul { |
| Marc Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame] | 603 | bottom: 2% !important; |
| 604 | } |
| Marc Kupietz | df0eda9 | 2023-10-07 20:50:00 +0200 | [diff] [blame] | 605 | } |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 606 | |
| Marc Kupietz | c7249f9 | 2023-10-10 07:16:50 +0200 | [diff] [blame] | 607 | .reveal .controls .controls-arrow { |
| 608 | position: relative; |
| 609 | width: 3.6em; |
| 610 | height: 3.6em; |
| 611 | bottom: -12px; |
| 612 | right: -4px; |
| 613 | } |
| 614 | |
| Marc Kupietz | df0eda9 | 2023-10-07 20:50:00 +0200 | [diff] [blame] | 615 | .reveal h3, h4, h5, h6 { |
| 616 | text-transform: none !important; |
| 617 | } |
| 618 | |
| 619 | .reveal h3, h4, h5, h6 { |
| 620 | text-transform: none !important; |
| 621 | } |
| 622 | |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 623 | .reveal h2+h3 { |
| Marc Kupietz | df0eda9 | 2023-10-07 20:50:00 +0200 | [diff] [blame] | 624 | margin-top: -0.5em !important; |
| 625 | } |
| 626 | |
| 627 | .title-frame h1, |
| 628 | .title-frame h2 { |
| 629 | margin: 0 0 0 0; |
| Marc Kupietz | 9c036a4 | 2024-05-14 13:17:25 +0200 | [diff] [blame] | 630 | background: rgb(246, 168, 0); |
| Marc Kupietz | df0eda9 | 2023-10-07 20:50:00 +0200 | [diff] [blame] | 631 | color: white; |
| 632 | font-family: "Fira Sans Condensed", "Roboto Condensed", Impact, sans-serif; |
| 633 | font-weight: 600; |
| 634 | line-height: 1.2; |
| 635 | letter-spacing: 0.05ex; |
| 636 | text-transform: uppercase; |
| 637 | width: 100%; |
| 638 | margin-top: 0.5em; |
| 639 | padding-top: 0.5em; |
| 640 | font-size: 1.75em; |
| 641 | margin-left: 0; |
| 642 | text-align: center; |
| 643 | text-shadow: none; |
| 644 | word-wrap: break-word; |
| 645 | } |
| 646 | |
| 647 | .title-frame .author { |
| 648 | font-family: "Fira Sans Condensed", sans-serif; |
| 649 | font-weight: 400; |
| 650 | color: #657b83; |
| 651 | margin-top: 10vh; |
| 652 | } |
| 653 | |
| 654 | .title-frame .place { |
| 655 | font-family: "Fira Sans Condensed", sans-serif; |
| 656 | margin-top: 40px; |
| 657 | font-weight: 400; |
| 658 | color: #657b83; |
| 659 | } |
| 660 | |
| 661 | .title-frame h2 { |
| Marc Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 662 | margin-top: -3px; |
| Marc Kupietz | df0eda9 | 2023-10-07 20:50:00 +0200 | [diff] [blame] | 663 | margin-bottom: 1em; |
| 664 | padding-bottom: 0.5em; |
| 665 | font-size: 1em; |
| Marc Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | /********************************************* |
| 669 | * TABLES |
| 670 | *********************************************/ |
| 671 | th { |
| Marc Kupietz | 9c036a4 | 2024-05-14 13:17:25 +0200 | [diff] [blame] | 672 | color: rgb(246, 168, 0); |
| Marc Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | table { |
| 676 | font-family: "Fira Sans Condensed", sans-serif; |
| 677 | font-weight: 400; |
| 678 | font-size: 16px; |
| 679 | } |
| 680 | |
| 681 | .reveal table.dataTable { |
| 682 | border: #aaaaaa 1px solid; |
| 683 | border-collapse: collapse; |
| 684 | } |
| 685 | |
| 686 | .reveal table.dataTable td { |
| 687 | border: #aaaaaa 1px solid; |
| 688 | border-collapse: collapse; |
| 689 | } |
| 690 | |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 691 | .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 Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 692 | display: none; |
| 693 | } |
| 694 | |
| 695 | .caption { |
| 696 | font-family: "Fira Sans Condensed", sans-serif; |
| 697 | font-weight: 400; |
| 698 | font-size: 16px; |
| 699 | text-align: center; |
| 700 | } |
| 701 | |
| 702 | /* |
| 703 | table.display td { white-space: nowrap; } |
| 704 | */ |
| 705 | .dt-buttons, .dataTables_filter { |
| 706 | margin-top: 10pt; |
| 707 | } |
| 708 | |
| Marc Kupietz | 069f1e4 | 2023-10-11 10:26:16 +0200 | [diff] [blame] | 709 | /* Sort Arrows in DataTables */ |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 710 | 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 Kupietz | 069f1e4 | 2023-10-11 10:26:16 +0200 | [diff] [blame] | 711 | right: 0 !important; |
| 712 | line-height: 80% !important; |
| 713 | } |
| 714 | |
| Marc Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 715 | /********************************************* |
| 716 | * BIBLIOGRAPHY |
| 717 | *********************************************/ |
| 718 | .reveal .references { |
| 719 | font-family: "Fira Sans Condensed", sans-serif; |
| 720 | font-size: 16px; |
| 721 | text-align: left; |
| 722 | margin-top: 35px; |
| 723 | max-height: 540px; |
| 724 | font-weight: 400; |
| 725 | color: #253b43; |
| 726 | overflow-y: auto; |
| 727 | } |
| 728 | |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 729 | .hanging-indent>.csl-entry { |
| Marc Kupietz | 0a3c2e5 | 2023-10-08 20:20:43 +0200 | [diff] [blame] | 730 | padding-left: 22px; |
| 731 | text-indent: -22px; |
| 732 | } |
| 733 | |
| 734 | .csl-entry::first-line { |
| 735 | color: #253b43; |
| 736 | } |
| 737 | |
| 738 | .csl-entry { |
| 739 | color: #888888; |
| 740 | } |
| 741 | |
| 742 | /* Add line break after authors and year*/ |
| 743 | .csl-entry :first-child::before { |
| 744 | content: "\a"; |
| 745 | white-space: pre; |
| Marc Kupietz | 1179716 | 2023-10-09 23:17:36 +0200 | [diff] [blame] | 746 | } |
| 747 | |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 748 | .reveal code.sourceCode:last-child+pre { |
| Marc Kupietz | 1179716 | 2023-10-09 23:17:36 +0200 | [diff] [blame] | 749 | height: 800px !important; |
| Marc Kupietz | 589d1b8 | 2023-10-10 12:31:33 +0200 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | /********************************************* |
| 753 | * ARROWS and SLIDE NUMBERS |
| 754 | *********************************************/ |
| 755 | .reveal .controls .controls-arrow:after, .reveal .controls .controls-arrow:before { |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 756 | width: 13px !important; |
| 757 | /* size */ |
| 758 | height: 4px; |
| 759 | /* line width */ |
| Marc Kupietz | 589d1b8 | 2023-10-10 12:31:33 +0200 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | .reveal .controls { |
| 763 | display: none; |
| 764 | position: absolute; |
| 765 | top: auto; |
| 766 | bottom: -8px; |
| 767 | right: 16px; |
| 768 | left: auto; |
| 769 | z-index: 11; |
| 770 | /* color: #000;*/ |
| 771 | pointer-events: none; |
| 772 | font-size: 8px; |
| 773 | } |
| 774 | |
| 775 | .reveal .controls .controls-arrow { |
| 776 | position: relative; |
| 777 | height: 3.6em; |
| Marc Kupietz | 026356a | 2025-09-02 11:49:58 +0200 | [diff] [blame] | 778 | width: 1.2em; |
| 779 | /* distance betwee arrows */ |
| Marc Kupietz | 589d1b8 | 2023-10-10 12:31:33 +0200 | [diff] [blame] | 780 | bottom: 0; |
| 781 | right: 0; |
| 782 | } |
| 783 | |
| 784 | .reveal div.slide-number { |
| 785 | text-align: center; |
| 786 | width: 2em; |
| 787 | position: absolute; |
| 788 | display: block; |
| 789 | right: 29px; |
| 790 | bottom: 22px; |
| 791 | z-index: 31; |
| 792 | font-family: "Fira Sans Condensed", sans-serif; |
| 793 | font-size: 18px; |
| 794 | line-height: 1; |
| 795 | background-color: white; |
| 796 | color: #666; |
| 797 | padding: 0; |
| Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 798 | } |