├── .gitignore
├── LICENSE
├── README.md
├── css
├── reveal
│ ├── reset.css
│ ├── reveal.css
│ └── theme
│ │ ├── beige.css
│ │ ├── black-contrast.css
│ │ ├── black.css
│ │ ├── blood.css
│ │ ├── dracula.css
│ │ ├── fonts
│ │ ├── league-gothic
│ │ │ ├── LICENSE
│ │ │ ├── league-gothic.css
│ │ │ ├── league-gothic.eot
│ │ │ ├── league-gothic.ttf
│ │ │ └── league-gothic.woff
│ │ └── source-sans-pro
│ │ │ ├── LICENSE
│ │ │ ├── source-sans-pro-italic.eot
│ │ │ ├── source-sans-pro-italic.ttf
│ │ │ ├── source-sans-pro-italic.woff
│ │ │ ├── source-sans-pro-regular.eot
│ │ │ ├── source-sans-pro-regular.ttf
│ │ │ ├── source-sans-pro-regular.woff
│ │ │ ├── source-sans-pro-semibold.eot
│ │ │ ├── source-sans-pro-semibold.ttf
│ │ │ ├── source-sans-pro-semibold.woff
│ │ │ ├── source-sans-pro-semibolditalic.eot
│ │ │ ├── source-sans-pro-semibolditalic.ttf
│ │ │ ├── source-sans-pro-semibolditalic.woff
│ │ │ └── source-sans-pro.css
│ │ ├── league.css
│ │ ├── moon.css
│ │ ├── night.css
│ │ ├── serif.css
│ │ ├── simple.css
│ │ ├── sky.css
│ │ ├── solarized.css
│ │ ├── white-contrast.css
│ │ ├── white.css
│ │ └── white_contrast_compact_verbatim_headers.css
└── vlearn.css
├── img
├── download.svg
├── github.svg
├── movie.svg
├── new-video.svg
├── pause.svg
├── play.svg
└── stop.svg
├── index.html
├── js
├── app.js
├── dist
│ ├── ffmpeg
│ │ ├── 814.ffmpeg.js
│ │ ├── ffmpeg-core.min.js
│ │ ├── ffmpeg-core.min.wasm
│ │ ├── ffmpeg.min.js
│ │ └── util.min.js
│ ├── html2canvas
│ │ └── html2canvas.min.js
│ └── reveal
│ │ ├── reveal.js
│ │ └── reveal.js.map
└── plugin
│ ├── highlight
│ ├── highlight.esm.js
│ ├── highlight.js
│ ├── monokai.css
│ ├── plugin.js
│ └── zenburn.css
│ ├── markdown
│ ├── markdown.esm.js
│ ├── markdown.js
│ └── plugin.js
│ ├── math
│ ├── katex.js
│ ├── math.esm.js
│ ├── math.js
│ ├── mathjax2.js
│ ├── mathjax3.js
│ └── plugin.js
│ ├── notes
│ ├── notes.esm.js
│ ├── notes.js
│ ├── plugin.js
│ └── speaker-view.html
│ ├── search
│ ├── plugin.js
│ ├── search.esm.js
│ └── search.js
│ └── zoom
│ ├── plugin.js
│ ├── zoom.esm.js
│ └── zoom.js
└── robots.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | .editorconfig
2 | *.mp3
3 | .DS_Store
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Jason McGhee
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # On-Demand Education
2 |
3 | With a few words and a click of a button, quickly get an engaging, high quality video.
4 | (And optionally save and share it!)
5 |
6 | Try it here, right now! [https://vlearn.ing](https://vlearn.ing)
7 |
8 | Running it:
9 | - Clone the repo
10 | - Open `index.html` in a browser
11 |
12 | Demo:
13 |
14 |
15 |
16 |
17 |
18 | Example Video:
19 |
20 | https://github.com/jasonjmcghee/vlearn/assets/1522149/149cba89-85a1-4667-9644-c9bae52fe287
21 |
22 |
23 | The kind of thing you might find on youtube.
24 |
25 | There's a huge amount left to explore here.
26 |
27 | I really want to push this closer to **personalized education**,
28 | which might be possible through the use of another project which
29 | helps you "remember" (i.e. keep a record of) everything you see
30 | on your computer - called [rem](https://github.com/jasonjmcghee/rem).
31 | And / or other mechanisms to keep a record of all of your knowledge
32 | via an embedding space that an LLM can perform RAG on.
33 |
34 | ------------------------------------
35 |
36 | Contributions welcome!
37 |
38 | Things I'd love to add:
39 |
40 | - [ ] Local model support (mistral + XTTSv2)
41 | - [ ] Settings to choose models (3.5 / 4 / local, hd vs not)
42 | - [ ] Animations?
43 |
--------------------------------------------------------------------------------
/css/reveal/reset.css:
--------------------------------------------------------------------------------
1 | /* http://meyerweb.com/eric/tools/css/reset/
2 | v4.0 | 20180602
3 | License: none (public domain)
4 | */
5 |
6 | html, body, div, span, applet, object, iframe,
7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8 | a, abbr, acronym, address, big, cite, code,
9 | del, dfn, em, img, ins, kbd, q, s, samp,
10 | small, strike, strong, sub, sup, tt, var,
11 | b, u, i, center,
12 | dl, dt, dd, ol, ul, li,
13 | fieldset, form, label, legend,
14 | table, caption, tbody, tfoot, thead, tr, th, td,
15 | article, aside, canvas, details, embed,
16 | figure, figcaption, footer, header, hgroup,
17 | main, menu, nav, output, ruby, section, summary,
18 | time, mark, audio, video {
19 | margin: 0;
20 | padding: 0;
21 | border: 0;
22 | font-size: 100%;
23 | font: inherit;
24 | vertical-align: baseline;
25 | }
26 | /* HTML5 display-role reset for older browsers */
27 | article, aside, details, figcaption, figure,
28 | footer, header, hgroup, main, menu, nav, section {
29 | display: block;
30 | }
--------------------------------------------------------------------------------
/css/reveal/theme/beige.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Beige theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(./fonts/league-gothic/league-gothic.css);
7 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
8 | 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 {
9 | color: #fff;
10 | }
11 |
12 | /*********************************************
13 | * GLOBAL STYLES
14 | *********************************************/
15 | :root {
16 | --r-background-color: #f7f3de;
17 | --r-main-font: Lato, sans-serif;
18 | --r-main-font-size: 40px;
19 | --r-main-color: #333;
20 | --r-block-margin: 20px;
21 | --r-heading-margin: 0 0 20px 0;
22 | --r-heading-font: League Gothic, Impact, sans-serif;
23 | --r-heading-color: #333;
24 | --r-heading-line-height: 1.2;
25 | --r-heading-letter-spacing: normal;
26 | --r-heading-text-transform: uppercase;
27 | --r-heading-text-shadow: none;
28 | --r-heading-font-weight: normal;
29 | --r-heading1-text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15);
30 | --r-heading1-size: 3.77em;
31 | --r-heading2-size: 2.11em;
32 | --r-heading3-size: 1.55em;
33 | --r-heading4-size: 1em;
34 | --r-code-font: monospace;
35 | --r-link-color: #8b743d;
36 | --r-link-color-dark: #564826;
37 | --r-link-color-hover: #c0a86e;
38 | --r-selection-background-color: rgba(79, 64, 28, 0.99);
39 | --r-selection-color: #fff;
40 | }
41 |
42 | .reveal-viewport {
43 | background: #f7f2d3;
44 | background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
45 | background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));
46 | background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
47 | background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
48 | background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
49 | background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
50 | background-color: var(--r-background-color);
51 | }
52 |
53 | .reveal {
54 | font-family: var(--r-main-font);
55 | font-size: var(--r-main-font-size);
56 | font-weight: normal;
57 | color: var(--r-main-color);
58 | }
59 |
60 | .reveal ::selection {
61 | color: var(--r-selection-color);
62 | background: var(--r-selection-background-color);
63 | text-shadow: none;
64 | }
65 |
66 | .reveal ::-moz-selection {
67 | color: var(--r-selection-color);
68 | background: var(--r-selection-background-color);
69 | text-shadow: none;
70 | }
71 |
72 | .reveal .slides section,
73 | .reveal .slides section > section {
74 | line-height: 1.3;
75 | font-weight: inherit;
76 | }
77 |
78 | /*********************************************
79 | * HEADERS
80 | *********************************************/
81 | .reveal h1,
82 | .reveal h2,
83 | .reveal h3,
84 | .reveal h4,
85 | .reveal h5,
86 | .reveal h6 {
87 | margin: var(--r-heading-margin);
88 | color: var(--r-heading-color);
89 | font-family: var(--r-heading-font);
90 | font-weight: var(--r-heading-font-weight);
91 | line-height: var(--r-heading-line-height);
92 | letter-spacing: var(--r-heading-letter-spacing);
93 | text-transform: var(--r-heading-text-transform);
94 | text-shadow: var(--r-heading-text-shadow);
95 | word-wrap: break-word;
96 | }
97 |
98 | .reveal h1 {
99 | font-size: var(--r-heading1-size);
100 | }
101 |
102 | .reveal h2 {
103 | font-size: var(--r-heading2-size);
104 | }
105 |
106 | .reveal h3 {
107 | font-size: var(--r-heading3-size);
108 | }
109 |
110 | .reveal h4 {
111 | font-size: var(--r-heading4-size);
112 | }
113 |
114 | .reveal h1 {
115 | text-shadow: var(--r-heading1-text-shadow);
116 | }
117 |
118 | /*********************************************
119 | * OTHER
120 | *********************************************/
121 | .reveal p {
122 | margin: var(--r-block-margin) 0;
123 | line-height: 1.3;
124 | }
125 |
126 | /* Remove trailing margins after titles */
127 | .reveal h1:last-child,
128 | .reveal h2:last-child,
129 | .reveal h3:last-child,
130 | .reveal h4:last-child,
131 | .reveal h5:last-child,
132 | .reveal h6:last-child {
133 | margin-bottom: 0;
134 | }
135 |
136 | /* Ensure certain elements are never larger than the slide itself */
137 | .reveal img,
138 | .reveal video,
139 | .reveal iframe {
140 | max-width: 95%;
141 | max-height: 95%;
142 | }
143 |
144 | .reveal strong,
145 | .reveal b {
146 | font-weight: bold;
147 | }
148 |
149 | .reveal em {
150 | font-style: italic;
151 | }
152 |
153 | .reveal ol,
154 | .reveal dl,
155 | .reveal ul {
156 | display: inline-block;
157 | text-align: left;
158 | margin: 0 0 0 1em;
159 | }
160 |
161 | .reveal ol {
162 | list-style-type: decimal;
163 | }
164 |
165 | .reveal ul {
166 | list-style-type: disc;
167 | }
168 |
169 | .reveal ul ul {
170 | list-style-type: square;
171 | }
172 |
173 | .reveal ul ul ul {
174 | list-style-type: circle;
175 | }
176 |
177 | .reveal ul ul,
178 | .reveal ul ol,
179 | .reveal ol ol,
180 | .reveal ol ul {
181 | display: block;
182 | margin-left: 40px;
183 | }
184 |
185 | .reveal dt {
186 | font-weight: bold;
187 | }
188 |
189 | .reveal dd {
190 | margin-left: 40px;
191 | }
192 |
193 | .reveal blockquote {
194 | display: block;
195 | position: relative;
196 | width: 70%;
197 | margin: var(--r-block-margin) auto;
198 | padding: 5px;
199 | font-style: italic;
200 | background: rgba(255, 255, 255, 0.05);
201 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
202 | }
203 |
204 | .reveal blockquote p:first-child,
205 | .reveal blockquote p:last-child {
206 | display: inline-block;
207 | }
208 |
209 | .reveal q {
210 | font-style: italic;
211 | }
212 |
213 | .reveal pre {
214 | display: block;
215 | position: relative;
216 | width: 90%;
217 | margin: var(--r-block-margin) auto;
218 | text-align: left;
219 | font-size: 0.55em;
220 | font-family: var(--r-code-font);
221 | line-height: 1.2em;
222 | word-wrap: break-word;
223 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
224 | }
225 |
226 | .reveal code {
227 | font-family: var(--r-code-font);
228 | text-transform: none;
229 | tab-size: 2;
230 | }
231 |
232 | .reveal pre code {
233 | display: block;
234 | padding: 5px;
235 | overflow: auto;
236 | max-height: 400px;
237 | word-wrap: normal;
238 | }
239 |
240 | .reveal .code-wrapper {
241 | white-space: normal;
242 | }
243 |
244 | .reveal .code-wrapper code {
245 | white-space: pre;
246 | }
247 |
248 | .reveal table {
249 | margin: auto;
250 | border-collapse: collapse;
251 | border-spacing: 0;
252 | }
253 |
254 | .reveal table th {
255 | font-weight: bold;
256 | }
257 |
258 | .reveal table th,
259 | .reveal table td {
260 | text-align: left;
261 | padding: 0.2em 0.5em 0.2em 0.5em;
262 | border-bottom: 1px solid;
263 | }
264 |
265 | .reveal table th[align=center],
266 | .reveal table td[align=center] {
267 | text-align: center;
268 | }
269 |
270 | .reveal table th[align=right],
271 | .reveal table td[align=right] {
272 | text-align: right;
273 | }
274 |
275 | .reveal table tbody tr:last-child th,
276 | .reveal table tbody tr:last-child td {
277 | border-bottom: none;
278 | }
279 |
280 | .reveal sup {
281 | vertical-align: super;
282 | font-size: smaller;
283 | }
284 |
285 | .reveal sub {
286 | vertical-align: sub;
287 | font-size: smaller;
288 | }
289 |
290 | .reveal small {
291 | display: inline-block;
292 | font-size: 0.6em;
293 | line-height: 1.2em;
294 | vertical-align: top;
295 | }
296 |
297 | .reveal small * {
298 | vertical-align: top;
299 | }
300 |
301 | .reveal img {
302 | margin: var(--r-block-margin) 0;
303 | }
304 |
305 | /*********************************************
306 | * LINKS
307 | *********************************************/
308 | .reveal a {
309 | color: var(--r-link-color);
310 | text-decoration: none;
311 | transition: color 0.15s ease;
312 | }
313 |
314 | .reveal a:hover {
315 | color: var(--r-link-color-hover);
316 | text-shadow: none;
317 | border: none;
318 | }
319 |
320 | .reveal .roll span:after {
321 | color: #fff;
322 | background: var(--r-link-color-dark);
323 | }
324 |
325 | /*********************************************
326 | * Frame helper
327 | *********************************************/
328 | .reveal .r-frame {
329 | border: 4px solid var(--r-main-color);
330 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
331 | }
332 |
333 | .reveal a .r-frame {
334 | transition: all 0.15s linear;
335 | }
336 |
337 | .reveal a:hover .r-frame {
338 | border-color: var(--r-link-color);
339 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
340 | }
341 |
342 | /*********************************************
343 | * NAVIGATION CONTROLS
344 | *********************************************/
345 | .reveal .controls {
346 | color: var(--r-link-color);
347 | }
348 |
349 | /*********************************************
350 | * PROGRESS BAR
351 | *********************************************/
352 | .reveal .progress {
353 | background: rgba(0, 0, 0, 0.2);
354 | color: var(--r-link-color);
355 | }
356 |
357 | /*********************************************
358 | * PRINT BACKGROUND
359 | *********************************************/
360 | @media print {
361 | .backgrounds {
362 | background-color: var(--r-background-color);
363 | }
364 | }
--------------------------------------------------------------------------------
/css/reveal/theme/black-contrast.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Black compact & high contrast reveal.js theme, with headers not in capitals.
3 | *
4 | * By Peter Kehl. Based on black.(s)css by Hakim El Hattab, http://hakim.se
5 | *
6 | * - Keep the source similar to black.css - for easy comparison.
7 | * - $mainFontSize controls code blocks, too (although under some ratio).
8 | */
9 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
10 | section.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 {
11 | color: #000;
12 | }
13 |
14 | /*********************************************
15 | * GLOBAL STYLES
16 | *********************************************/
17 | :root {
18 | --r-background-color: #000000;
19 | --r-main-font: Source Sans Pro, Helvetica, sans-serif;
20 | --r-main-font-size: 42px;
21 | --r-main-color: #fff;
22 | --r-block-margin: 20px;
23 | --r-heading-margin: 0 0 20px 0;
24 | --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
25 | --r-heading-color: #fff;
26 | --r-heading-line-height: 1.2;
27 | --r-heading-letter-spacing: normal;
28 | --r-heading-text-transform: uppercase;
29 | --r-heading-text-shadow: none;
30 | --r-heading-font-weight: 600;
31 | --r-heading1-text-shadow: none;
32 | --r-heading1-size: 2.5em;
33 | --r-heading2-size: 1.6em;
34 | --r-heading3-size: 1.3em;
35 | --r-heading4-size: 1em;
36 | --r-code-font: monospace;
37 | --r-link-color: #42affa;
38 | --r-link-color-dark: #068de9;
39 | --r-link-color-hover: #8dcffc;
40 | --r-selection-background-color: #bee4fd;
41 | --r-selection-color: #fff;
42 | }
43 |
44 | .reveal-viewport {
45 | background: #000000;
46 | background-color: var(--r-background-color);
47 | }
48 |
49 | .reveal {
50 | font-family: var(--r-main-font);
51 | font-size: var(--r-main-font-size);
52 | font-weight: normal;
53 | color: var(--r-main-color);
54 | }
55 |
56 | .reveal ::selection {
57 | color: var(--r-selection-color);
58 | background: var(--r-selection-background-color);
59 | text-shadow: none;
60 | }
61 |
62 | .reveal ::-moz-selection {
63 | color: var(--r-selection-color);
64 | background: var(--r-selection-background-color);
65 | text-shadow: none;
66 | }
67 |
68 | .reveal .slides section,
69 | .reveal .slides section > section {
70 | line-height: 1.3;
71 | font-weight: inherit;
72 | }
73 |
74 | /*********************************************
75 | * HEADERS
76 | *********************************************/
77 | .reveal h1,
78 | .reveal h2,
79 | .reveal h3,
80 | .reveal h4,
81 | .reveal h5,
82 | .reveal h6 {
83 | margin: var(--r-heading-margin);
84 | color: var(--r-heading-color);
85 | font-family: var(--r-heading-font);
86 | font-weight: var(--r-heading-font-weight);
87 | line-height: var(--r-heading-line-height);
88 | letter-spacing: var(--r-heading-letter-spacing);
89 | text-transform: var(--r-heading-text-transform);
90 | text-shadow: var(--r-heading-text-shadow);
91 | word-wrap: break-word;
92 | }
93 |
94 | .reveal h1 {
95 | font-size: var(--r-heading1-size);
96 | }
97 |
98 | .reveal h2 {
99 | font-size: var(--r-heading2-size);
100 | }
101 |
102 | .reveal h3 {
103 | font-size: var(--r-heading3-size);
104 | }
105 |
106 | .reveal h4 {
107 | font-size: var(--r-heading4-size);
108 | }
109 |
110 | .reveal h1 {
111 | text-shadow: var(--r-heading1-text-shadow);
112 | }
113 |
114 | /*********************************************
115 | * OTHER
116 | *********************************************/
117 | .reveal p {
118 | margin: var(--r-block-margin) 0;
119 | line-height: 1.3;
120 | }
121 |
122 | /* Remove trailing margins after titles */
123 | .reveal h1:last-child,
124 | .reveal h2:last-child,
125 | .reveal h3:last-child,
126 | .reveal h4:last-child,
127 | .reveal h5:last-child,
128 | .reveal h6:last-child {
129 | margin-bottom: 0;
130 | }
131 |
132 | /* Ensure certain elements are never larger than the slide itself */
133 | .reveal img,
134 | .reveal video,
135 | .reveal iframe {
136 | max-width: 95%;
137 | max-height: 95%;
138 | }
139 |
140 | .reveal strong,
141 | .reveal b {
142 | font-weight: bold;
143 | }
144 |
145 | .reveal em {
146 | font-style: italic;
147 | }
148 |
149 | .reveal ol,
150 | .reveal dl,
151 | .reveal ul {
152 | display: inline-block;
153 | text-align: left;
154 | margin: 0 0 0 1em;
155 | }
156 |
157 | .reveal ol {
158 | list-style-type: decimal;
159 | }
160 |
161 | .reveal ul {
162 | list-style-type: disc;
163 | }
164 |
165 | .reveal ul ul {
166 | list-style-type: square;
167 | }
168 |
169 | .reveal ul ul ul {
170 | list-style-type: circle;
171 | }
172 |
173 | .reveal ul ul,
174 | .reveal ul ol,
175 | .reveal ol ol,
176 | .reveal ol ul {
177 | display: block;
178 | margin-left: 40px;
179 | }
180 |
181 | .reveal dt {
182 | font-weight: bold;
183 | }
184 |
185 | .reveal dd {
186 | margin-left: 40px;
187 | }
188 |
189 | .reveal blockquote {
190 | display: block;
191 | position: relative;
192 | width: 70%;
193 | margin: var(--r-block-margin) auto;
194 | padding: 5px;
195 | font-style: italic;
196 | background: rgba(255, 255, 255, 0.05);
197 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
198 | }
199 |
200 | .reveal blockquote p:first-child,
201 | .reveal blockquote p:last-child {
202 | display: inline-block;
203 | }
204 |
205 | .reveal q {
206 | font-style: italic;
207 | }
208 |
209 | .reveal pre {
210 | display: block;
211 | position: relative;
212 | width: 90%;
213 | margin: var(--r-block-margin) auto;
214 | text-align: left;
215 | font-size: 0.55em;
216 | font-family: var(--r-code-font);
217 | line-height: 1.2em;
218 | word-wrap: break-word;
219 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
220 | }
221 |
222 | .reveal code {
223 | font-family: var(--r-code-font);
224 | text-transform: none;
225 | tab-size: 2;
226 | }
227 |
228 | .reveal pre code {
229 | display: block;
230 | padding: 5px;
231 | overflow: auto;
232 | max-height: 400px;
233 | word-wrap: normal;
234 | }
235 |
236 | .reveal .code-wrapper {
237 | white-space: normal;
238 | }
239 |
240 | .reveal .code-wrapper code {
241 | white-space: pre;
242 | }
243 |
244 | .reveal table {
245 | margin: auto;
246 | border-collapse: collapse;
247 | border-spacing: 0;
248 | }
249 |
250 | .reveal table th {
251 | font-weight: bold;
252 | }
253 |
254 | .reveal table th,
255 | .reveal table td {
256 | text-align: left;
257 | padding: 0.2em 0.5em 0.2em 0.5em;
258 | border-bottom: 1px solid;
259 | }
260 |
261 | .reveal table th[align=center],
262 | .reveal table td[align=center] {
263 | text-align: center;
264 | }
265 |
266 | .reveal table th[align=right],
267 | .reveal table td[align=right] {
268 | text-align: right;
269 | }
270 |
271 | .reveal table tbody tr:last-child th,
272 | .reveal table tbody tr:last-child td {
273 | border-bottom: none;
274 | }
275 |
276 | .reveal sup {
277 | vertical-align: super;
278 | font-size: smaller;
279 | }
280 |
281 | .reveal sub {
282 | vertical-align: sub;
283 | font-size: smaller;
284 | }
285 |
286 | .reveal small {
287 | display: inline-block;
288 | font-size: 0.6em;
289 | line-height: 1.2em;
290 | vertical-align: top;
291 | }
292 |
293 | .reveal small * {
294 | vertical-align: top;
295 | }
296 |
297 | .reveal img {
298 | margin: var(--r-block-margin) 0;
299 | }
300 |
301 | /*********************************************
302 | * LINKS
303 | *********************************************/
304 | .reveal a {
305 | color: var(--r-link-color);
306 | text-decoration: none;
307 | transition: color 0.15s ease;
308 | }
309 |
310 | .reveal a:hover {
311 | color: var(--r-link-color-hover);
312 | text-shadow: none;
313 | border: none;
314 | }
315 |
316 | .reveal .roll span:after {
317 | color: #fff;
318 | background: var(--r-link-color-dark);
319 | }
320 |
321 | /*********************************************
322 | * Frame helper
323 | *********************************************/
324 | .reveal .r-frame {
325 | border: 4px solid var(--r-main-color);
326 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
327 | }
328 |
329 | .reveal a .r-frame {
330 | transition: all 0.15s linear;
331 | }
332 |
333 | .reveal a:hover .r-frame {
334 | border-color: var(--r-link-color);
335 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
336 | }
337 |
338 | /*********************************************
339 | * NAVIGATION CONTROLS
340 | *********************************************/
341 | .reveal .controls {
342 | color: var(--r-link-color);
343 | }
344 |
345 | /*********************************************
346 | * PROGRESS BAR
347 | *********************************************/
348 | .reveal .progress {
349 | background: rgba(0, 0, 0, 0.2);
350 | color: var(--r-link-color);
351 | }
352 |
353 | /*********************************************
354 | * PRINT BACKGROUND
355 | *********************************************/
356 | @media print {
357 | .backgrounds {
358 | background-color: var(--r-background-color);
359 | }
360 | }
--------------------------------------------------------------------------------
/css/reveal/theme/black.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js. This is the opposite of the 'white' theme.
3 | *
4 | * Originally by Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
7 | section.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 {
8 | color: #222;
9 | }
10 |
11 | /*********************************************
12 | * GLOBAL STYLES
13 | *********************************************/
14 | :root {
15 | --r-background-color: #191919;
16 | --r-main-font: Source Sans Pro, Helvetica, sans-serif;
17 | --r-main-font-size: 36px;
18 | --r-main-color: #e8e8e8;
19 | --r-block-margin: 20px;
20 | --r-heading-margin: 0 auto 20px auto;
21 | --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
22 | --r-heading-color: #e8e8e8;
23 | --r-heading-line-height: 1.2;
24 | --r-heading-letter-spacing: normal;
25 | --r-heading-text-transform: uppercase;
26 | --r-heading-text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
27 | --r-heading-font-weight: 600;
28 | --r-heading1-text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
29 | --r-heading1-size: 1.8em;
30 | --r-heading2-size: 1.6em;
31 | --r-heading3-size: 1.3em;
32 | --r-heading4-size: 1em;
33 | --r-code-font: monospace;
34 | --r-link-color: #42affa;
35 | --r-link-color-dark: #068de9;
36 | --r-link-color-hover: #8dcffc;
37 | --r-selection-background-color: rgba(66, 175, 250, 0.75);
38 | --r-selection-color: #fff;
39 | }
40 |
41 | .reveal-viewport {
42 | background: #191919;
43 | background-color: var(--r-background-color);
44 | }
45 |
46 | .slide-background-image {
47 | width: 100%;
48 | height: 100%;
49 | background-size: cover;
50 | position: absolute;
51 | z-index: 0;
52 | filter: blur(2px);
53 | overflow: hidden;
54 | }
55 |
56 | .slide-overlay {
57 | width: calc(100% - 24px);
58 | height: calc(100% - 24px);
59 | /*background: black;*/
60 | position: absolute;
61 | top: 12px;
62 | left: 12px;
63 | opacity: 0.8;
64 | z-index: 2;
65 | }
66 |
67 | .reveal {
68 | font-family: var(--r-main-font);
69 | font-size: var(--r-main-font-size);
70 | font-weight: normal;
71 | color: var(--r-main-color);
72 | }
73 |
74 | .reveal ::selection {
75 | color: var(--r-selection-color);
76 | background: var(--r-selection-background-color);
77 | text-shadow: none;
78 | }
79 |
80 | .reveal ::-moz-selection {
81 | color: var(--r-selection-color);
82 | background: var(--r-selection-background-color);
83 | text-shadow: none;
84 | }
85 |
86 | .slides {
87 | z-index: 100 !important;
88 | text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
89 | }
90 |
91 | .reveal .slides section,
92 | .reveal .slides section > section {
93 | line-height: 1.3;
94 | font-weight: inherit;
95 | /*background: rgba(0, 0, 0, 0.75);*/
96 | top: 20px !important;
97 | padding: 20px 0;
98 | }
99 |
100 | /*********************************************
101 | * HEADERS
102 | *********************************************/
103 | .reveal h1,
104 | .reveal h2,
105 | .reveal h3,
106 | .reveal h4,
107 | .reveal h5,
108 | .reveal h6 {
109 | max-width: 95%;
110 | margin: var(--r-heading-margin);
111 | color: var(--r-heading-color);
112 | font-family: var(--r-heading-font);
113 | font-weight: var(--r-heading-font-weight);
114 | line-height: var(--r-heading-line-height);
115 | letter-spacing: var(--r-heading-letter-spacing);
116 | text-transform: var(--r-heading-text-transform);
117 | text-shadow: var(--r-heading-text-shadow);
118 | word-wrap: break-word;
119 | }
120 |
121 | .reveal h1 {
122 | font-size: var(--r-heading1-size);
123 | }
124 |
125 | .reveal h2 {
126 | font-size: var(--r-heading2-size);
127 | }
128 |
129 | .reveal h3 {
130 | font-size: var(--r-heading3-size);
131 | }
132 |
133 | .reveal h4 {
134 | font-size: var(--r-heading4-size);
135 | }
136 |
137 | .reveal h1 {
138 | text-shadow: var(--r-heading1-text-shadow);
139 | }
140 |
141 | /*********************************************
142 | * OTHER
143 | *********************************************/
144 | .reveal p {
145 | margin: var(--r-block-margin) 0;
146 | line-height: 1.3;
147 | }
148 |
149 | /* Remove trailing margins after titles */
150 | .reveal h1:last-child,
151 | .reveal h2:last-child,
152 | .reveal h3:last-child,
153 | .reveal h4:last-child,
154 | .reveal h5:last-child,
155 | .reveal h6:last-child {
156 | margin-bottom: 0;
157 | }
158 |
159 | /* Ensure certain elements are never larger than the slide itself */
160 | .reveal img,
161 | .reveal video,
162 | .reveal iframe {
163 | max-width: 95%;
164 | max-height: 95%;
165 | }
166 |
167 | .reveal strong,
168 | .reveal b {
169 | font-weight: bold;
170 | }
171 |
172 | .reveal em {
173 | font-style: italic;
174 | }
175 |
176 | .reveal ol,
177 | .reveal dl,
178 | .reveal ul {
179 | max-width: 85%;
180 | display: inline-block;
181 | text-align: left;
182 | margin: 0 0 0 1em;
183 | }
184 |
185 | .reveal ol {
186 | list-style-type: decimal;
187 | }
188 |
189 | .reveal ul {
190 | list-style-type: disc;
191 | }
192 |
193 | .reveal ul ul {
194 | list-style-type: square;
195 | }
196 |
197 | .reveal ul ul ul {
198 | list-style-type: circle;
199 | }
200 |
201 | .reveal ul ul,
202 | .reveal ul ol,
203 | .reveal ol ol,
204 | .reveal ol ul {
205 | display: block;
206 | margin-left: 40px;
207 | }
208 |
209 | .reveal dt {
210 | font-weight: bold;
211 | }
212 |
213 | .reveal dd {
214 | margin-left: 40px;
215 | }
216 |
217 | .reveal blockquote {
218 | display: block;
219 | position: relative;
220 | width: 70%;
221 | margin: var(--r-block-margin) auto;
222 | background: rgba(24, 24, 24, 0.9);
223 | box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
224 | padding: 10px 20px 10px 30px;
225 | border-left: 8px solid rgba(255, 255, 255, 0.3);
226 | text-align: left;
227 | font-size: calc(var(--r-main-font-size) - 8px);
228 | }
229 |
230 | .reveal blockquote p:first-child,
231 | .reveal blockquote p:last-child {
232 | display: inline-block;
233 | }
234 |
235 | .reveal q {
236 | font-style: italic;
237 | }
238 |
239 | .reveal pre {
240 | display: block;
241 | border-radius: 6px;
242 | position: relative;
243 | width: max-content;
244 | min-width: 60%;
245 | margin: var(--r-block-margin) auto;
246 | text-align: left;
247 | font-size: 0.55em;
248 | font-family: var(--r-code-font);
249 | line-height: 1.2em;
250 | word-wrap: break-word;
251 | text-shadow: var(--r-heading-text-shadow);
252 | box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
253 | background: rgba(24, 24, 24, 0.9) !important;
254 | }
255 |
256 | .reveal code {
257 | font-family: var(--r-code-font);
258 | text-transform: none;
259 | tab-size: 2;
260 | }
261 |
262 | .reveal pre code {
263 | display: block;
264 | padding: 12px;
265 | overflow: auto;
266 | max-height: 400px;
267 | word-wrap: normal;
268 | }
269 |
270 | .reveal pre code span {
271 | line-height: 1.2;
272 | }
273 |
274 | .hljs {
275 | background: rgba(24, 24, 24, 0.0) !important;
276 | }
277 |
278 | .reveal .code-wrapper {
279 | white-space: normal;
280 | }
281 |
282 | .reveal .code-wrapper code {
283 | white-space: pre;
284 | min-width: fit-content;
285 | }
286 |
287 | .reveal table {
288 | margin: auto;
289 | border-collapse: collapse;
290 | border-spacing: 0;
291 | }
292 |
293 | .reveal table th {
294 | font-weight: bold;
295 | }
296 |
297 | .reveal table th,
298 | .reveal table td {
299 | text-align: left;
300 | padding: 0.2em 0.5em 0.2em 0.5em;
301 | border-bottom: 1px solid;
302 | }
303 |
304 | .reveal table th[align=center],
305 | .reveal table td[align=center] {
306 | text-align: center;
307 | }
308 |
309 | .reveal table th[align=right],
310 | .reveal table td[align=right] {
311 | text-align: right;
312 | }
313 |
314 | .reveal table tbody tr:last-child th,
315 | .reveal table tbody tr:last-child td {
316 | border-bottom: none;
317 | }
318 |
319 | .reveal sup {
320 | vertical-align: super;
321 | font-size: smaller;
322 | }
323 |
324 | .reveal sub {
325 | vertical-align: sub;
326 | font-size: smaller;
327 | }
328 |
329 | .reveal small {
330 | display: inline-block;
331 | font-size: 0.6em;
332 | line-height: 1.2em;
333 | vertical-align: top;
334 | }
335 |
336 | .reveal small * {
337 | vertical-align: top;
338 | }
339 |
340 | .reveal img {
341 | margin: var(--r-block-margin) 0;
342 | }
343 |
344 | /*********************************************
345 | * LINKS
346 | *********************************************/
347 | .reveal a {
348 | color: var(--r-link-color);
349 | text-decoration: none;
350 | transition: color 0.15s ease;
351 | }
352 |
353 | .reveal a:hover {
354 | color: var(--r-link-color-hover);
355 | text-shadow: none;
356 | border: none;
357 | }
358 |
359 | .reveal .roll span:after {
360 | color: #fff;
361 | background: var(--r-link-color-dark);
362 | }
363 |
364 | /*********************************************
365 | * Frame helper
366 | *********************************************/
367 | .reveal .r-frame {
368 | border: 4px solid var(--r-main-color);
369 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
370 | }
371 |
372 | .reveal a .r-frame {
373 | transition: all 0.15s linear;
374 | }
375 |
376 | .reveal a:hover .r-frame {
377 | border-color: var(--r-link-color);
378 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
379 | }
380 |
381 | /*********************************************
382 | * NAVIGATION CONTROLS
383 | *********************************************/
384 | .reveal .controls {
385 | color: var(--r-link-color);
386 | }
387 |
388 | /*********************************************
389 | * PROGRESS BAR
390 | *********************************************/
391 | .reveal .progress {
392 | background: rgba(0, 0, 0, 0.2);
393 | color: var(--r-link-color);
394 | }
395 |
396 | /*********************************************
397 | * PRINT BACKGROUND
398 | *********************************************/
399 | @media print {
400 | .backgrounds {
401 | background-color: var(--r-background-color);
402 | }
403 | }
404 |
--------------------------------------------------------------------------------
/css/reveal/theme/blood.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Blood theme for reveal.js
3 | * Author: Walther http://github.com/Walther
4 | *
5 | * Designed to be used with highlight.js theme
6 | * "monokai_sublime.css" available from
7 | * https://github.com/isagalaev/highlight.js/
8 | *
9 | * For other themes, change $codeBackground accordingly.
10 | *
11 | */
12 | @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
13 | section.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 {
14 | color: #222;
15 | }
16 |
17 | /*********************************************
18 | * GLOBAL STYLES
19 | *********************************************/
20 | :root {
21 | --r-background-color: #222;
22 | --r-main-font: Ubuntu, sans-serif;
23 | --r-main-font-size: 40px;
24 | --r-main-color: #eee;
25 | --r-block-margin: 20px;
26 | --r-heading-margin: 0 0 20px 0;
27 | --r-heading-font: Ubuntu, sans-serif;
28 | --r-heading-color: #eee;
29 | --r-heading-line-height: 1.2;
30 | --r-heading-letter-spacing: normal;
31 | --r-heading-text-transform: uppercase;
32 | --r-heading-text-shadow: 2px 2px 2px #222;
33 | --r-heading-font-weight: normal;
34 | --r-heading1-text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15);
35 | --r-heading1-size: 3.77em;
36 | --r-heading2-size: 2.11em;
37 | --r-heading3-size: 1.55em;
38 | --r-heading4-size: 1em;
39 | --r-code-font: monospace;
40 | --r-link-color: #a23;
41 | --r-link-color-dark: #6a1520;
42 | --r-link-color-hover: #dd5566;
43 | --r-selection-background-color: #a23;
44 | --r-selection-color: #fff;
45 | }
46 |
47 | .reveal-viewport {
48 | background: #222;
49 | background-color: var(--r-background-color);
50 | }
51 |
52 | .reveal {
53 | font-family: var(--r-main-font);
54 | font-size: var(--r-main-font-size);
55 | font-weight: normal;
56 | color: var(--r-main-color);
57 | }
58 |
59 | .reveal ::selection {
60 | color: var(--r-selection-color);
61 | background: var(--r-selection-background-color);
62 | text-shadow: none;
63 | }
64 |
65 | .reveal ::-moz-selection {
66 | color: var(--r-selection-color);
67 | background: var(--r-selection-background-color);
68 | text-shadow: none;
69 | }
70 |
71 | .reveal .slides section,
72 | .reveal .slides section > section {
73 | line-height: 1.3;
74 | font-weight: inherit;
75 | }
76 |
77 | /*********************************************
78 | * HEADERS
79 | *********************************************/
80 | .reveal h1,
81 | .reveal h2,
82 | .reveal h3,
83 | .reveal h4,
84 | .reveal h5,
85 | .reveal h6 {
86 | margin: var(--r-heading-margin);
87 | color: var(--r-heading-color);
88 | font-family: var(--r-heading-font);
89 | font-weight: var(--r-heading-font-weight);
90 | line-height: var(--r-heading-line-height);
91 | letter-spacing: var(--r-heading-letter-spacing);
92 | text-transform: var(--r-heading-text-transform);
93 | text-shadow: var(--r-heading-text-shadow);
94 | word-wrap: break-word;
95 | }
96 |
97 | .reveal h1 {
98 | font-size: var(--r-heading1-size);
99 | }
100 |
101 | .reveal h2 {
102 | font-size: var(--r-heading2-size);
103 | }
104 |
105 | .reveal h3 {
106 | font-size: var(--r-heading3-size);
107 | }
108 |
109 | .reveal h4 {
110 | font-size: var(--r-heading4-size);
111 | }
112 |
113 | .reveal h1 {
114 | text-shadow: var(--r-heading1-text-shadow);
115 | }
116 |
117 | /*********************************************
118 | * OTHER
119 | *********************************************/
120 | .reveal p {
121 | margin: var(--r-block-margin) 0;
122 | line-height: 1.3;
123 | }
124 |
125 | /* Remove trailing margins after titles */
126 | .reveal h1:last-child,
127 | .reveal h2:last-child,
128 | .reveal h3:last-child,
129 | .reveal h4:last-child,
130 | .reveal h5:last-child,
131 | .reveal h6:last-child {
132 | margin-bottom: 0;
133 | }
134 |
135 | /* Ensure certain elements are never larger than the slide itself */
136 | .reveal img,
137 | .reveal video,
138 | .reveal iframe {
139 | max-width: 95%;
140 | max-height: 95%;
141 | }
142 |
143 | .reveal strong,
144 | .reveal b {
145 | font-weight: bold;
146 | }
147 |
148 | .reveal em {
149 | font-style: italic;
150 | }
151 |
152 | .reveal ol,
153 | .reveal dl,
154 | .reveal ul {
155 | display: inline-block;
156 | text-align: left;
157 | margin: 0 0 0 1em;
158 | }
159 |
160 | .reveal ol {
161 | list-style-type: decimal;
162 | }
163 |
164 | .reveal ul {
165 | list-style-type: disc;
166 | }
167 |
168 | .reveal ul ul {
169 | list-style-type: square;
170 | }
171 |
172 | .reveal ul ul ul {
173 | list-style-type: circle;
174 | }
175 |
176 | .reveal ul ul,
177 | .reveal ul ol,
178 | .reveal ol ol,
179 | .reveal ol ul {
180 | display: block;
181 | margin-left: 40px;
182 | }
183 |
184 | .reveal dt {
185 | font-weight: bold;
186 | }
187 |
188 | .reveal dd {
189 | margin-left: 40px;
190 | }
191 |
192 | .reveal blockquote {
193 | display: block;
194 | position: relative;
195 | width: 70%;
196 | margin: var(--r-block-margin) auto;
197 | padding: 5px;
198 | font-style: italic;
199 | background: rgba(255, 255, 255, 0.05);
200 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
201 | }
202 |
203 | .reveal blockquote p:first-child,
204 | .reveal blockquote p:last-child {
205 | display: inline-block;
206 | }
207 |
208 | .reveal q {
209 | font-style: italic;
210 | }
211 |
212 | .reveal pre {
213 | display: block;
214 | position: relative;
215 | width: 90%;
216 | margin: var(--r-block-margin) auto;
217 | text-align: left;
218 | font-size: 0.55em;
219 | font-family: var(--r-code-font);
220 | line-height: 1.2em;
221 | word-wrap: break-word;
222 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
223 | }
224 |
225 | .reveal code {
226 | font-family: var(--r-code-font);
227 | text-transform: none;
228 | tab-size: 2;
229 | }
230 |
231 | .reveal pre code {
232 | display: block;
233 | padding: 5px;
234 | overflow: auto;
235 | max-height: 400px;
236 | word-wrap: normal;
237 | }
238 |
239 | .reveal .code-wrapper {
240 | white-space: normal;
241 | }
242 |
243 | .reveal .code-wrapper code {
244 | white-space: pre;
245 | }
246 |
247 | .reveal table {
248 | margin: auto;
249 | border-collapse: collapse;
250 | border-spacing: 0;
251 | }
252 |
253 | .reveal table th {
254 | font-weight: bold;
255 | }
256 |
257 | .reveal table th,
258 | .reveal table td {
259 | text-align: left;
260 | padding: 0.2em 0.5em 0.2em 0.5em;
261 | border-bottom: 1px solid;
262 | }
263 |
264 | .reveal table th[align=center],
265 | .reveal table td[align=center] {
266 | text-align: center;
267 | }
268 |
269 | .reveal table th[align=right],
270 | .reveal table td[align=right] {
271 | text-align: right;
272 | }
273 |
274 | .reveal table tbody tr:last-child th,
275 | .reveal table tbody tr:last-child td {
276 | border-bottom: none;
277 | }
278 |
279 | .reveal sup {
280 | vertical-align: super;
281 | font-size: smaller;
282 | }
283 |
284 | .reveal sub {
285 | vertical-align: sub;
286 | font-size: smaller;
287 | }
288 |
289 | .reveal small {
290 | display: inline-block;
291 | font-size: 0.6em;
292 | line-height: 1.2em;
293 | vertical-align: top;
294 | }
295 |
296 | .reveal small * {
297 | vertical-align: top;
298 | }
299 |
300 | .reveal img {
301 | margin: var(--r-block-margin) 0;
302 | }
303 |
304 | /*********************************************
305 | * LINKS
306 | *********************************************/
307 | .reveal a {
308 | color: var(--r-link-color);
309 | text-decoration: none;
310 | transition: color 0.15s ease;
311 | }
312 |
313 | .reveal a:hover {
314 | color: var(--r-link-color-hover);
315 | text-shadow: none;
316 | border: none;
317 | }
318 |
319 | .reveal .roll span:after {
320 | color: #fff;
321 | background: var(--r-link-color-dark);
322 | }
323 |
324 | /*********************************************
325 | * Frame helper
326 | *********************************************/
327 | .reveal .r-frame {
328 | border: 4px solid var(--r-main-color);
329 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
330 | }
331 |
332 | .reveal a .r-frame {
333 | transition: all 0.15s linear;
334 | }
335 |
336 | .reveal a:hover .r-frame {
337 | border-color: var(--r-link-color);
338 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
339 | }
340 |
341 | /*********************************************
342 | * NAVIGATION CONTROLS
343 | *********************************************/
344 | .reveal .controls {
345 | color: var(--r-link-color);
346 | }
347 |
348 | /*********************************************
349 | * PROGRESS BAR
350 | *********************************************/
351 | .reveal .progress {
352 | background: rgba(0, 0, 0, 0.2);
353 | color: var(--r-link-color);
354 | }
355 |
356 | /*********************************************
357 | * PRINT BACKGROUND
358 | *********************************************/
359 | @media print {
360 | .backgrounds {
361 | background-color: var(--r-background-color);
362 | }
363 | }
364 | .reveal p {
365 | font-weight: 300;
366 | text-shadow: 1px 1px #222;
367 | }
368 |
369 | section.has-light-background p, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4 {
370 | text-shadow: none;
371 | }
372 |
373 | .reveal h1,
374 | .reveal h2,
375 | .reveal h3,
376 | .reveal h4,
377 | .reveal h5,
378 | .reveal h6 {
379 | font-weight: 700;
380 | }
381 |
382 | .reveal p code {
383 | background-color: #23241f;
384 | display: inline-block;
385 | border-radius: 7px;
386 | }
387 |
388 | .reveal small code {
389 | vertical-align: baseline;
390 | }
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/league-gothic/LICENSE:
--------------------------------------------------------------------------------
1 | SIL Open Font License (OFL)
2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
3 |
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/league-gothic/league-gothic.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'League Gothic';
3 | src: url('./league-gothic.eot');
4 | src: url('./league-gothic.eot?#iefix') format('embedded-opentype'),
5 | url('./league-gothic.woff') format('woff'),
6 | url('./league-gothic.ttf') format('truetype');
7 |
8 | font-weight: normal;
9 | font-style: normal;
10 | }
11 |
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/league-gothic/league-gothic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/league-gothic/league-gothic.eot
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/league-gothic/league-gothic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/league-gothic/league-gothic.ttf
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/league-gothic/league-gothic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/league-gothic/league-gothic.woff
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/LICENSE:
--------------------------------------------------------------------------------
1 | SIL Open Font License
2 |
3 | Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
4 |
5 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
6 | This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
7 |
8 | —————————————————————————————-
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | —————————————————————————————-
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
14 |
15 | The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
16 |
17 | DEFINITIONS
18 | “Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
19 |
20 | “Reserved Font Name” refers to any names specified as such after the copyright statement(s).
21 |
22 | “Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).
23 |
24 | “Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
25 |
26 | “Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
27 |
28 | PERMISSION & CONDITIONS
29 | Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
30 |
31 | 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
32 |
33 | 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
34 |
35 | 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
36 |
37 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
38 |
39 | 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
40 |
41 | TERMINATION
42 | This license becomes null and void if any of the above conditions are not met.
43 |
44 | DISCLAIMER
45 | THE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-italic.eot
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-italic.woff
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-regular.eot
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-regular.woff
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jasonjmcghee/vlearn/bf9b70fad34f17afed0e6445daa47d5fefb900cb/css/reveal/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff
--------------------------------------------------------------------------------
/css/reveal/theme/fonts/source-sans-pro/source-sans-pro.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'Source Sans Pro';
3 | src: url('./source-sans-pro-regular.eot');
4 | src: url('./source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),
5 | url('./source-sans-pro-regular.woff') format('woff'),
6 | url('./source-sans-pro-regular.ttf') format('truetype');
7 | font-weight: normal;
8 | font-style: normal;
9 | }
10 |
11 | @font-face {
12 | font-family: 'Source Sans Pro';
13 | src: url('./source-sans-pro-italic.eot');
14 | src: url('./source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),
15 | url('./source-sans-pro-italic.woff') format('woff'),
16 | url('./source-sans-pro-italic.ttf') format('truetype');
17 | font-weight: normal;
18 | font-style: italic;
19 | }
20 |
21 | @font-face {
22 | font-family: 'Source Sans Pro';
23 | src: url('./source-sans-pro-semibold.eot');
24 | src: url('./source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),
25 | url('./source-sans-pro-semibold.woff') format('woff'),
26 | url('./source-sans-pro-semibold.ttf') format('truetype');
27 | font-weight: 600;
28 | font-style: normal;
29 | }
30 |
31 | @font-face {
32 | font-family: 'Source Sans Pro';
33 | src: url('./source-sans-pro-semibolditalic.eot');
34 | src: url('./source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),
35 | url('./source-sans-pro-semibolditalic.woff') format('woff'),
36 | url('./source-sans-pro-semibolditalic.ttf') format('truetype');
37 | font-weight: 600;
38 | font-style: italic;
39 | }
40 |
--------------------------------------------------------------------------------
/css/reveal/theme/league.css:
--------------------------------------------------------------------------------
1 | /**
2 | * League theme for reveal.js.
3 | *
4 | * This was the default theme pre-3.0.0.
5 | *
6 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 | @import url(./fonts/league-gothic/league-gothic.css);
9 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
10 | section.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 {
11 | color: #222;
12 | }
13 |
14 | /*********************************************
15 | * GLOBAL STYLES
16 | *********************************************/
17 | :root {
18 | --r-background-color: #2b2b2b;
19 | --r-main-font: Lato, sans-serif;
20 | --r-main-font-size: 40px;
21 | --r-main-color: #eee;
22 | --r-block-margin: 20px;
23 | --r-heading-margin: 0 0 20px 0;
24 | --r-heading-font: League Gothic, Impact, sans-serif;
25 | --r-heading-color: #eee;
26 | --r-heading-line-height: 1.2;
27 | --r-heading-letter-spacing: normal;
28 | --r-heading-text-transform: uppercase;
29 | --r-heading-text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
30 | --r-heading-font-weight: normal;
31 | --r-heading1-text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15);
32 | --r-heading1-size: 3.77em;
33 | --r-heading2-size: 2.11em;
34 | --r-heading3-size: 1.55em;
35 | --r-heading4-size: 1em;
36 | --r-code-font: monospace;
37 | --r-link-color: #13DAEC;
38 | --r-link-color-dark: #0d99a5;
39 | --r-link-color-hover: #71e9f4;
40 | --r-selection-background-color: #FF5E99;
41 | --r-selection-color: #fff;
42 | }
43 |
44 | .reveal-viewport {
45 | background: #1c1e20;
46 | background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
47 | background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));
48 | background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
49 | background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
50 | background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
51 | background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
52 | 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 | }
--------------------------------------------------------------------------------
/css/reveal/theme/moon.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Dark theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 | @import url(./fonts/league-gothic/league-gothic.css);
6 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
7 | /**
8 | * Solarized colors by Ethan Schoonover
9 | */
10 | html * {
11 | color-profile: sRGB;
12 | rendering-intent: auto;
13 | }
14 |
15 | section.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 {
16 | color: #222;
17 | }
18 |
19 | /*********************************************
20 | * GLOBAL STYLES
21 | *********************************************/
22 | :root {
23 | --r-background-color: #002b36;
24 | --r-main-font: Lato, sans-serif;
25 | --r-main-font-size: 40px;
26 | --r-main-color: #93a1a1;
27 | --r-block-margin: 20px;
28 | --r-heading-margin: 0 0 20px 0;
29 | --r-heading-font: League Gothic, Impact, sans-serif;
30 | --r-heading-color: #eee8d5;
31 | --r-heading-line-height: 1.2;
32 | --r-heading-letter-spacing: normal;
33 | --r-heading-text-transform: uppercase;
34 | --r-heading-text-shadow: none;
35 | --r-heading-font-weight: normal;
36 | --r-heading1-text-shadow: none;
37 | --r-heading1-size: 3.77em;
38 | --r-heading2-size: 2.11em;
39 | --r-heading3-size: 1.55em;
40 | --r-heading4-size: 1em;
41 | --r-code-font: monospace;
42 | --r-link-color: #268bd2;
43 | --r-link-color-dark: #1a6091;
44 | --r-link-color-hover: #78b9e6;
45 | --r-selection-background-color: #d33682;
46 | --r-selection-color: #fff;
47 | }
48 |
49 | .reveal-viewport {
50 | background: #002b36;
51 | background-color: var(--r-background-color);
52 | }
53 |
54 | .reveal {
55 | font-family: var(--r-main-font);
56 | font-size: var(--r-main-font-size);
57 | font-weight: normal;
58 | color: var(--r-main-color);
59 | }
60 |
61 | .reveal ::selection {
62 | color: var(--r-selection-color);
63 | background: var(--r-selection-background-color);
64 | text-shadow: none;
65 | }
66 |
67 | .reveal ::-moz-selection {
68 | color: var(--r-selection-color);
69 | background: var(--r-selection-background-color);
70 | text-shadow: none;
71 | }
72 |
73 | .reveal .slides section,
74 | .reveal .slides section > section {
75 | line-height: 1.3;
76 | font-weight: inherit;
77 | }
78 |
79 | /*********************************************
80 | * HEADERS
81 | *********************************************/
82 | .reveal h1,
83 | .reveal h2,
84 | .reveal h3,
85 | .reveal h4,
86 | .reveal h5,
87 | .reveal h6 {
88 | margin: var(--r-heading-margin);
89 | color: var(--r-heading-color);
90 | font-family: var(--r-heading-font);
91 | font-weight: var(--r-heading-font-weight);
92 | line-height: var(--r-heading-line-height);
93 | letter-spacing: var(--r-heading-letter-spacing);
94 | text-transform: var(--r-heading-text-transform);
95 | text-shadow: var(--r-heading-text-shadow);
96 | word-wrap: break-word;
97 | }
98 |
99 | .reveal h1 {
100 | font-size: var(--r-heading1-size);
101 | }
102 |
103 | .reveal h2 {
104 | font-size: var(--r-heading2-size);
105 | }
106 |
107 | .reveal h3 {
108 | font-size: var(--r-heading3-size);
109 | }
110 |
111 | .reveal h4 {
112 | font-size: var(--r-heading4-size);
113 | }
114 |
115 | .reveal h1 {
116 | text-shadow: var(--r-heading1-text-shadow);
117 | }
118 |
119 | /*********************************************
120 | * OTHER
121 | *********************************************/
122 | .reveal p {
123 | margin: var(--r-block-margin) 0;
124 | line-height: 1.3;
125 | }
126 |
127 | /* Remove trailing margins after titles */
128 | .reveal h1:last-child,
129 | .reveal h2:last-child,
130 | .reveal h3:last-child,
131 | .reveal h4:last-child,
132 | .reveal h5:last-child,
133 | .reveal h6:last-child {
134 | margin-bottom: 0;
135 | }
136 |
137 | /* Ensure certain elements are never larger than the slide itself */
138 | .reveal img,
139 | .reveal video,
140 | .reveal iframe {
141 | max-width: 95%;
142 | max-height: 95%;
143 | }
144 |
145 | .reveal strong,
146 | .reveal b {
147 | font-weight: bold;
148 | }
149 |
150 | .reveal em {
151 | font-style: italic;
152 | }
153 |
154 | .reveal ol,
155 | .reveal dl,
156 | .reveal ul {
157 | display: inline-block;
158 | text-align: left;
159 | margin: 0 0 0 1em;
160 | }
161 |
162 | .reveal ol {
163 | list-style-type: decimal;
164 | }
165 |
166 | .reveal ul {
167 | list-style-type: disc;
168 | }
169 |
170 | .reveal ul ul {
171 | list-style-type: square;
172 | }
173 |
174 | .reveal ul ul ul {
175 | list-style-type: circle;
176 | }
177 |
178 | .reveal ul ul,
179 | .reveal ul ol,
180 | .reveal ol ol,
181 | .reveal ol ul {
182 | display: block;
183 | margin-left: 40px;
184 | }
185 |
186 | .reveal dt {
187 | font-weight: bold;
188 | }
189 |
190 | .reveal dd {
191 | margin-left: 40px;
192 | }
193 |
194 | .reveal blockquote {
195 | display: block;
196 | position: relative;
197 | width: 70%;
198 | margin: var(--r-block-margin) auto;
199 | padding: 5px;
200 | font-style: italic;
201 | background: rgba(255, 255, 255, 0.05);
202 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
203 | }
204 |
205 | .reveal blockquote p:first-child,
206 | .reveal blockquote p:last-child {
207 | display: inline-block;
208 | }
209 |
210 | .reveal q {
211 | font-style: italic;
212 | }
213 |
214 | .reveal pre {
215 | display: block;
216 | position: relative;
217 | width: 90%;
218 | margin: var(--r-block-margin) auto;
219 | text-align: left;
220 | font-size: 0.55em;
221 | font-family: var(--r-code-font);
222 | line-height: 1.2em;
223 | word-wrap: break-word;
224 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
225 | }
226 |
227 | .reveal code {
228 | font-family: var(--r-code-font);
229 | text-transform: none;
230 | tab-size: 2;
231 | }
232 |
233 | .reveal pre code {
234 | display: block;
235 | padding: 5px;
236 | overflow: auto;
237 | max-height: 400px;
238 | word-wrap: normal;
239 | }
240 |
241 | .reveal .code-wrapper {
242 | white-space: normal;
243 | }
244 |
245 | .reveal .code-wrapper code {
246 | white-space: pre;
247 | }
248 |
249 | .reveal table {
250 | margin: auto;
251 | border-collapse: collapse;
252 | border-spacing: 0;
253 | }
254 |
255 | .reveal table th {
256 | font-weight: bold;
257 | }
258 |
259 | .reveal table th,
260 | .reveal table td {
261 | text-align: left;
262 | padding: 0.2em 0.5em 0.2em 0.5em;
263 | border-bottom: 1px solid;
264 | }
265 |
266 | .reveal table th[align=center],
267 | .reveal table td[align=center] {
268 | text-align: center;
269 | }
270 |
271 | .reveal table th[align=right],
272 | .reveal table td[align=right] {
273 | text-align: right;
274 | }
275 |
276 | .reveal table tbody tr:last-child th,
277 | .reveal table tbody tr:last-child td {
278 | border-bottom: none;
279 | }
280 |
281 | .reveal sup {
282 | vertical-align: super;
283 | font-size: smaller;
284 | }
285 |
286 | .reveal sub {
287 | vertical-align: sub;
288 | font-size: smaller;
289 | }
290 |
291 | .reveal small {
292 | display: inline-block;
293 | font-size: 0.6em;
294 | line-height: 1.2em;
295 | vertical-align: top;
296 | }
297 |
298 | .reveal small * {
299 | vertical-align: top;
300 | }
301 |
302 | .reveal img {
303 | margin: var(--r-block-margin) 0;
304 | }
305 |
306 | /*********************************************
307 | * LINKS
308 | *********************************************/
309 | .reveal a {
310 | color: var(--r-link-color);
311 | text-decoration: none;
312 | transition: color 0.15s ease;
313 | }
314 |
315 | .reveal a:hover {
316 | color: var(--r-link-color-hover);
317 | text-shadow: none;
318 | border: none;
319 | }
320 |
321 | .reveal .roll span:after {
322 | color: #fff;
323 | background: var(--r-link-color-dark);
324 | }
325 |
326 | /*********************************************
327 | * Frame helper
328 | *********************************************/
329 | .reveal .r-frame {
330 | border: 4px solid var(--r-main-color);
331 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
332 | }
333 |
334 | .reveal a .r-frame {
335 | transition: all 0.15s linear;
336 | }
337 |
338 | .reveal a:hover .r-frame {
339 | border-color: var(--r-link-color);
340 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
341 | }
342 |
343 | /*********************************************
344 | * NAVIGATION CONTROLS
345 | *********************************************/
346 | .reveal .controls {
347 | color: var(--r-link-color);
348 | }
349 |
350 | /*********************************************
351 | * PROGRESS BAR
352 | *********************************************/
353 | .reveal .progress {
354 | background: rgba(0, 0, 0, 0.2);
355 | color: var(--r-link-color);
356 | }
357 |
358 | /*********************************************
359 | * PRINT BACKGROUND
360 | *********************************************/
361 | @media print {
362 | .backgrounds {
363 | background-color: var(--r-background-color);
364 | }
365 | }
--------------------------------------------------------------------------------
/css/reveal/theme/night.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
7 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
8 | section.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 {
9 | color: #222;
10 | }
11 |
12 | /*********************************************
13 | * GLOBAL STYLES
14 | *********************************************/
15 | :root {
16 | --r-background-color: #111;
17 | --r-main-font: Open Sans, sans-serif;
18 | --r-main-font-size: 40px;
19 | --r-main-color: #eee;
20 | --r-block-margin: 20px;
21 | --r-heading-margin: 0 0 20px 0;
22 | --r-heading-font: Montserrat, Impact, sans-serif;
23 | --r-heading-color: #eee;
24 | --r-heading-line-height: 1.2;
25 | --r-heading-letter-spacing: -0.03em;
26 | --r-heading-text-transform: none;
27 | --r-heading-text-shadow: none;
28 | --r-heading-font-weight: normal;
29 | --r-heading1-text-shadow: none;
30 | --r-heading1-size: 3.77em;
31 | --r-heading2-size: 2.11em;
32 | --r-heading3-size: 1.55em;
33 | --r-heading4-size: 1em;
34 | --r-code-font: monospace;
35 | --r-link-color: #e7ad52;
36 | --r-link-color-dark: #d08a1d;
37 | --r-link-color-hover: #f3d7ac;
38 | --r-selection-background-color: #e7ad52;
39 | --r-selection-color: #fff;
40 | }
41 |
42 | .reveal-viewport {
43 | background: #111;
44 | background-color: var(--r-background-color);
45 | }
46 |
47 | .reveal {
48 | font-family: var(--r-main-font);
49 | font-size: var(--r-main-font-size);
50 | font-weight: normal;
51 | color: var(--r-main-color);
52 | }
53 |
54 | .reveal ::selection {
55 | color: var(--r-selection-color);
56 | background: var(--r-selection-background-color);
57 | text-shadow: none;
58 | }
59 |
60 | .reveal ::-moz-selection {
61 | color: var(--r-selection-color);
62 | background: var(--r-selection-background-color);
63 | text-shadow: none;
64 | }
65 |
66 | .reveal .slides section,
67 | .reveal .slides section > section {
68 | line-height: 1.3;
69 | font-weight: inherit;
70 | }
71 |
72 | /*********************************************
73 | * HEADERS
74 | *********************************************/
75 | .reveal h1,
76 | .reveal h2,
77 | .reveal h3,
78 | .reveal h4,
79 | .reveal h5,
80 | .reveal h6 {
81 | margin: var(--r-heading-margin);
82 | color: var(--r-heading-color);
83 | font-family: var(--r-heading-font);
84 | font-weight: var(--r-heading-font-weight);
85 | line-height: var(--r-heading-line-height);
86 | letter-spacing: var(--r-heading-letter-spacing);
87 | text-transform: var(--r-heading-text-transform);
88 | text-shadow: var(--r-heading-text-shadow);
89 | word-wrap: break-word;
90 | }
91 |
92 | .reveal h1 {
93 | font-size: var(--r-heading1-size);
94 | }
95 |
96 | .reveal h2 {
97 | font-size: var(--r-heading2-size);
98 | }
99 |
100 | .reveal h3 {
101 | font-size: var(--r-heading3-size);
102 | }
103 |
104 | .reveal h4 {
105 | font-size: var(--r-heading4-size);
106 | }
107 |
108 | .reveal h1 {
109 | text-shadow: var(--r-heading1-text-shadow);
110 | }
111 |
112 | /*********************************************
113 | * OTHER
114 | *********************************************/
115 | .reveal p {
116 | margin: var(--r-block-margin) 0;
117 | line-height: 1.3;
118 | }
119 |
120 | /* Remove trailing margins after titles */
121 | .reveal h1:last-child,
122 | .reveal h2:last-child,
123 | .reveal h3:last-child,
124 | .reveal h4:last-child,
125 | .reveal h5:last-child,
126 | .reveal h6:last-child {
127 | margin-bottom: 0;
128 | }
129 |
130 | /* Ensure certain elements are never larger than the slide itself */
131 | .reveal img,
132 | .reveal video,
133 | .reveal iframe {
134 | max-width: 95%;
135 | max-height: 95%;
136 | }
137 |
138 | .reveal strong,
139 | .reveal b {
140 | font-weight: bold;
141 | }
142 |
143 | .reveal em {
144 | font-style: italic;
145 | }
146 |
147 | .reveal ol,
148 | .reveal dl,
149 | .reveal ul {
150 | display: inline-block;
151 | text-align: left;
152 | margin: 0 0 0 1em;
153 | }
154 |
155 | .reveal ol {
156 | list-style-type: decimal;
157 | }
158 |
159 | .reveal ul {
160 | list-style-type: disc;
161 | }
162 |
163 | .reveal ul ul {
164 | list-style-type: square;
165 | }
166 |
167 | .reveal ul ul ul {
168 | list-style-type: circle;
169 | }
170 |
171 | .reveal ul ul,
172 | .reveal ul ol,
173 | .reveal ol ol,
174 | .reveal ol ul {
175 | display: block;
176 | margin-left: 40px;
177 | }
178 |
179 | .reveal dt {
180 | font-weight: bold;
181 | }
182 |
183 | .reveal dd {
184 | margin-left: 40px;
185 | }
186 |
187 | .reveal blockquote {
188 | display: block;
189 | position: relative;
190 | width: 70%;
191 | margin: var(--r-block-margin) auto;
192 | padding: 5px;
193 | font-style: italic;
194 | background: rgba(255, 255, 255, 0.05);
195 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
196 | }
197 |
198 | .reveal blockquote p:first-child,
199 | .reveal blockquote p:last-child {
200 | display: inline-block;
201 | }
202 |
203 | .reveal q {
204 | font-style: italic;
205 | }
206 |
207 | .reveal pre {
208 | display: block;
209 | position: relative;
210 | width: 90%;
211 | margin: var(--r-block-margin) auto;
212 | text-align: left;
213 | font-size: 0.55em;
214 | font-family: var(--r-code-font);
215 | line-height: 1.2em;
216 | word-wrap: break-word;
217 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
218 | }
219 |
220 | .reveal code {
221 | font-family: var(--r-code-font);
222 | text-transform: none;
223 | tab-size: 2;
224 | }
225 |
226 | .reveal pre code {
227 | display: block;
228 | padding: 5px;
229 | overflow: auto;
230 | max-height: 400px;
231 | word-wrap: normal;
232 | }
233 |
234 | .reveal .code-wrapper {
235 | white-space: normal;
236 | }
237 |
238 | .reveal .code-wrapper code {
239 | white-space: pre;
240 | }
241 |
242 | .reveal table {
243 | margin: auto;
244 | border-collapse: collapse;
245 | border-spacing: 0;
246 | }
247 |
248 | .reveal table th {
249 | font-weight: bold;
250 | }
251 |
252 | .reveal table th,
253 | .reveal table td {
254 | text-align: left;
255 | padding: 0.2em 0.5em 0.2em 0.5em;
256 | border-bottom: 1px solid;
257 | }
258 |
259 | .reveal table th[align=center],
260 | .reveal table td[align=center] {
261 | text-align: center;
262 | }
263 |
264 | .reveal table th[align=right],
265 | .reveal table td[align=right] {
266 | text-align: right;
267 | }
268 |
269 | .reveal table tbody tr:last-child th,
270 | .reveal table tbody tr:last-child td {
271 | border-bottom: none;
272 | }
273 |
274 | .reveal sup {
275 | vertical-align: super;
276 | font-size: smaller;
277 | }
278 |
279 | .reveal sub {
280 | vertical-align: sub;
281 | font-size: smaller;
282 | }
283 |
284 | .reveal small {
285 | display: inline-block;
286 | font-size: 0.6em;
287 | line-height: 1.2em;
288 | vertical-align: top;
289 | }
290 |
291 | .reveal small * {
292 | vertical-align: top;
293 | }
294 |
295 | .reveal img {
296 | margin: var(--r-block-margin) 0;
297 | }
298 |
299 | /*********************************************
300 | * LINKS
301 | *********************************************/
302 | .reveal a {
303 | color: var(--r-link-color);
304 | text-decoration: none;
305 | transition: color 0.15s ease;
306 | }
307 |
308 | .reveal a:hover {
309 | color: var(--r-link-color-hover);
310 | text-shadow: none;
311 | border: none;
312 | }
313 |
314 | .reveal .roll span:after {
315 | color: #fff;
316 | background: var(--r-link-color-dark);
317 | }
318 |
319 | /*********************************************
320 | * Frame helper
321 | *********************************************/
322 | .reveal .r-frame {
323 | border: 4px solid var(--r-main-color);
324 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
325 | }
326 |
327 | .reveal a .r-frame {
328 | transition: all 0.15s linear;
329 | }
330 |
331 | .reveal a:hover .r-frame {
332 | border-color: var(--r-link-color);
333 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
334 | }
335 |
336 | /*********************************************
337 | * NAVIGATION CONTROLS
338 | *********************************************/
339 | .reveal .controls {
340 | color: var(--r-link-color);
341 | }
342 |
343 | /*********************************************
344 | * PROGRESS BAR
345 | *********************************************/
346 | .reveal .progress {
347 | background: rgba(0, 0, 0, 0.2);
348 | color: var(--r-link-color);
349 | }
350 |
351 | /*********************************************
352 | * PRINT BACKGROUND
353 | *********************************************/
354 | @media print {
355 | .backgrounds {
356 | background-color: var(--r-background-color);
357 | }
358 | }
--------------------------------------------------------------------------------
/css/reveal/theme/serif.css:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is brown.
4 | *
5 | * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
6 | */
7 | .reveal a {
8 | line-height: 1.3em;
9 | }
10 |
11 | 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 {
12 | color: #fff;
13 | }
14 |
15 | /*********************************************
16 | * GLOBAL STYLES
17 | *********************************************/
18 | :root {
19 | --r-background-color: #F0F1EB;
20 | --r-main-font: Palatino Linotype, Book Antiqua, Palatino, FreeSerif, serif;
21 | --r-main-font-size: 40px;
22 | --r-main-color: #000;
23 | --r-block-margin: 20px;
24 | --r-heading-margin: 0 0 20px 0;
25 | --r-heading-font: Palatino Linotype, Book Antiqua, Palatino, FreeSerif, serif;
26 | --r-heading-color: #383D3D;
27 | --r-heading-line-height: 1.2;
28 | --r-heading-letter-spacing: normal;
29 | --r-heading-text-transform: none;
30 | --r-heading-text-shadow: none;
31 | --r-heading-font-weight: normal;
32 | --r-heading1-text-shadow: none;
33 | --r-heading1-size: 3.77em;
34 | --r-heading2-size: 2.11em;
35 | --r-heading3-size: 1.55em;
36 | --r-heading4-size: 1em;
37 | --r-code-font: monospace;
38 | --r-link-color: #51483D;
39 | --r-link-color-dark: #25211c;
40 | --r-link-color-hover: #8b7c69;
41 | --r-selection-background-color: #26351C;
42 | --r-selection-color: #fff;
43 | }
44 |
45 | .reveal-viewport {
46 | background: #F0F1EB;
47 | background-color: var(--r-background-color);
48 | }
49 |
50 | .reveal {
51 | font-family: var(--r-main-font);
52 | font-size: var(--r-main-font-size);
53 | font-weight: normal;
54 | color: var(--r-main-color);
55 | }
56 |
57 | .reveal ::selection {
58 | color: var(--r-selection-color);
59 | background: var(--r-selection-background-color);
60 | text-shadow: none;
61 | }
62 |
63 | .reveal ::-moz-selection {
64 | color: var(--r-selection-color);
65 | background: var(--r-selection-background-color);
66 | text-shadow: none;
67 | }
68 |
69 | .reveal .slides section,
70 | .reveal .slides section > section {
71 | line-height: 1.3;
72 | font-weight: inherit;
73 | }
74 |
75 | /*********************************************
76 | * HEADERS
77 | *********************************************/
78 | .reveal h1,
79 | .reveal h2,
80 | .reveal h3,
81 | .reveal h4,
82 | .reveal h5,
83 | .reveal h6 {
84 | margin: var(--r-heading-margin);
85 | color: var(--r-heading-color);
86 | font-family: var(--r-heading-font);
87 | font-weight: var(--r-heading-font-weight);
88 | line-height: var(--r-heading-line-height);
89 | letter-spacing: var(--r-heading-letter-spacing);
90 | text-transform: var(--r-heading-text-transform);
91 | text-shadow: var(--r-heading-text-shadow);
92 | word-wrap: break-word;
93 | }
94 |
95 | .reveal h1 {
96 | font-size: var(--r-heading1-size);
97 | }
98 |
99 | .reveal h2 {
100 | font-size: var(--r-heading2-size);
101 | }
102 |
103 | .reveal h3 {
104 | font-size: var(--r-heading3-size);
105 | }
106 |
107 | .reveal h4 {
108 | font-size: var(--r-heading4-size);
109 | }
110 |
111 | .reveal h1 {
112 | text-shadow: var(--r-heading1-text-shadow);
113 | }
114 |
115 | /*********************************************
116 | * OTHER
117 | *********************************************/
118 | .reveal p {
119 | margin: var(--r-block-margin) 0;
120 | line-height: 1.3;
121 | }
122 |
123 | /* Remove trailing margins after titles */
124 | .reveal h1:last-child,
125 | .reveal h2:last-child,
126 | .reveal h3:last-child,
127 | .reveal h4:last-child,
128 | .reveal h5:last-child,
129 | .reveal h6:last-child {
130 | margin-bottom: 0;
131 | }
132 |
133 | /* Ensure certain elements are never larger than the slide itself */
134 | .reveal img,
135 | .reveal video,
136 | .reveal iframe {
137 | max-width: 95%;
138 | max-height: 95%;
139 | }
140 |
141 | .reveal strong,
142 | .reveal b {
143 | font-weight: bold;
144 | }
145 |
146 | .reveal em {
147 | font-style: italic;
148 | }
149 |
150 | .reveal ol,
151 | .reveal dl,
152 | .reveal ul {
153 | display: inline-block;
154 | text-align: left;
155 | margin: 0 0 0 1em;
156 | }
157 |
158 | .reveal ol {
159 | list-style-type: decimal;
160 | }
161 |
162 | .reveal ul {
163 | list-style-type: disc;
164 | }
165 |
166 | .reveal ul ul {
167 | list-style-type: square;
168 | }
169 |
170 | .reveal ul ul ul {
171 | list-style-type: circle;
172 | }
173 |
174 | .reveal ul ul,
175 | .reveal ul ol,
176 | .reveal ol ol,
177 | .reveal ol ul {
178 | display: block;
179 | margin-left: 40px;
180 | }
181 |
182 | .reveal dt {
183 | font-weight: bold;
184 | }
185 |
186 | .reveal dd {
187 | margin-left: 40px;
188 | }
189 |
190 | .reveal blockquote {
191 | display: block;
192 | position: relative;
193 | width: 70%;
194 | margin: var(--r-block-margin) auto;
195 | padding: 5px;
196 | font-style: italic;
197 | background: rgba(255, 255, 255, 0.05);
198 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
199 | }
200 |
201 | .reveal blockquote p:first-child,
202 | .reveal blockquote p:last-child {
203 | display: inline-block;
204 | }
205 |
206 | .reveal q {
207 | font-style: italic;
208 | }
209 |
210 | .reveal pre {
211 | display: block;
212 | position: relative;
213 | width: 90%;
214 | margin: var(--r-block-margin) auto;
215 | text-align: left;
216 | font-size: 0.55em;
217 | font-family: var(--r-code-font);
218 | line-height: 1.2em;
219 | word-wrap: break-word;
220 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
221 | }
222 |
223 | .reveal code {
224 | font-family: var(--r-code-font);
225 | text-transform: none;
226 | tab-size: 2;
227 | }
228 |
229 | .reveal pre code {
230 | display: block;
231 | padding: 5px;
232 | overflow: auto;
233 | max-height: 400px;
234 | word-wrap: normal;
235 | }
236 |
237 | .reveal .code-wrapper {
238 | white-space: normal;
239 | }
240 |
241 | .reveal .code-wrapper code {
242 | white-space: pre;
243 | }
244 |
245 | .reveal table {
246 | margin: auto;
247 | border-collapse: collapse;
248 | border-spacing: 0;
249 | }
250 |
251 | .reveal table th {
252 | font-weight: bold;
253 | }
254 |
255 | .reveal table th,
256 | .reveal table td {
257 | text-align: left;
258 | padding: 0.2em 0.5em 0.2em 0.5em;
259 | border-bottom: 1px solid;
260 | }
261 |
262 | .reveal table th[align=center],
263 | .reveal table td[align=center] {
264 | text-align: center;
265 | }
266 |
267 | .reveal table th[align=right],
268 | .reveal table td[align=right] {
269 | text-align: right;
270 | }
271 |
272 | .reveal table tbody tr:last-child th,
273 | .reveal table tbody tr:last-child td {
274 | border-bottom: none;
275 | }
276 |
277 | .reveal sup {
278 | vertical-align: super;
279 | font-size: smaller;
280 | }
281 |
282 | .reveal sub {
283 | vertical-align: sub;
284 | font-size: smaller;
285 | }
286 |
287 | .reveal small {
288 | display: inline-block;
289 | font-size: 0.6em;
290 | line-height: 1.2em;
291 | vertical-align: top;
292 | }
293 |
294 | .reveal small * {
295 | vertical-align: top;
296 | }
297 |
298 | .reveal img {
299 | margin: var(--r-block-margin) 0;
300 | }
301 |
302 | /*********************************************
303 | * LINKS
304 | *********************************************/
305 | .reveal a {
306 | color: var(--r-link-color);
307 | text-decoration: none;
308 | transition: color 0.15s ease;
309 | }
310 |
311 | .reveal a:hover {
312 | color: var(--r-link-color-hover);
313 | text-shadow: none;
314 | border: none;
315 | }
316 |
317 | .reveal .roll span:after {
318 | color: #fff;
319 | background: var(--r-link-color-dark);
320 | }
321 |
322 | /*********************************************
323 | * Frame helper
324 | *********************************************/
325 | .reveal .r-frame {
326 | border: 4px solid var(--r-main-color);
327 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
328 | }
329 |
330 | .reveal a .r-frame {
331 | transition: all 0.15s linear;
332 | }
333 |
334 | .reveal a:hover .r-frame {
335 | border-color: var(--r-link-color);
336 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
337 | }
338 |
339 | /*********************************************
340 | * NAVIGATION CONTROLS
341 | *********************************************/
342 | .reveal .controls {
343 | color: var(--r-link-color);
344 | }
345 |
346 | /*********************************************
347 | * PROGRESS BAR
348 | *********************************************/
349 | .reveal .progress {
350 | background: rgba(0, 0, 0, 0.2);
351 | color: var(--r-link-color);
352 | }
353 |
354 | /*********************************************
355 | * PRINT BACKGROUND
356 | *********************************************/
357 | @media print {
358 | .backgrounds {
359 | background-color: var(--r-background-color);
360 | }
361 | }
--------------------------------------------------------------------------------
/css/reveal/theme/simple.css:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is darkblue.
4 | *
5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
9 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
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: Lato, sans-serif;
20 | --r-main-font-size: 40px;
21 | --r-main-color: #000;
22 | --r-block-margin: 20px;
23 | --r-heading-margin: 0 0 20px 0;
24 | --r-heading-font: News Cycle, Impact, sans-serif;
25 | --r-heading-color: #000;
26 | --r-heading-line-height: 1.2;
27 | --r-heading-letter-spacing: normal;
28 | --r-heading-text-transform: none;
29 | --r-heading-text-shadow: none;
30 | --r-heading-font-weight: normal;
31 | --r-heading1-text-shadow: none;
32 | --r-heading1-size: 3.77em;
33 | --r-heading2-size: 2.11em;
34 | --r-heading3-size: 1.55em;
35 | --r-heading4-size: 1em;
36 | --r-code-font: monospace;
37 | --r-link-color: #00008B;
38 | --r-link-color-dark: #00003f;
39 | --r-link-color-hover: #0000f1;
40 | --r-selection-background-color: rgba(0, 0, 0, 0.99);
41 | --r-selection-color: #fff;
42 | }
43 |
44 | .reveal-viewport {
45 | background: #fff;
46 | background-color: var(--r-background-color);
47 | }
48 |
49 | .reveal {
50 | font-family: var(--r-main-font);
51 | font-size: var(--r-main-font-size);
52 | font-weight: normal;
53 | color: var(--r-main-color);
54 | }
55 |
56 | .reveal ::selection {
57 | color: var(--r-selection-color);
58 | background: var(--r-selection-background-color);
59 | text-shadow: none;
60 | }
61 |
62 | .reveal ::-moz-selection {
63 | color: var(--r-selection-color);
64 | background: var(--r-selection-background-color);
65 | text-shadow: none;
66 | }
67 |
68 | .reveal .slides section,
69 | .reveal .slides section > section {
70 | line-height: 1.3;
71 | font-weight: inherit;
72 | }
73 |
74 | /*********************************************
75 | * HEADERS
76 | *********************************************/
77 | .reveal h1,
78 | .reveal h2,
79 | .reveal h3,
80 | .reveal h4,
81 | .reveal h5,
82 | .reveal h6 {
83 | margin: var(--r-heading-margin);
84 | color: var(--r-heading-color);
85 | font-family: var(--r-heading-font);
86 | font-weight: var(--r-heading-font-weight);
87 | line-height: var(--r-heading-line-height);
88 | letter-spacing: var(--r-heading-letter-spacing);
89 | text-transform: var(--r-heading-text-transform);
90 | text-shadow: var(--r-heading-text-shadow);
91 | word-wrap: break-word;
92 | }
93 |
94 | .reveal h1 {
95 | font-size: var(--r-heading1-size);
96 | }
97 |
98 | .reveal h2 {
99 | font-size: var(--r-heading2-size);
100 | }
101 |
102 | .reveal h3 {
103 | font-size: var(--r-heading3-size);
104 | }
105 |
106 | .reveal h4 {
107 | font-size: var(--r-heading4-size);
108 | }
109 |
110 | .reveal h1 {
111 | text-shadow: var(--r-heading1-text-shadow);
112 | }
113 |
114 | /*********************************************
115 | * OTHER
116 | *********************************************/
117 | .reveal p {
118 | margin: var(--r-block-margin) 0;
119 | line-height: 1.3;
120 | }
121 |
122 | /* Remove trailing margins after titles */
123 | .reveal h1:last-child,
124 | .reveal h2:last-child,
125 | .reveal h3:last-child,
126 | .reveal h4:last-child,
127 | .reveal h5:last-child,
128 | .reveal h6:last-child {
129 | margin-bottom: 0;
130 | }
131 |
132 | /* Ensure certain elements are never larger than the slide itself */
133 | .reveal img,
134 | .reveal video,
135 | .reveal iframe {
136 | max-width: 95%;
137 | max-height: 95%;
138 | }
139 |
140 | .reveal strong,
141 | .reveal b {
142 | font-weight: bold;
143 | }
144 |
145 | .reveal em {
146 | font-style: italic;
147 | }
148 |
149 | .reveal ol,
150 | .reveal dl,
151 | .reveal ul {
152 | display: inline-block;
153 | text-align: left;
154 | margin: 0 0 0 1em;
155 | }
156 |
157 | .reveal ol {
158 | list-style-type: decimal;
159 | }
160 |
161 | .reveal ul {
162 | list-style-type: disc;
163 | }
164 |
165 | .reveal ul ul {
166 | list-style-type: square;
167 | }
168 |
169 | .reveal ul ul ul {
170 | list-style-type: circle;
171 | }
172 |
173 | .reveal ul ul,
174 | .reveal ul ol,
175 | .reveal ol ol,
176 | .reveal ol ul {
177 | display: block;
178 | margin-left: 40px;
179 | }
180 |
181 | .reveal dt {
182 | font-weight: bold;
183 | }
184 |
185 | .reveal dd {
186 | margin-left: 40px;
187 | }
188 |
189 | .reveal blockquote {
190 | display: block;
191 | position: relative;
192 | width: 70%;
193 | margin: var(--r-block-margin) auto;
194 | padding: 5px;
195 | font-style: italic;
196 | background: rgba(255, 255, 255, 0.05);
197 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
198 | }
199 |
200 | .reveal blockquote p:first-child,
201 | .reveal blockquote p:last-child {
202 | display: inline-block;
203 | }
204 |
205 | .reveal q {
206 | font-style: italic;
207 | }
208 |
209 | .reveal pre {
210 | display: block;
211 | position: relative;
212 | width: 90%;
213 | margin: var(--r-block-margin) auto;
214 | text-align: left;
215 | font-size: 0.55em;
216 | font-family: var(--r-code-font);
217 | line-height: 1.2em;
218 | word-wrap: break-word;
219 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
220 | }
221 |
222 | .reveal code {
223 | font-family: var(--r-code-font);
224 | text-transform: none;
225 | tab-size: 2;
226 | }
227 |
228 | .reveal pre code {
229 | display: block;
230 | padding: 5px;
231 | overflow: auto;
232 | max-height: 400px;
233 | word-wrap: normal;
234 | }
235 |
236 | .reveal .code-wrapper {
237 | white-space: normal;
238 | }
239 |
240 | .reveal .code-wrapper code {
241 | white-space: pre;
242 | }
243 |
244 | .reveal table {
245 | margin: auto;
246 | border-collapse: collapse;
247 | border-spacing: 0;
248 | }
249 |
250 | .reveal table th {
251 | font-weight: bold;
252 | }
253 |
254 | .reveal table th,
255 | .reveal table td {
256 | text-align: left;
257 | padding: 0.2em 0.5em 0.2em 0.5em;
258 | border-bottom: 1px solid;
259 | }
260 |
261 | .reveal table th[align=center],
262 | .reveal table td[align=center] {
263 | text-align: center;
264 | }
265 |
266 | .reveal table th[align=right],
267 | .reveal table td[align=right] {
268 | text-align: right;
269 | }
270 |
271 | .reveal table tbody tr:last-child th,
272 | .reveal table tbody tr:last-child td {
273 | border-bottom: none;
274 | }
275 |
276 | .reveal sup {
277 | vertical-align: super;
278 | font-size: smaller;
279 | }
280 |
281 | .reveal sub {
282 | vertical-align: sub;
283 | font-size: smaller;
284 | }
285 |
286 | .reveal small {
287 | display: inline-block;
288 | font-size: 0.6em;
289 | line-height: 1.2em;
290 | vertical-align: top;
291 | }
292 |
293 | .reveal small * {
294 | vertical-align: top;
295 | }
296 |
297 | .reveal img {
298 | margin: var(--r-block-margin) 0;
299 | }
300 |
301 | /*********************************************
302 | * LINKS
303 | *********************************************/
304 | .reveal a {
305 | color: var(--r-link-color);
306 | text-decoration: none;
307 | transition: color 0.15s ease;
308 | }
309 |
310 | .reveal a:hover {
311 | color: var(--r-link-color-hover);
312 | text-shadow: none;
313 | border: none;
314 | }
315 |
316 | .reveal .roll span:after {
317 | color: #fff;
318 | background: var(--r-link-color-dark);
319 | }
320 |
321 | /*********************************************
322 | * Frame helper
323 | *********************************************/
324 | .reveal .r-frame {
325 | border: 4px solid var(--r-main-color);
326 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
327 | }
328 |
329 | .reveal a .r-frame {
330 | transition: all 0.15s linear;
331 | }
332 |
333 | .reveal a:hover .r-frame {
334 | border-color: var(--r-link-color);
335 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
336 | }
337 |
338 | /*********************************************
339 | * NAVIGATION CONTROLS
340 | *********************************************/
341 | .reveal .controls {
342 | color: var(--r-link-color);
343 | }
344 |
345 | /*********************************************
346 | * PROGRESS BAR
347 | *********************************************/
348 | .reveal .progress {
349 | background: rgba(0, 0, 0, 0.2);
350 | color: var(--r-link-color);
351 | }
352 |
353 | /*********************************************
354 | * PRINT BACKGROUND
355 | *********************************************/
356 | @media print {
357 | .backgrounds {
358 | background-color: var(--r-background-color);
359 | }
360 | }
--------------------------------------------------------------------------------
/css/reveal/theme/sky.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Sky theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
7 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
8 | .reveal a {
9 | line-height: 1.3em;
10 | }
11 |
12 | 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 {
13 | color: #fff;
14 | }
15 |
16 | /*********************************************
17 | * GLOBAL STYLES
18 | *********************************************/
19 | :root {
20 | --r-background-color: #f7fbfc;
21 | --r-main-font: Open Sans, sans-serif;
22 | --r-main-font-size: 40px;
23 | --r-main-color: #333;
24 | --r-block-margin: 20px;
25 | --r-heading-margin: 0 0 20px 0;
26 | --r-heading-font: Quicksand, sans-serif;
27 | --r-heading-color: #333;
28 | --r-heading-line-height: 1.2;
29 | --r-heading-letter-spacing: -0.08em;
30 | --r-heading-text-transform: uppercase;
31 | --r-heading-text-shadow: none;
32 | --r-heading-font-weight: normal;
33 | --r-heading1-text-shadow: none;
34 | --r-heading1-size: 3.77em;
35 | --r-heading2-size: 2.11em;
36 | --r-heading3-size: 1.55em;
37 | --r-heading4-size: 1em;
38 | --r-code-font: monospace;
39 | --r-link-color: #3b759e;
40 | --r-link-color-dark: #264c66;
41 | --r-link-color-hover: #74a7cb;
42 | --r-selection-background-color: #134674;
43 | --r-selection-color: #fff;
44 | }
45 |
46 | .reveal-viewport {
47 | background: #add9e4;
48 | background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
49 | background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));
50 | background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
51 | background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
52 | background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
53 | background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
54 | background-color: var(--r-background-color);
55 | }
56 |
57 | .reveal {
58 | font-family: var(--r-main-font);
59 | font-size: var(--r-main-font-size);
60 | font-weight: normal;
61 | color: var(--r-main-color);
62 | }
63 |
64 | .reveal ::selection {
65 | color: var(--r-selection-color);
66 | background: var(--r-selection-background-color);
67 | text-shadow: none;
68 | }
69 |
70 | .reveal ::-moz-selection {
71 | color: var(--r-selection-color);
72 | background: var(--r-selection-background-color);
73 | text-shadow: none;
74 | }
75 |
76 | .reveal .slides section,
77 | .reveal .slides section > section {
78 | line-height: 1.3;
79 | font-weight: inherit;
80 | }
81 |
82 | /*********************************************
83 | * HEADERS
84 | *********************************************/
85 | .reveal h1,
86 | .reveal h2,
87 | .reveal h3,
88 | .reveal h4,
89 | .reveal h5,
90 | .reveal h6 {
91 | margin: var(--r-heading-margin);
92 | color: var(--r-heading-color);
93 | font-family: var(--r-heading-font);
94 | font-weight: var(--r-heading-font-weight);
95 | line-height: var(--r-heading-line-height);
96 | letter-spacing: var(--r-heading-letter-spacing);
97 | text-transform: var(--r-heading-text-transform);
98 | text-shadow: var(--r-heading-text-shadow);
99 | word-wrap: break-word;
100 | }
101 |
102 | .reveal h1 {
103 | font-size: var(--r-heading1-size);
104 | }
105 |
106 | .reveal h2 {
107 | font-size: var(--r-heading2-size);
108 | }
109 |
110 | .reveal h3 {
111 | font-size: var(--r-heading3-size);
112 | }
113 |
114 | .reveal h4 {
115 | font-size: var(--r-heading4-size);
116 | }
117 |
118 | .reveal h1 {
119 | text-shadow: var(--r-heading1-text-shadow);
120 | }
121 |
122 | /*********************************************
123 | * OTHER
124 | *********************************************/
125 | .reveal p {
126 | margin: var(--r-block-margin) 0;
127 | line-height: 1.3;
128 | }
129 |
130 | /* Remove trailing margins after titles */
131 | .reveal h1:last-child,
132 | .reveal h2:last-child,
133 | .reveal h3:last-child,
134 | .reveal h4:last-child,
135 | .reveal h5:last-child,
136 | .reveal h6:last-child {
137 | margin-bottom: 0;
138 | }
139 |
140 | /* Ensure certain elements are never larger than the slide itself */
141 | .reveal img,
142 | .reveal video,
143 | .reveal iframe {
144 | max-width: 95%;
145 | max-height: 95%;
146 | }
147 |
148 | .reveal strong,
149 | .reveal b {
150 | font-weight: bold;
151 | }
152 |
153 | .reveal em {
154 | font-style: italic;
155 | }
156 |
157 | .reveal ol,
158 | .reveal dl,
159 | .reveal ul {
160 | display: inline-block;
161 | text-align: left;
162 | margin: 0 0 0 1em;
163 | }
164 |
165 | .reveal ol {
166 | list-style-type: decimal;
167 | }
168 |
169 | .reveal ul {
170 | list-style-type: disc;
171 | }
172 |
173 | .reveal ul ul {
174 | list-style-type: square;
175 | }
176 |
177 | .reveal ul ul ul {
178 | list-style-type: circle;
179 | }
180 |
181 | .reveal ul ul,
182 | .reveal ul ol,
183 | .reveal ol ol,
184 | .reveal ol ul {
185 | display: block;
186 | margin-left: 40px;
187 | }
188 |
189 | .reveal dt {
190 | font-weight: bold;
191 | }
192 |
193 | .reveal dd {
194 | margin-left: 40px;
195 | }
196 |
197 | .reveal blockquote {
198 | display: block;
199 | position: relative;
200 | width: 70%;
201 | margin: var(--r-block-margin) auto;
202 | padding: 5px;
203 | font-style: italic;
204 | background: rgba(255, 255, 255, 0.05);
205 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
206 | }
207 |
208 | .reveal blockquote p:first-child,
209 | .reveal blockquote p:last-child {
210 | display: inline-block;
211 | }
212 |
213 | .reveal q {
214 | font-style: italic;
215 | }
216 |
217 | .reveal pre {
218 | display: block;
219 | position: relative;
220 | width: 90%;
221 | margin: var(--r-block-margin) auto;
222 | text-align: left;
223 | font-size: 0.55em;
224 | font-family: var(--r-code-font);
225 | line-height: 1.2em;
226 | word-wrap: break-word;
227 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
228 | }
229 |
230 | .reveal code {
231 | font-family: var(--r-code-font);
232 | text-transform: none;
233 | tab-size: 2;
234 | }
235 |
236 | .reveal pre code {
237 | display: block;
238 | padding: 5px;
239 | overflow: auto;
240 | max-height: 400px;
241 | word-wrap: normal;
242 | }
243 |
244 | .reveal .code-wrapper {
245 | white-space: normal;
246 | }
247 |
248 | .reveal .code-wrapper code {
249 | white-space: pre;
250 | }
251 |
252 | .reveal table {
253 | margin: auto;
254 | border-collapse: collapse;
255 | border-spacing: 0;
256 | }
257 |
258 | .reveal table th {
259 | font-weight: bold;
260 | }
261 |
262 | .reveal table th,
263 | .reveal table td {
264 | text-align: left;
265 | padding: 0.2em 0.5em 0.2em 0.5em;
266 | border-bottom: 1px solid;
267 | }
268 |
269 | .reveal table th[align=center],
270 | .reveal table td[align=center] {
271 | text-align: center;
272 | }
273 |
274 | .reveal table th[align=right],
275 | .reveal table td[align=right] {
276 | text-align: right;
277 | }
278 |
279 | .reveal table tbody tr:last-child th,
280 | .reveal table tbody tr:last-child td {
281 | border-bottom: none;
282 | }
283 |
284 | .reveal sup {
285 | vertical-align: super;
286 | font-size: smaller;
287 | }
288 |
289 | .reveal sub {
290 | vertical-align: sub;
291 | font-size: smaller;
292 | }
293 |
294 | .reveal small {
295 | display: inline-block;
296 | font-size: 0.6em;
297 | line-height: 1.2em;
298 | vertical-align: top;
299 | }
300 |
301 | .reveal small * {
302 | vertical-align: top;
303 | }
304 |
305 | .reveal img {
306 | margin: var(--r-block-margin) 0;
307 | }
308 |
309 | /*********************************************
310 | * LINKS
311 | *********************************************/
312 | .reveal a {
313 | color: var(--r-link-color);
314 | text-decoration: none;
315 | transition: color 0.15s ease;
316 | }
317 |
318 | .reveal a:hover {
319 | color: var(--r-link-color-hover);
320 | text-shadow: none;
321 | border: none;
322 | }
323 |
324 | .reveal .roll span:after {
325 | color: #fff;
326 | background: var(--r-link-color-dark);
327 | }
328 |
329 | /*********************************************
330 | * Frame helper
331 | *********************************************/
332 | .reveal .r-frame {
333 | border: 4px solid var(--r-main-color);
334 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
335 | }
336 |
337 | .reveal a .r-frame {
338 | transition: all 0.15s linear;
339 | }
340 |
341 | .reveal a:hover .r-frame {
342 | border-color: var(--r-link-color);
343 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
344 | }
345 |
346 | /*********************************************
347 | * NAVIGATION CONTROLS
348 | *********************************************/
349 | .reveal .controls {
350 | color: var(--r-link-color);
351 | }
352 |
353 | /*********************************************
354 | * PROGRESS BAR
355 | *********************************************/
356 | .reveal .progress {
357 | background: rgba(0, 0, 0, 0.2);
358 | color: var(--r-link-color);
359 | }
360 |
361 | /*********************************************
362 | * PRINT BACKGROUND
363 | *********************************************/
364 | @media print {
365 | .backgrounds {
366 | background-color: var(--r-background-color);
367 | }
368 | }
--------------------------------------------------------------------------------
/css/reveal/theme/solarized.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Light theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 | @import url(./fonts/league-gothic/league-gothic.css);
6 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
7 | /**
8 | * Solarized colors by Ethan Schoonover
9 | */
10 | html * {
11 | color-profile: sRGB;
12 | rendering-intent: auto;
13 | }
14 |
15 | /*********************************************
16 | * GLOBAL STYLES
17 | *********************************************/
18 | :root {
19 | --r-background-color: #fdf6e3;
20 | --r-main-font: Lato, sans-serif;
21 | --r-main-font-size: 40px;
22 | --r-main-color: #657b83;
23 | --r-block-margin: 20px;
24 | --r-heading-margin: 0 0 20px 0;
25 | --r-heading-font: League Gothic, Impact, sans-serif;
26 | --r-heading-color: #586e75;
27 | --r-heading-line-height: 1.2;
28 | --r-heading-letter-spacing: normal;
29 | --r-heading-text-transform: uppercase;
30 | --r-heading-text-shadow: none;
31 | --r-heading-font-weight: normal;
32 | --r-heading1-text-shadow: none;
33 | --r-heading1-size: 3.77em;
34 | --r-heading2-size: 2.11em;
35 | --r-heading3-size: 1.55em;
36 | --r-heading4-size: 1em;
37 | --r-code-font: monospace;
38 | --r-link-color: #268bd2;
39 | --r-link-color-dark: #1a6091;
40 | --r-link-color-hover: #78b9e6;
41 | --r-selection-background-color: #d33682;
42 | --r-selection-color: #fff;
43 | }
44 |
45 | .reveal-viewport {
46 | background: #fdf6e3;
47 | background-color: var(--r-background-color);
48 | }
49 |
50 | .reveal {
51 | font-family: var(--r-main-font);
52 | font-size: var(--r-main-font-size);
53 | font-weight: normal;
54 | color: var(--r-main-color);
55 | }
56 |
57 | .reveal ::selection {
58 | color: var(--r-selection-color);
59 | background: var(--r-selection-background-color);
60 | text-shadow: none;
61 | }
62 |
63 | .reveal ::-moz-selection {
64 | color: var(--r-selection-color);
65 | background: var(--r-selection-background-color);
66 | text-shadow: none;
67 | }
68 |
69 | .reveal .slides section,
70 | .reveal .slides section > section {
71 | line-height: 1.3;
72 | font-weight: inherit;
73 | }
74 |
75 | /*********************************************
76 | * HEADERS
77 | *********************************************/
78 | .reveal h1,
79 | .reveal h2,
80 | .reveal h3,
81 | .reveal h4,
82 | .reveal h5,
83 | .reveal h6 {
84 | margin: var(--r-heading-margin);
85 | color: var(--r-heading-color);
86 | font-family: var(--r-heading-font);
87 | font-weight: var(--r-heading-font-weight);
88 | line-height: var(--r-heading-line-height);
89 | letter-spacing: var(--r-heading-letter-spacing);
90 | text-transform: var(--r-heading-text-transform);
91 | text-shadow: var(--r-heading-text-shadow);
92 | word-wrap: break-word;
93 | }
94 |
95 | .reveal h1 {
96 | font-size: var(--r-heading1-size);
97 | }
98 |
99 | .reveal h2 {
100 | font-size: var(--r-heading2-size);
101 | }
102 |
103 | .reveal h3 {
104 | font-size: var(--r-heading3-size);
105 | }
106 |
107 | .reveal h4 {
108 | font-size: var(--r-heading4-size);
109 | }
110 |
111 | .reveal h1 {
112 | text-shadow: var(--r-heading1-text-shadow);
113 | }
114 |
115 | /*********************************************
116 | * OTHER
117 | *********************************************/
118 | .reveal p {
119 | margin: var(--r-block-margin) 0;
120 | line-height: 1.3;
121 | }
122 |
123 | /* Remove trailing margins after titles */
124 | .reveal h1:last-child,
125 | .reveal h2:last-child,
126 | .reveal h3:last-child,
127 | .reveal h4:last-child,
128 | .reveal h5:last-child,
129 | .reveal h6:last-child {
130 | margin-bottom: 0;
131 | }
132 |
133 | /* Ensure certain elements are never larger than the slide itself */
134 | .reveal img,
135 | .reveal video,
136 | .reveal iframe {
137 | max-width: 95%;
138 | max-height: 95%;
139 | }
140 |
141 | .reveal strong,
142 | .reveal b {
143 | font-weight: bold;
144 | }
145 |
146 | .reveal em {
147 | font-style: italic;
148 | }
149 |
150 | .reveal ol,
151 | .reveal dl,
152 | .reveal ul {
153 | display: inline-block;
154 | text-align: left;
155 | margin: 0 0 0 1em;
156 | }
157 |
158 | .reveal ol {
159 | list-style-type: decimal;
160 | }
161 |
162 | .reveal ul {
163 | list-style-type: disc;
164 | }
165 |
166 | .reveal ul ul {
167 | list-style-type: square;
168 | }
169 |
170 | .reveal ul ul ul {
171 | list-style-type: circle;
172 | }
173 |
174 | .reveal ul ul,
175 | .reveal ul ol,
176 | .reveal ol ol,
177 | .reveal ol ul {
178 | display: block;
179 | margin-left: 40px;
180 | }
181 |
182 | .reveal dt {
183 | font-weight: bold;
184 | }
185 |
186 | .reveal dd {
187 | margin-left: 40px;
188 | }
189 |
190 | .reveal blockquote {
191 | display: block;
192 | position: relative;
193 | width: 70%;
194 | margin: var(--r-block-margin) auto;
195 | padding: 5px;
196 | font-style: italic;
197 | background: rgba(255, 255, 255, 0.05);
198 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
199 | }
200 |
201 | .reveal blockquote p:first-child,
202 | .reveal blockquote p:last-child {
203 | display: inline-block;
204 | }
205 |
206 | .reveal q {
207 | font-style: italic;
208 | }
209 |
210 | .reveal pre {
211 | display: block;
212 | position: relative;
213 | width: 90%;
214 | margin: var(--r-block-margin) auto;
215 | text-align: left;
216 | font-size: 0.55em;
217 | font-family: var(--r-code-font);
218 | line-height: 1.2em;
219 | word-wrap: break-word;
220 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
221 | }
222 |
223 | .reveal code {
224 | font-family: var(--r-code-font);
225 | text-transform: none;
226 | tab-size: 2;
227 | }
228 |
229 | .reveal pre code {
230 | display: block;
231 | padding: 5px;
232 | overflow: auto;
233 | max-height: 400px;
234 | word-wrap: normal;
235 | }
236 |
237 | .reveal .code-wrapper {
238 | white-space: normal;
239 | }
240 |
241 | .reveal .code-wrapper code {
242 | white-space: pre;
243 | }
244 |
245 | .reveal table {
246 | margin: auto;
247 | border-collapse: collapse;
248 | border-spacing: 0;
249 | }
250 |
251 | .reveal table th {
252 | font-weight: bold;
253 | }
254 |
255 | .reveal table th,
256 | .reveal table td {
257 | text-align: left;
258 | padding: 0.2em 0.5em 0.2em 0.5em;
259 | border-bottom: 1px solid;
260 | }
261 |
262 | .reveal table th[align=center],
263 | .reveal table td[align=center] {
264 | text-align: center;
265 | }
266 |
267 | .reveal table th[align=right],
268 | .reveal table td[align=right] {
269 | text-align: right;
270 | }
271 |
272 | .reveal table tbody tr:last-child th,
273 | .reveal table tbody tr:last-child td {
274 | border-bottom: none;
275 | }
276 |
277 | .reveal sup {
278 | vertical-align: super;
279 | font-size: smaller;
280 | }
281 |
282 | .reveal sub {
283 | vertical-align: sub;
284 | font-size: smaller;
285 | }
286 |
287 | .reveal small {
288 | display: inline-block;
289 | font-size: 0.6em;
290 | line-height: 1.2em;
291 | vertical-align: top;
292 | }
293 |
294 | .reveal small * {
295 | vertical-align: top;
296 | }
297 |
298 | .reveal img {
299 | margin: var(--r-block-margin) 0;
300 | }
301 |
302 | /*********************************************
303 | * LINKS
304 | *********************************************/
305 | .reveal a {
306 | color: var(--r-link-color);
307 | text-decoration: none;
308 | transition: color 0.15s ease;
309 | }
310 |
311 | .reveal a:hover {
312 | color: var(--r-link-color-hover);
313 | text-shadow: none;
314 | border: none;
315 | }
316 |
317 | .reveal .roll span:after {
318 | color: #fff;
319 | background: var(--r-link-color-dark);
320 | }
321 |
322 | /*********************************************
323 | * Frame helper
324 | *********************************************/
325 | .reveal .r-frame {
326 | border: 4px solid var(--r-main-color);
327 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
328 | }
329 |
330 | .reveal a .r-frame {
331 | transition: all 0.15s linear;
332 | }
333 |
334 | .reveal a:hover .r-frame {
335 | border-color: var(--r-link-color);
336 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
337 | }
338 |
339 | /*********************************************
340 | * NAVIGATION CONTROLS
341 | *********************************************/
342 | .reveal .controls {
343 | color: var(--r-link-color);
344 | }
345 |
346 | /*********************************************
347 | * PROGRESS BAR
348 | *********************************************/
349 | .reveal .progress {
350 | background: rgba(0, 0, 0, 0.2);
351 | color: var(--r-link-color);
352 | }
353 |
354 | /*********************************************
355 | * PRINT BACKGROUND
356 | *********************************************/
357 | @media print {
358 | .backgrounds {
359 | background-color: var(--r-background-color);
360 | }
361 | }
--------------------------------------------------------------------------------
/css/reveal/theme/white-contrast.css:
--------------------------------------------------------------------------------
1 | /**
2 | * White compact & high contrast reveal.js theme, with headers not in capitals.
3 | *
4 | * By Peter Kehl. Based on white.(s)css by Hakim El Hattab, http://hakim.se
5 | *
6 | * - Keep the source similar to black.css - for easy comparison.
7 | * - $mainFontSize controls code blocks, too (although under some ratio).
8 | */
9 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
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: Source Sans Pro, Helvetica, sans-serif;
20 | --r-main-font-size: 42px;
21 | --r-main-color: #000;
22 | --r-block-margin: 20px;
23 | --r-heading-margin: 0 0 20px 0;
24 | --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
25 | --r-heading-color: #000;
26 | --r-heading-line-height: 1.2;
27 | --r-heading-letter-spacing: normal;
28 | --r-heading-text-transform: uppercase;
29 | --r-heading-text-shadow: none;
30 | --r-heading-font-weight: 600;
31 | --r-heading1-text-shadow: none;
32 | --r-heading1-size: 2.5em;
33 | --r-heading2-size: 1.6em;
34 | --r-heading3-size: 1.3em;
35 | --r-heading4-size: 1em;
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;
42 | }
43 |
44 | .reveal-viewport {
45 | background: #fff;
46 | background-color: var(--r-background-color);
47 | }
48 |
49 | .reveal {
50 | font-family: var(--r-main-font);
51 | font-size: var(--r-main-font-size);
52 | font-weight: normal;
53 | color: var(--r-main-color);
54 | }
55 |
56 | .reveal ::selection {
57 | color: var(--r-selection-color);
58 | background: var(--r-selection-background-color);
59 | text-shadow: none;
60 | }
61 |
62 | .reveal ::-moz-selection {
63 | color: var(--r-selection-color);
64 | background: var(--r-selection-background-color);
65 | text-shadow: none;
66 | }
67 |
68 | .reveal .slides section,
69 | .reveal .slides section > section {
70 | line-height: 1.3;
71 | font-weight: inherit;
72 | }
73 |
74 | /*********************************************
75 | * HEADERS
76 | *********************************************/
77 | .reveal h1,
78 | .reveal h2,
79 | .reveal h3,
80 | .reveal h4,
81 | .reveal h5,
82 | .reveal h6 {
83 | margin: var(--r-heading-margin);
84 | color: var(--r-heading-color);
85 | font-family: var(--r-heading-font);
86 | font-weight: var(--r-heading-font-weight);
87 | line-height: var(--r-heading-line-height);
88 | letter-spacing: var(--r-heading-letter-spacing);
89 | text-transform: var(--r-heading-text-transform);
90 | text-shadow: var(--r-heading-text-shadow);
91 | word-wrap: break-word;
92 | }
93 |
94 | .reveal h1 {
95 | font-size: var(--r-heading1-size);
96 | }
97 |
98 | .reveal h2 {
99 | font-size: var(--r-heading2-size);
100 | }
101 |
102 | .reveal h3 {
103 | font-size: var(--r-heading3-size);
104 | }
105 |
106 | .reveal h4 {
107 | font-size: var(--r-heading4-size);
108 | }
109 |
110 | .reveal h1 {
111 | text-shadow: var(--r-heading1-text-shadow);
112 | }
113 |
114 | /*********************************************
115 | * OTHER
116 | *********************************************/
117 | .reveal p {
118 | margin: var(--r-block-margin) 0;
119 | line-height: 1.3;
120 | }
121 |
122 | /* Remove trailing margins after titles */
123 | .reveal h1:last-child,
124 | .reveal h2:last-child,
125 | .reveal h3:last-child,
126 | .reveal h4:last-child,
127 | .reveal h5:last-child,
128 | .reveal h6:last-child {
129 | margin-bottom: 0;
130 | }
131 |
132 | /* Ensure certain elements are never larger than the slide itself */
133 | .reveal img,
134 | .reveal video,
135 | .reveal iframe {
136 | max-width: 95%;
137 | max-height: 95%;
138 | }
139 |
140 | .reveal strong,
141 | .reveal b {
142 | font-weight: bold;
143 | }
144 |
145 | .reveal em {
146 | font-style: italic;
147 | }
148 |
149 | .reveal ol,
150 | .reveal dl,
151 | .reveal ul {
152 | display: inline-block;
153 | text-align: left;
154 | margin: 0 0 0 1em;
155 | }
156 |
157 | .reveal ol {
158 | list-style-type: decimal;
159 | }
160 |
161 | .reveal ul {
162 | list-style-type: disc;
163 | }
164 |
165 | .reveal ul ul {
166 | list-style-type: square;
167 | }
168 |
169 | .reveal ul ul ul {
170 | list-style-type: circle;
171 | }
172 |
173 | .reveal ul ul,
174 | .reveal ul ol,
175 | .reveal ol ol,
176 | .reveal ol ul {
177 | display: block;
178 | margin-left: 40px;
179 | }
180 |
181 | .reveal dt {
182 | font-weight: bold;
183 | }
184 |
185 | .reveal dd {
186 | margin-left: 40px;
187 | }
188 |
189 | .reveal blockquote {
190 | display: block;
191 | position: relative;
192 | width: 70%;
193 | margin: var(--r-block-margin) auto;
194 | padding: 5px;
195 | font-style: italic;
196 | background: rgba(255, 255, 255, 0.05);
197 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
198 | }
199 |
200 | .reveal blockquote p:first-child,
201 | .reveal blockquote p:last-child {
202 | display: inline-block;
203 | }
204 |
205 | .reveal q {
206 | font-style: italic;
207 | }
208 |
209 | .reveal pre {
210 | display: block;
211 | position: relative;
212 | width: 90%;
213 | margin: var(--r-block-margin) auto;
214 | text-align: left;
215 | font-size: 0.55em;
216 | font-family: var(--r-code-font);
217 | line-height: 1.2em;
218 | word-wrap: break-word;
219 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
220 | }
221 |
222 | .reveal code {
223 | font-family: var(--r-code-font);
224 | text-transform: none;
225 | tab-size: 2;
226 | }
227 |
228 | .reveal pre code {
229 | display: block;
230 | padding: 5px;
231 | overflow: auto;
232 | max-height: 400px;
233 | word-wrap: normal;
234 | }
235 |
236 | .reveal .code-wrapper {
237 | white-space: normal;
238 | }
239 |
240 | .reveal .code-wrapper code {
241 | white-space: pre;
242 | }
243 |
244 | .reveal table {
245 | margin: auto;
246 | border-collapse: collapse;
247 | border-spacing: 0;
248 | }
249 |
250 | .reveal table th {
251 | font-weight: bold;
252 | }
253 |
254 | .reveal table th,
255 | .reveal table td {
256 | text-align: left;
257 | padding: 0.2em 0.5em 0.2em 0.5em;
258 | border-bottom: 1px solid;
259 | }
260 |
261 | .reveal table th[align=center],
262 | .reveal table td[align=center] {
263 | text-align: center;
264 | }
265 |
266 | .reveal table th[align=right],
267 | .reveal table td[align=right] {
268 | text-align: right;
269 | }
270 |
271 | .reveal table tbody tr:last-child th,
272 | .reveal table tbody tr:last-child td {
273 | border-bottom: none;
274 | }
275 |
276 | .reveal sup {
277 | vertical-align: super;
278 | font-size: smaller;
279 | }
280 |
281 | .reveal sub {
282 | vertical-align: sub;
283 | font-size: smaller;
284 | }
285 |
286 | .reveal small {
287 | display: inline-block;
288 | font-size: 0.6em;
289 | line-height: 1.2em;
290 | vertical-align: top;
291 | }
292 |
293 | .reveal small * {
294 | vertical-align: top;
295 | }
296 |
297 | .reveal img {
298 | margin: var(--r-block-margin) 0;
299 | }
300 |
301 | /*********************************************
302 | * LINKS
303 | *********************************************/
304 | .reveal a {
305 | color: var(--r-link-color);
306 | text-decoration: none;
307 | transition: color 0.15s ease;
308 | }
309 |
310 | .reveal a:hover {
311 | color: var(--r-link-color-hover);
312 | text-shadow: none;
313 | border: none;
314 | }
315 |
316 | .reveal .roll span:after {
317 | color: #fff;
318 | background: var(--r-link-color-dark);
319 | }
320 |
321 | /*********************************************
322 | * Frame helper
323 | *********************************************/
324 | .reveal .r-frame {
325 | border: 4px solid var(--r-main-color);
326 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
327 | }
328 |
329 | .reveal a .r-frame {
330 | transition: all 0.15s linear;
331 | }
332 |
333 | .reveal a:hover .r-frame {
334 | border-color: var(--r-link-color);
335 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
336 | }
337 |
338 | /*********************************************
339 | * NAVIGATION CONTROLS
340 | *********************************************/
341 | .reveal .controls {
342 | color: var(--r-link-color);
343 | }
344 |
345 | /*********************************************
346 | * PROGRESS BAR
347 | *********************************************/
348 | .reveal .progress {
349 | background: rgba(0, 0, 0, 0.2);
350 | color: var(--r-link-color);
351 | }
352 |
353 | /*********************************************
354 | * PRINT BACKGROUND
355 | *********************************************/
356 | @media print {
357 | .backgrounds {
358 | background-color: var(--r-background-color);
359 | }
360 | }
--------------------------------------------------------------------------------
/css/reveal/theme/white.css:
--------------------------------------------------------------------------------
1 | /**
2 | * White theme for reveal.js. This is the opposite of the 'black' theme.
3 | *
4 | * By Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
7 | 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 {
8 | color: #fff;
9 | }
10 |
11 | /*********************************************
12 | * GLOBAL STYLES
13 | *********************************************/
14 | :root {
15 | --r-background-color: #fff;
16 | --r-main-font: Source Sans Pro, Helvetica, sans-serif;
17 | --r-main-font-size: 42px;
18 | --r-main-color: #222;
19 | --r-block-margin: 20px;
20 | --r-heading-margin: 0 0 20px 0;
21 | --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
22 | --r-heading-color: #222;
23 | --r-heading-line-height: 1.2;
24 | --r-heading-letter-spacing: normal;
25 | --r-heading-text-transform: uppercase;
26 | --r-heading-text-shadow: none;
27 | --r-heading-font-weight: 600;
28 | --r-heading1-text-shadow: none;
29 | --r-heading1-size: 2.5em;
30 | --r-heading2-size: 1.6em;
31 | --r-heading3-size: 1.3em;
32 | --r-heading4-size: 1em;
33 | --r-code-font: monospace;
34 | --r-link-color: #2a76dd;
35 | --r-link-color-dark: #1a53a1;
36 | --r-link-color-hover: #6ca0e8;
37 | --r-selection-background-color: #98bdef;
38 | --r-selection-color: #fff;
39 | }
40 |
41 | .reveal-viewport {
42 | background: #fff;
43 | background-color: var(--r-background-color);
44 | }
45 |
46 | .reveal {
47 | font-family: var(--r-main-font);
48 | font-size: var(--r-main-font-size);
49 | font-weight: normal;
50 | color: var(--r-main-color);
51 | }
52 |
53 | .reveal ::selection {
54 | color: var(--r-selection-color);
55 | background: var(--r-selection-background-color);
56 | text-shadow: none;
57 | }
58 |
59 | .reveal ::-moz-selection {
60 | color: var(--r-selection-color);
61 | background: var(--r-selection-background-color);
62 | text-shadow: none;
63 | }
64 |
65 | .reveal .slides section,
66 | .reveal .slides section > section {
67 | line-height: 1.3;
68 | font-weight: inherit;
69 | }
70 |
71 | /*********************************************
72 | * HEADERS
73 | *********************************************/
74 | .reveal h1,
75 | .reveal h2,
76 | .reveal h3,
77 | .reveal h4,
78 | .reveal h5,
79 | .reveal h6 {
80 | margin: var(--r-heading-margin);
81 | color: var(--r-heading-color);
82 | font-family: var(--r-heading-font);
83 | font-weight: var(--r-heading-font-weight);
84 | line-height: var(--r-heading-line-height);
85 | letter-spacing: var(--r-heading-letter-spacing);
86 | text-transform: var(--r-heading-text-transform);
87 | text-shadow: var(--r-heading-text-shadow);
88 | word-wrap: break-word;
89 | }
90 |
91 | .reveal h1 {
92 | font-size: var(--r-heading1-size);
93 | }
94 |
95 | .reveal h2 {
96 | font-size: var(--r-heading2-size);
97 | }
98 |
99 | .reveal h3 {
100 | font-size: var(--r-heading3-size);
101 | }
102 |
103 | .reveal h4 {
104 | font-size: var(--r-heading4-size);
105 | }
106 |
107 | .reveal h1 {
108 | text-shadow: var(--r-heading1-text-shadow);
109 | }
110 |
111 | /*********************************************
112 | * OTHER
113 | *********************************************/
114 | .reveal p {
115 | margin: var(--r-block-margin) 0;
116 | line-height: 1.3;
117 | }
118 |
119 | /* Remove trailing margins after titles */
120 | .reveal h1:last-child,
121 | .reveal h2:last-child,
122 | .reveal h3:last-child,
123 | .reveal h4:last-child,
124 | .reveal h5:last-child,
125 | .reveal h6:last-child {
126 | margin-bottom: 0;
127 | }
128 |
129 | /* Ensure certain elements are never larger than the slide itself */
130 | .reveal img,
131 | .reveal video,
132 | .reveal iframe {
133 | max-width: 95%;
134 | max-height: 95%;
135 | }
136 |
137 | .reveal strong,
138 | .reveal b {
139 | font-weight: bold;
140 | }
141 |
142 | .reveal em {
143 | font-style: italic;
144 | }
145 |
146 | .reveal ol,
147 | .reveal dl,
148 | .reveal ul {
149 | display: inline-block;
150 | text-align: left;
151 | margin: 0 0 0 1em;
152 | }
153 |
154 | .reveal ol {
155 | list-style-type: decimal;
156 | }
157 |
158 | .reveal ul {
159 | list-style-type: disc;
160 | }
161 |
162 | .reveal ul ul {
163 | list-style-type: square;
164 | }
165 |
166 | .reveal ul ul ul {
167 | list-style-type: circle;
168 | }
169 |
170 | .reveal ul ul,
171 | .reveal ul ol,
172 | .reveal ol ol,
173 | .reveal ol ul {
174 | display: block;
175 | margin-left: 40px;
176 | }
177 |
178 | .reveal dt {
179 | font-weight: bold;
180 | }
181 |
182 | .reveal dd {
183 | margin-left: 40px;
184 | }
185 |
186 | .reveal blockquote {
187 | display: block;
188 | position: relative;
189 | width: 70%;
190 | margin: var(--r-block-margin) auto;
191 | padding: 5px;
192 | font-style: italic;
193 | background: rgba(255, 255, 255, 0.05);
194 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
195 | }
196 |
197 | .reveal blockquote p:first-child,
198 | .reveal blockquote p:last-child {
199 | display: inline-block;
200 | }
201 |
202 | .reveal q {
203 | font-style: italic;
204 | }
205 |
206 | .reveal pre {
207 | display: block;
208 | position: relative;
209 | width: 90%;
210 | margin: var(--r-block-margin) auto;
211 | text-align: left;
212 | font-size: 0.55em;
213 | font-family: var(--r-code-font);
214 | line-height: 1.2em;
215 | word-wrap: break-word;
216 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
217 | }
218 |
219 | .reveal code {
220 | font-family: var(--r-code-font);
221 | text-transform: none;
222 | tab-size: 2;
223 | }
224 |
225 | .reveal pre code {
226 | display: block;
227 | padding: 5px;
228 | overflow: auto;
229 | max-height: 400px;
230 | word-wrap: normal;
231 | }
232 |
233 | .reveal .code-wrapper {
234 | white-space: normal;
235 | }
236 |
237 | .reveal .code-wrapper code {
238 | white-space: pre;
239 | }
240 |
241 | .reveal table {
242 | margin: auto;
243 | border-collapse: collapse;
244 | border-spacing: 0;
245 | }
246 |
247 | .reveal table th {
248 | font-weight: bold;
249 | }
250 |
251 | .reveal table th,
252 | .reveal table td {
253 | text-align: left;
254 | padding: 0.2em 0.5em 0.2em 0.5em;
255 | border-bottom: 1px solid;
256 | }
257 |
258 | .reveal table th[align=center],
259 | .reveal table td[align=center] {
260 | text-align: center;
261 | }
262 |
263 | .reveal table th[align=right],
264 | .reveal table td[align=right] {
265 | text-align: right;
266 | }
267 |
268 | .reveal table tbody tr:last-child th,
269 | .reveal table tbody tr:last-child td {
270 | border-bottom: none;
271 | }
272 |
273 | .reveal sup {
274 | vertical-align: super;
275 | font-size: smaller;
276 | }
277 |
278 | .reveal sub {
279 | vertical-align: sub;
280 | font-size: smaller;
281 | }
282 |
283 | .reveal small {
284 | display: inline-block;
285 | font-size: 0.6em;
286 | line-height: 1.2em;
287 | vertical-align: top;
288 | }
289 |
290 | .reveal small * {
291 | vertical-align: top;
292 | }
293 |
294 | .reveal img {
295 | margin: var(--r-block-margin) 0;
296 | }
297 |
298 | /*********************************************
299 | * LINKS
300 | *********************************************/
301 | .reveal a {
302 | color: var(--r-link-color);
303 | text-decoration: none;
304 | transition: color 0.15s ease;
305 | }
306 |
307 | .reveal a:hover {
308 | color: var(--r-link-color-hover);
309 | text-shadow: none;
310 | border: none;
311 | }
312 |
313 | .reveal .roll span:after {
314 | color: #fff;
315 | background: var(--r-link-color-dark);
316 | }
317 |
318 | /*********************************************
319 | * Frame helper
320 | *********************************************/
321 | .reveal .r-frame {
322 | border: 4px solid var(--r-main-color);
323 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
324 | }
325 |
326 | .reveal a .r-frame {
327 | transition: all 0.15s linear;
328 | }
329 |
330 | .reveal a:hover .r-frame {
331 | border-color: var(--r-link-color);
332 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
333 | }
334 |
335 | /*********************************************
336 | * NAVIGATION CONTROLS
337 | *********************************************/
338 | .reveal .controls {
339 | color: var(--r-link-color);
340 | }
341 |
342 | /*********************************************
343 | * PROGRESS BAR
344 | *********************************************/
345 | .reveal .progress {
346 | background: rgba(0, 0, 0, 0.2);
347 | color: var(--r-link-color);
348 | }
349 |
350 | /*********************************************
351 | * PRINT BACKGROUND
352 | *********************************************/
353 | @media print {
354 | .backgrounds {
355 | background-color: var(--r-background-color);
356 | }
357 | }
--------------------------------------------------------------------------------
/css/reveal/theme/white_contrast_compact_verbatim_headers.css:
--------------------------------------------------------------------------------
1 | /**
2 | * White compact & high contrast reveal.js theme, with headers not in capitals.
3 | *
4 | * By Peter Kehl. Based on white.(s)css by Hakim El Hattab, http://hakim.se
5 | *
6 | * - Keep the source similar to black.css - for easy comparison.
7 | * - $mainFontSize controls code blocks, too (although under some ratio).
8 | */
9 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
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: Source Sans Pro, Helvetica, sans-serif;
20 | --r-main-font-size: 25px;
21 | --r-main-color: #000;
22 | --r-block-margin: 20px;
23 | --r-heading-margin: 0 0 20px 0;
24 | --r-heading-font: Source Sans Pro, Helvetica, sans-serif;
25 | --r-heading-color: #000;
26 | --r-heading-line-height: 1.2;
27 | --r-heading-letter-spacing: normal;
28 | --r-heading-text-transform: none;
29 | --r-heading-text-shadow: none;
30 | --r-heading-font-weight: 450;
31 | --r-heading1-text-shadow: none;
32 | --r-heading1-size: 2.5em;
33 | --r-heading2-size: 1.6em;
34 | --r-heading3-size: 1.3em;
35 | --r-heading4-size: 1em;
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;
42 | }
43 |
44 | .reveal-viewport {
45 | background: #fff;
46 | background-color: var(--r-background-color);
47 | }
48 |
49 | .reveal {
50 | font-family: var(--r-main-font);
51 | font-size: var(--r-main-font-size);
52 | font-weight: normal;
53 | color: var(--r-main-color);
54 | }
55 |
56 | .reveal ::selection {
57 | color: var(--r-selection-color);
58 | background: var(--r-selection-background-color);
59 | text-shadow: none;
60 | }
61 |
62 | .reveal ::-moz-selection {
63 | color: var(--r-selection-color);
64 | background: var(--r-selection-background-color);
65 | text-shadow: none;
66 | }
67 |
68 | .reveal .slides section,
69 | .reveal .slides section > section {
70 | line-height: 1.3;
71 | font-weight: inherit;
72 | }
73 |
74 | /*********************************************
75 | * HEADERS
76 | *********************************************/
77 | .reveal h1,
78 | .reveal h2,
79 | .reveal h3,
80 | .reveal h4,
81 | .reveal h5,
82 | .reveal h6 {
83 | margin: var(--r-heading-margin);
84 | color: var(--r-heading-color);
85 | font-family: var(--r-heading-font);
86 | font-weight: var(--r-heading-font-weight);
87 | line-height: var(--r-heading-line-height);
88 | letter-spacing: var(--r-heading-letter-spacing);
89 | text-transform: var(--r-heading-text-transform);
90 | text-shadow: var(--r-heading-text-shadow);
91 | word-wrap: break-word;
92 | }
93 |
94 | .reveal h1 {
95 | font-size: var(--r-heading1-size);
96 | }
97 |
98 | .reveal h2 {
99 | font-size: var(--r-heading2-size);
100 | }
101 |
102 | .reveal h3 {
103 | font-size: var(--r-heading3-size);
104 | }
105 |
106 | .reveal h4 {
107 | font-size: var(--r-heading4-size);
108 | }
109 |
110 | .reveal h1 {
111 | text-shadow: var(--r-heading1-text-shadow);
112 | }
113 |
114 | /*********************************************
115 | * OTHER
116 | *********************************************/
117 | .reveal p {
118 | margin: var(--r-block-margin) 0;
119 | line-height: 1.3;
120 | }
121 |
122 | /* Remove trailing margins after titles */
123 | .reveal h1:last-child,
124 | .reveal h2:last-child,
125 | .reveal h3:last-child,
126 | .reveal h4:last-child,
127 | .reveal h5:last-child,
128 | .reveal h6:last-child {
129 | margin-bottom: 0;
130 | }
131 |
132 | /* Ensure certain elements are never larger than the slide itself */
133 | .reveal img,
134 | .reveal video,
135 | .reveal iframe {
136 | max-width: 95%;
137 | max-height: 95%;
138 | }
139 |
140 | .reveal strong,
141 | .reveal b {
142 | font-weight: bold;
143 | }
144 |
145 | .reveal em {
146 | font-style: italic;
147 | }
148 |
149 | .reveal ol,
150 | .reveal dl,
151 | .reveal ul {
152 | display: inline-block;
153 | text-align: left;
154 | margin: 0 0 0 1em;
155 | }
156 |
157 | .reveal ol {
158 | list-style-type: decimal;
159 | }
160 |
161 | .reveal ul {
162 | list-style-type: disc;
163 | }
164 |
165 | .reveal ul ul {
166 | list-style-type: square;
167 | }
168 |
169 | .reveal ul ul ul {
170 | list-style-type: circle;
171 | }
172 |
173 | .reveal ul ul,
174 | .reveal ul ol,
175 | .reveal ol ol,
176 | .reveal ol ul {
177 | display: block;
178 | margin-left: 40px;
179 | }
180 |
181 | .reveal dt {
182 | font-weight: bold;
183 | }
184 |
185 | .reveal dd {
186 | margin-left: 40px;
187 | }
188 |
189 | .reveal blockquote {
190 | display: block;
191 | position: relative;
192 | width: 70%;
193 | margin: var(--r-block-margin) auto;
194 | padding: 5px;
195 | font-style: italic;
196 | background: rgba(255, 255, 255, 0.05);
197 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
198 | }
199 |
200 | .reveal blockquote p:first-child,
201 | .reveal blockquote p:last-child {
202 | display: inline-block;
203 | }
204 |
205 | .reveal q {
206 | font-style: italic;
207 | }
208 |
209 | .reveal pre {
210 | display: block;
211 | position: relative;
212 | width: 90%;
213 | margin: var(--r-block-margin) auto;
214 | text-align: left;
215 | font-size: 0.55em;
216 | font-family: var(--r-code-font);
217 | line-height: 1.2em;
218 | word-wrap: break-word;
219 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
220 | }
221 |
222 | .reveal code {
223 | font-family: var(--r-code-font);
224 | text-transform: none;
225 | tab-size: 2;
226 | }
227 |
228 | .reveal pre code {
229 | display: block;
230 | padding: 5px;
231 | overflow: auto;
232 | max-height: 400px;
233 | word-wrap: normal;
234 | }
235 |
236 | .reveal .code-wrapper {
237 | white-space: normal;
238 | }
239 |
240 | .reveal .code-wrapper code {
241 | white-space: pre;
242 | }
243 |
244 | .reveal table {
245 | margin: auto;
246 | border-collapse: collapse;
247 | border-spacing: 0;
248 | }
249 |
250 | .reveal table th {
251 | font-weight: bold;
252 | }
253 |
254 | .reveal table th,
255 | .reveal table td {
256 | text-align: left;
257 | padding: 0.2em 0.5em 0.2em 0.5em;
258 | border-bottom: 1px solid;
259 | }
260 |
261 | .reveal table th[align=center],
262 | .reveal table td[align=center] {
263 | text-align: center;
264 | }
265 |
266 | .reveal table th[align=right],
267 | .reveal table td[align=right] {
268 | text-align: right;
269 | }
270 |
271 | .reveal table tbody tr:last-child th,
272 | .reveal table tbody tr:last-child td {
273 | border-bottom: none;
274 | }
275 |
276 | .reveal sup {
277 | vertical-align: super;
278 | font-size: smaller;
279 | }
280 |
281 | .reveal sub {
282 | vertical-align: sub;
283 | font-size: smaller;
284 | }
285 |
286 | .reveal small {
287 | display: inline-block;
288 | font-size: 0.6em;
289 | line-height: 1.2em;
290 | vertical-align: top;
291 | }
292 |
293 | .reveal small * {
294 | vertical-align: top;
295 | }
296 |
297 | .reveal img {
298 | margin: var(--r-block-margin) 0;
299 | }
300 |
301 | /*********************************************
302 | * LINKS
303 | *********************************************/
304 | .reveal a {
305 | color: var(--r-link-color);
306 | text-decoration: none;
307 | transition: color 0.15s ease;
308 | }
309 |
310 | .reveal a:hover {
311 | color: var(--r-link-color-hover);
312 | text-shadow: none;
313 | border: none;
314 | }
315 |
316 | .reveal .roll span:after {
317 | color: #fff;
318 | background: var(--r-link-color-dark);
319 | }
320 |
321 | /*********************************************
322 | * Frame helper
323 | *********************************************/
324 | .reveal .r-frame {
325 | border: 4px solid var(--r-main-color);
326 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
327 | }
328 |
329 | .reveal a .r-frame {
330 | transition: all 0.15s linear;
331 | }
332 |
333 | .reveal a:hover .r-frame {
334 | border-color: var(--r-link-color);
335 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
336 | }
337 |
338 | /*********************************************
339 | * NAVIGATION CONTROLS
340 | *********************************************/
341 | .reveal .controls {
342 | color: var(--r-link-color);
343 | }
344 |
345 | /*********************************************
346 | * PROGRESS BAR
347 | *********************************************/
348 | .reveal .progress {
349 | background: rgba(0, 0, 0, 0.2);
350 | color: var(--r-link-color);
351 | }
352 |
353 | /*********************************************
354 | * PRINT BACKGROUND
355 | *********************************************/
356 | @media print {
357 | .backgrounds {
358 | background-color: var(--r-background-color);
359 | }
360 | }
--------------------------------------------------------------------------------
/css/vlearn.css:
--------------------------------------------------------------------------------
1 | /* CSS styles */
2 | html {
3 | font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
4 | }
5 |
6 | label {
7 | font-variant: all-small-caps;
8 | }
9 |
10 | body {
11 | background: #191919;
12 | display: flex;
13 | flex-direction: column;
14 | align-items: center;
15 | justify-content: center;
16 | height: 100vh;
17 | margin: 0;
18 | }
19 |
20 | #api-key-link {
21 | color: #03836c;
22 | }
23 |
24 | .top-header-line {
25 | display: flex;
26 | justify-content: space-between;
27 | width: 100%;
28 | align-items: flex-start;
29 | }
30 |
31 | .api-key-container {
32 | display: flex;
33 | flex-direction: column;
34 | gap: 4px;
35 | color: white;
36 | }
37 |
38 | .download-container {
39 | display: flex;
40 | flex-direction: column;
41 | gap: 4px;
42 | color: white;
43 | text-align: center;
44 | }
45 |
46 | #download[downloading] {
47 | background: #c91a25;
48 | }
49 |
50 | .input-container {
51 | width: calc(100% - 40px);
52 | padding: 20px 20px 0;
53 | text-align: center;
54 | }
55 |
56 | .input-container button {
57 | font-size: 0;
58 | padding: 10px 14px;
59 | height: 48px;
60 | }
61 |
62 | .input-container button {
63 | color: white;
64 | border: none;
65 | border-radius: 8px;
66 | cursor: pointer;
67 | background-color: #03836c;
68 | border: 1px solid transparent;
69 | }
70 |
71 | .input-container button:hover {
72 | background-color: #04a286;
73 | border: 1px solid #262626;
74 | }
75 |
76 | .input-container button[disabled] {
77 | background-color: #494b4a;
78 | opacity: 0.5;
79 | }
80 |
81 | .input-container button[disabled]:hover {
82 | cursor: not-allowed;
83 | border: 1px solid transparent;
84 | }
85 |
86 | .prompt {
87 | resize: none;
88 | padding-bottom: 12px;
89 | background: #252327;
90 | border: 1px solid #2E2C32;
91 | border-radius: 12px;
92 | }
93 |
94 | .prompt-container {
95 | position: relative;
96 | padding: 20px;
97 | width: 80%;
98 | margin: 0;
99 | display: flex;
100 | justify-content: center;
101 | gap: 12px;
102 | }
103 |
104 | .prompt-container button[disabled] {
105 | opacity: 0.5;
106 | pointer-events: none;
107 | border: 1px solid transparent;
108 | }
109 |
110 | .prompt-container textarea {
111 | width: 100%;
112 | }
113 |
114 | #prompt-button {
115 | background-color: #3d3f99;
116 | color: white;
117 | border-radius: 8px;
118 | cursor: pointer;
119 | font-size: 0;
120 | border: 1px solid transparent;
121 | padding: 20px 20px;
122 | }
123 |
124 | #prompt-button:hover {
125 | background-color: #494baa;
126 | border: 1px solid #262626;
127 | }
128 |
129 | #prompt-button[generating] {
130 | background: #c91a25;
131 | }
132 |
133 | #pause-button {
134 | background-color: #3d3f99;
135 | padding: 20px 20px;
136 | border-radius: 8px;
137 | cursor: pointer;
138 | font-size: 0;
139 | color: white;
140 | border: 1px solid transparent;
141 | }
142 |
143 | #pause-button[disabled] {
144 | background-color: #494b4a;
145 | }
146 |
147 | #pause-button:hover {
148 | background-color: #494baa;
149 | border: 1px solid #262626;
150 | }
151 |
152 | textarea {
153 | padding: 10px;
154 | font-size: 16px;
155 | max-width: 1000px;
156 |
157 | background: #252327;
158 | border: 1px solid #2E2C32;
159 | border-radius: 12px;
160 | color: #F8F8F2;
161 | }
162 |
163 | textarea[loading] {
164 | animation: fadeInOut 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
165 | }
166 |
167 | textarea[disabled] {
168 | color: #67636F;
169 | }
170 |
171 | /* Keyframes for fading in and out */
172 | @keyframes fadeInOut {
173 | 0%, 100% { background: #252327; }
174 | 50% { background: #333136; }
175 | }
176 |
177 | input {
178 | padding: 10px;
179 | font-size: 16px;
180 | max-width: 1000px;
181 |
182 | background: #252327;
183 | border: 1px solid #2E2C32;
184 | border-radius: 6px;
185 | color: #F8F8F2;
186 | }
187 |
188 | ::placeholder {
189 | color: #67636F;
190 | }
191 |
192 | #audioPlayers {
193 | position: relative;
194 | display: none;
195 | }
196 |
197 | .reveal {
198 | width: 80%;
199 | height: 600px;
200 | border-radius: 10px;
201 | background: #191919 !important;
202 | }
203 |
204 | .github {
205 | position: absolute;
206 | left: 50%;
207 | top: 40px;
208 | }
209 |
210 | .github a {
211 | color: white;
212 | font-size: 14px;
213 | opacity: 0.8;
214 | text-decoration: none;
215 | display: flex;
216 | align-items: center;
217 | gap: 8px;
218 | }
219 |
220 | .github:hover {
221 | text-decoration: underline;
222 | }
223 |
224 | .download-progress-container {
225 | display: flex;
226 | justify-content: space-between;
227 | opacity: 0;
228 | }
229 |
230 |
--------------------------------------------------------------------------------
/img/download.svg:
--------------------------------------------------------------------------------
1 |
19 |
--------------------------------------------------------------------------------
/img/github.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/img/movie.svg:
--------------------------------------------------------------------------------
1 |
18 |
--------------------------------------------------------------------------------
/img/new-video.svg:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/img/pause.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/img/play.svg:
--------------------------------------------------------------------------------
1 |
11 |
12 |
--------------------------------------------------------------------------------
/img/stop.svg:
--------------------------------------------------------------------------------
1 |
4 |
5 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |