blob: 60d20bf842092e7126ec16b27bc794ace0c37396 [file] [log] [blame]
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02001/**
Marc Kupietz09b75752023-10-07 09:32:19 +02002 * Dracula Dark theme for reveal.js.
3 * Based on https://draculatheme.com
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02004 */
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02005/**
Marc Kupietz09b75752023-10-07 09:32:19 +02006 * Dracula colors by Zeno Rocha
7 * https://draculatheme.com/contribute
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +02008 */
9html * {
10 color-profile: sRGB;
11 rendering-intent: auto;
12}
13
14section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
Marc Kupietz09b75752023-10-07 09:32:19 +020015 color: #282A36;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020016}
17
18/*********************************************
19 * GLOBAL STYLES
20 *********************************************/
21:root {
Marc Kupietz09b75752023-10-07 09:32:19 +020022 --r-background-color: #282A36;
23 --r-main-font: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020024 --r-main-font-size: 40px;
Marc Kupietz09b75752023-10-07 09:32:19 +020025 --r-main-color: #F8F8F2;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020026 --r-block-margin: 20px;
27 --r-heading-margin: 0 0 20px 0;
28 --r-heading-font: League Gothic, Impact, sans-serif;
Marc Kupietz09b75752023-10-07 09:32:19 +020029 --r-heading-color: #BD93F9;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020030 --r-heading-line-height: 1.2;
31 --r-heading-letter-spacing: normal;
Marc Kupietz09b75752023-10-07 09:32:19 +020032 --r-heading-text-transform: none;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020033 --r-heading-text-shadow: none;
34 --r-heading-font-weight: normal;
35 --r-heading1-text-shadow: none;
36 --r-heading1-size: 3.77em;
37 --r-heading2-size: 2.11em;
38 --r-heading3-size: 1.55em;
39 --r-heading4-size: 1em;
Marc Kupietz09b75752023-10-07 09:32:19 +020040 --r-code-font: Fira Code, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
41 --r-link-color: #FF79C6;
42 --r-link-color-dark: #ff2da5;
43 --r-link-color-hover: #8BE9FD;
44 --r-selection-background-color: #44475A;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020045 --r-selection-color: #fff;
Marc Kupietz9c036a42024-05-14 13:17:25 +020046 --r-overlay-element-bg-color: 240, 240, 240;
47 --r-overlay-element-fg-color: 0, 0, 0;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020048}
49
50.reveal-viewport {
Marc Kupietz09b75752023-10-07 09:32:19 +020051 background: #282A36;
Christophe Dervieuxe1893ae2021-10-07 17:09:02 +020052 background-color: var(--r-background-color);
53}
54
55.reveal {
56 font-family: var(--r-main-font);
57 font-size: var(--r-main-font-size);
58 font-weight: normal;
59 color: var(--r-main-color);
60}
61
62.reveal ::selection {
63 color: var(--r-selection-color);
64 background: var(--r-selection-background-color);
65 text-shadow: none;
66}
67
68.reveal ::-moz-selection {
69 color: var(--r-selection-color);
70 background: var(--r-selection-background-color);
71 text-shadow: none;
72}
73
74.reveal .slides section,
75.reveal .slides section > section {
76 line-height: 1.3;
77 font-weight: inherit;
78}
79
80/*********************************************
81 * HEADERS
82 *********************************************/
83.reveal h1,
84.reveal h2,
85.reveal h3,
86.reveal h4,
87.reveal h5,
88.reveal h6 {
89 margin: var(--r-heading-margin);
90 color: var(--r-heading-color);
91 font-family: var(--r-heading-font);
92 font-weight: var(--r-heading-font-weight);
93 line-height: var(--r-heading-line-height);
94 letter-spacing: var(--r-heading-letter-spacing);
95 text-transform: var(--r-heading-text-transform);
96 text-shadow: var(--r-heading-text-shadow);
97 word-wrap: break-word;
98}
99
100.reveal h1 {
101 font-size: var(--r-heading1-size);
102}
103
104.reveal h2 {
105 font-size: var(--r-heading2-size);
106}
107
108.reveal h3 {
109 font-size: var(--r-heading3-size);
110}
111
112.reveal h4 {
113 font-size: var(--r-heading4-size);
114}
115
116.reveal h1 {
117 text-shadow: var(--r-heading1-text-shadow);
118}
119
120/*********************************************
121 * OTHER
122 *********************************************/
123.reveal p {
124 margin: var(--r-block-margin) 0;
125 line-height: 1.3;
126}
127
128/* Remove trailing margins after titles */
129.reveal h1:last-child,
130.reveal h2:last-child,
131.reveal h3:last-child,
132.reveal h4:last-child,
133.reveal h5:last-child,
134.reveal h6:last-child {
135 margin-bottom: 0;
136}
137
138/* Ensure certain elements are never larger than the slide itself */
139.reveal img,
140.reveal video,
141.reveal iframe {
142 max-width: 95%;
143 max-height: 95%;
144}
145
146.reveal strong,
147.reveal b {
148 font-weight: bold;
149}
150
151.reveal em {
152 font-style: italic;
153}
154
155.reveal ol,
156.reveal dl,
157.reveal ul {
158 display: inline-block;
159 text-align: left;
160 margin: 0 0 0 1em;
161}
162
163.reveal ol {
164 list-style-type: decimal;
165}
166
167.reveal ul {
168 list-style-type: disc;
169}
170
171.reveal ul ul {
172 list-style-type: square;
173}
174
175.reveal ul ul ul {
176 list-style-type: circle;
177}
178
179.reveal ul ul,
180.reveal ul ol,
181.reveal ol ol,
182.reveal ol ul {
183 display: block;
184 margin-left: 40px;
185}
186
187.reveal dt {
188 font-weight: bold;
189}
190
191.reveal dd {
192 margin-left: 40px;
193}
194
195.reveal blockquote {
196 display: block;
197 position: relative;
198 width: 70%;
199 margin: var(--r-block-margin) auto;
200 padding: 5px;
201 font-style: italic;
202 background: rgba(255, 255, 255, 0.05);
203 box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
204}
205
206.reveal blockquote p:first-child,
207.reveal blockquote p:last-child {
208 display: inline-block;
209}
210
211.reveal q {
212 font-style: italic;
213}
214
215.reveal pre {
216 display: block;
217 position: relative;
218 width: 90%;
219 margin: var(--r-block-margin) auto;
220 text-align: left;
221 font-size: 0.55em;
222 font-family: var(--r-code-font);
223 line-height: 1.2em;
224 word-wrap: break-word;
225 box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
226}
227
228.reveal code {
229 font-family: var(--r-code-font);
230 text-transform: none;
231 tab-size: 2;
232}
233
234.reveal pre code {
235 display: block;
236 padding: 5px;
237 overflow: auto;
238 max-height: 400px;
239 word-wrap: normal;
240}
241
242.reveal .code-wrapper {
243 white-space: normal;
244}
245
246.reveal .code-wrapper code {
247 white-space: pre;
248}
249
250.reveal table {
251 margin: auto;
252 border-collapse: collapse;
253 border-spacing: 0;
254}
255
256.reveal table th {
257 font-weight: bold;
258}
259
260.reveal table th,
261.reveal table td {
262 text-align: left;
263 padding: 0.2em 0.5em 0.2em 0.5em;
264 border-bottom: 1px solid;
265}
266
267.reveal table th[align=center],
268.reveal table td[align=center] {
269 text-align: center;
270}
271
272.reveal table th[align=right],
273.reveal table td[align=right] {
274 text-align: right;
275}
276
277.reveal table tbody tr:last-child th,
278.reveal table tbody tr:last-child td {
279 border-bottom: none;
280}
281
282.reveal sup {
283 vertical-align: super;
284 font-size: smaller;
285}
286
287.reveal sub {
288 vertical-align: sub;
289 font-size: smaller;
290}
291
292.reveal small {
293 display: inline-block;
294 font-size: 0.6em;
295 line-height: 1.2em;
296 vertical-align: top;
297}
298
299.reveal small * {
300 vertical-align: top;
301}
302
303.reveal img {
304 margin: var(--r-block-margin) 0;
305}
306
307/*********************************************
308 * LINKS
309 *********************************************/
310.reveal a {
311 color: var(--r-link-color);
312 text-decoration: none;
313 transition: color 0.15s ease;
314}
315
316.reveal a:hover {
317 color: var(--r-link-color-hover);
318 text-shadow: none;
319 border: none;
320}
321
322.reveal .roll span:after {
323 color: #fff;
324 background: var(--r-link-color-dark);
325}
326
327/*********************************************
328 * Frame helper
329 *********************************************/
330.reveal .r-frame {
331 border: 4px solid var(--r-main-color);
332 box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
333}
334
335.reveal a .r-frame {
336 transition: all 0.15s linear;
337}
338
339.reveal a:hover .r-frame {
340 border-color: var(--r-link-color);
341 box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
342}
343
344/*********************************************
345 * NAVIGATION CONTROLS
346 *********************************************/
347.reveal .controls {
348 color: var(--r-link-color);
349}
350
351/*********************************************
352 * PROGRESS BAR
353 *********************************************/
354.reveal .progress {
355 background: rgba(0, 0, 0, 0.2);
356 color: var(--r-link-color);
357}
358
359/*********************************************
360 * PRINT BACKGROUND
361 *********************************************/
362@media print {
363 .backgrounds {
364 background-color: var(--r-background-color);
365 }
366}
Marc Kupietz09b75752023-10-07 09:32:19 +0200367:root {
368 --r-bold-color: #FFB86C;
369 --r-italic-color: #F1FA8C;
370 --r-inline-code-color: #50FA7B;
371 --r-list-bullet-color: #8BE9FD;
372}
373
374.reveal strong, .reveal b {
375 color: var(--r-bold-color);
376}
377.reveal em, .reveal i, .reveal blockquote {
378 color: var(--r-italic-color);
379}
380.reveal code {
381 color: var(--r-inline-code-color);
382}
383.reveal ul li::marker, .reveal ol li::marker {
384 color: var(--r-list-bullet-color);
385}