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"); |
| 7 | @import url("https://korap.ids-mannheim.de/font/fira-condensed.css"); |
| 8 | @import url("https://korap.ids-mannheim.de/font/libertinus.css"); |
| 9 | 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 { |
| 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; |
| 23 | --r-heading-font: Fira Sans Extra Condensed, Fira Sans, Helvetica, sans-serif; |
| 24 | --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; |
| 33 | --r-heading3-size: 1.1em; |
| 34 | --r-heading4-size: 1em; |
| 35 | --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 | } |
| 360 | body { |
| 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 Kupietz | 7c8f7de | 2023-10-07 11:42:29 +0200 | [diff] [blame^] | 377 | } |
| 378 | |
| 379 | /********************************************* |
| 380 | * FOOTER |
| 381 | *********************************************/ |
| 382 | #ids-footer { |
| 383 | 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; |
| 396 | background-image: url("https://corpora.ids-mannheim.de/slides/reveal.js.ids/images/Mitglied_WGL_transparent.svg"); |
| 397 | background-repeat: no-repeat; |
| 398 | background-position: right 20px center; |
| 399 | background-size: 6vH auto; |
| 400 | } |
| 401 | |
| 402 | #ids-footer span { |
| 403 | height: 100%; |
| 404 | line-height: 100%; |
| 405 | z-index: -20; |
| 406 | font-size: 2vh; |
| 407 | font-family: "Fira Sans Extra Condensed", "Univers LT Std 47 Cn Lt", "Roboto Condensed", "League Gothic", Impact, sans-serif; |
| 408 | display: inline-block; |
| 409 | display: table-cell; |
| 410 | vertical-align: middle; |
| 411 | } |
| 412 | |
| 413 | /* Bottom position for the IDS-Footer footer when both progress bar and TOC-Progress are visible */ |
| 414 | div.progress[style="display: block;"] ~ #ids-footer { |
| 415 | bottom: calc(3px + 0vh); |
| 416 | } |
| 417 | |
| 418 | /* Bottom position for the IDS-Footer footer when TOC-Progress is visible */ |
| 419 | #ids-footer { |
| 420 | bottom: 3px; |
| 421 | } |
| 422 | |
| 423 | #ids-footer a { |
| 424 | color: #555555; |
| 425 | } |
| 426 | |
| 427 | /* Bottom position for the IDS-Footer footer when progress bar is visible */ |
| 428 | div.progress[style="display: block;"] ~ footer:last-of-type#ids-footer { |
| 429 | bottom: 3px; |
| 430 | } |
| 431 | |
| 432 | /* Bottom position for the IDS-Footer footer when neither progress bar nor TOC-Progress are visible */ |
| 433 | footer:last-of-type#ids-footer { |
| 434 | bottom: 0px; |
| 435 | } |
| 436 | |
| 437 | /* Make IDS-Footer invisible if explicitly indicated */ |
| 438 | .no-ids-footer #ids-footer { |
| 439 | opacity: 0; |
| 440 | transition: opacity 800ms ease-in-out; |
| 441 | } |
| 442 | |
| 443 | .title-frame #ids-footer { |
| 444 | opacity: 0; |
| 445 | transition: opacity 800ms ease-in-out; |
| 446 | } |
| 447 | |
| 448 | .no-toc-progress #ids-footer { |
| 449 | opacity: 0; |
| 450 | transition: opacity 800ms ease-in-out; |
| 451 | } |
| 452 | |
| 453 | /* Make IDS-Footer invisible in overview mode */ |
| 454 | .overview #ids-footer { |
| 455 | opacity: 0; |
| 456 | transition: opacity 800ms ease-in-out; |
| 457 | } |
| 458 | |
| 459 | /* |
| 460 | * Menu controls |
| 461 | */ |
| 462 | body .reveal .slide-menu-button { |
| 463 | color: #aaaaaa !important; |
| 464 | position: fixed; |
| 465 | left: 30px; |
| 466 | bottom: 2%; |
| 467 | vertical-align: middle; |
| 468 | z-index: 30; |
| 469 | font-size: 2vh; |
| 470 | } |
| 471 | |
| 472 | #customcontrols > ul { |
| 473 | color: #aaaaaa !important; |
| 474 | position: fixed; |
| 475 | left: 30px; |
| 476 | bottom: 2% !important; |
| 477 | vertical-align: middle; |
| 478 | z-index: 30; |
| 479 | font-size: 2vh; |
| 480 | } |
| 481 | |
| 482 | @media only screen and (min-width: 500px) { |
| 483 | #customcontrols > ul { |
| 484 | bottom: 2% !important; |
| 485 | } |
Marc Kupietz | a737b1b | 2023-10-07 09:32:20 +0200 | [diff] [blame] | 486 | } |