├── .github
├── FUNDING.yml
└── workflows
│ └── js.yml
├── .gitignore
├── .npmignore
├── README.md
├── Université_de_Sherbrooke_(logo).svg
├── css
├── layout.scss
├── print
│ ├── paper.scss
│ └── pdf.scss
├── reveal.scss
└── theme
│ ├── README.md
│ ├── source
│ ├── beige.scss
│ ├── black.scss
│ ├── blood.scss
│ ├── league.scss
│ ├── moon.scss
│ ├── night.scss
│ ├── serif.scss
│ ├── simple.scss
│ ├── sky.scss
│ ├── solarized.scss
│ └── white.scss
│ └── template
│ ├── exposer.scss
│ ├── mixins.scss
│ ├── settings.scss
│ └── theme.scss
├── dist
├── reset.css
├── reveal.css
├── reveal.esm.js
├── reveal.js
└── theme
│ ├── beige.css
│ ├── black.css
│ ├── blood.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.css
├── ethz_logo_white.svg
├── gulpfile.js
├── index.html
├── js
├── add_video_slide.js
├── components
│ └── playback.js
├── config.js
├── controllers
│ ├── autoanimate.js
│ ├── backgrounds.js
│ ├── controls.js
│ ├── focus.js
│ ├── fragments.js
│ ├── keyboard.js
│ ├── location.js
│ ├── notes.js
│ ├── overview.js
│ ├── plugins.js
│ ├── pointer.js
│ ├── print.js
│ ├── progress.js
│ ├── slidecontent.js
│ ├── slidenumber.js
│ └── touch.js
├── index.js
├── reveal.js
├── utils
│ ├── color.js
│ ├── constants.js
│ ├── device.js
│ ├── loader.js
│ └── util.js
└── video_slide.js
├── manim_slide.py
├── media
└── .gitignore
├── package-lock.json
├── package.json
├── plugin
├── highlight
│ ├── highlight.esm.js
│ ├── highlight.js
│ ├── monokai.css
│ ├── plugin.js
│ └── zenburn.css
├── markdown
│ ├── markdown.esm.js
│ ├── markdown.js
│ └── plugin.js
├── math
│ ├── math.esm.js
│ ├── math.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
├── talk.py
└── video_slides
├── Conclusion.mp4
├── Conclusion.txt
├── ExampleSlide.mp4
├── ExampleSlide.txt
├── Slide1.mp4
├── Slide1.txt
├── Slide2.mp4
├── Slide2.txt
├── Slide3.mp4
├── Slide3.txt
├── Title.mp4
└── Title.txt
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [hakimel]
2 |
--------------------------------------------------------------------------------
/.github/workflows/js.yml:
--------------------------------------------------------------------------------
1 | name: tests
2 |
3 | on: [push]
4 |
5 | jobs:
6 | build:
7 |
8 | runs-on: ubuntu-latest
9 |
10 | strategy:
11 | matrix:
12 | node-version: [10.x, 14.x, 16.x]
13 |
14 | steps:
15 | - uses: actions/checkout@v2
16 | - name: Use Node.js ${{ matrix.node-version }}
17 | uses: actions/setup-node@v1
18 | with:
19 | node-version: ${{ matrix.node-version }}
20 | - run: npm install
21 | - run: npm run build --if-present
22 | - run: npm test
23 | env:
24 | CI: true
25 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | *.iml
3 | *.iws
4 | *.eml
5 | out/
6 | .DS_Store
7 | .svn
8 | log/*.log
9 | tmp/**
10 | node_modules/
11 | .sass-cache
12 | dist/*.map
13 | __pycache__/
14 | media/*
15 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | /test
2 | /examples
3 | .github
4 | .gulpfile
5 | .sass-cache
6 | gulpfile.js
7 | CONTRIBUTING.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Allows for a reveal.js presentation consisting of queued up Manim animations. Based on anjandn/manim_reveal, but updated to work with ManimCE 0.7.0 (manim_reveal was broken by manim updates).
2 |
3 | Go here for a live demonstration of it working.
4 |
5 | Manim code is put into ./talk.py
, and the corresponding slides need to be put into ./index.html
. To compile the manim videos for slide X run manimce talk.py X
.
6 |
7 | To view a local copy you must run npm start
on the local copy.
8 |
--------------------------------------------------------------------------------
/css/layout.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Layout helpers.
3 | */
4 |
5 | // Stretch an element vertically based on available space
6 | .reveal .stretch,
7 | .reveal .r-stretch {
8 | max-width: none;
9 | max-height: none;
10 | }
11 |
12 | .reveal pre.stretch code,
13 | .reveal pre.r-stretch code {
14 | height: 100%;
15 | max-height: 100%;
16 | box-sizing: border-box;
17 | }
18 |
19 | // Text that auto-fits it's container
20 | .reveal .r-fit-text {
21 | display: inline-block; // https://github.com/rikschennink/fitty#performance
22 | white-space: nowrap;
23 | }
24 |
25 | // Stack multiple elements on top of each other
26 | .reveal .r-stack {
27 | display: grid;
28 | }
29 |
30 | .reveal .r-stack > * {
31 | grid-area: 1/1;
32 | margin: auto;
33 | }
34 |
35 | // Horizontal and vertical stacks
36 | .reveal .r-vstack,
37 | .reveal .r-hstack {
38 | display: flex;
39 |
40 | img, video {
41 | min-width: 0;
42 | min-height: 0;
43 | object-fit: contain;
44 | }
45 | }
46 |
47 | .reveal .r-vstack {
48 | flex-direction: column;
49 | align-items: center;
50 | justify-content: center;
51 | }
52 |
53 | .reveal .r-hstack {
54 | flex-direction: row;
55 | align-items: center;
56 | justify-content: center;
57 | }
58 |
59 | // Naming based on tailwindcss
60 | .reveal .items-stretch { align-items: stretch; }
61 | .reveal .items-start { align-items: flex-start; }
62 | .reveal .items-center { align-items: center; }
63 | .reveal .items-end { align-items: flex-end; }
64 |
65 | .reveal .justify-between { justify-content: space-between; }
66 | .reveal .justify-around { justify-content: space-around; }
67 | .reveal .justify-start { justify-content: flex-start; }
68 | .reveal .justify-center { justify-content: center; }
69 | .reveal .justify-end { justify-content: flex-end; }
70 |
--------------------------------------------------------------------------------
/css/print/paper.scss:
--------------------------------------------------------------------------------
1 | /* Default Print Stylesheet Template
2 | by Rob Glazebrook of CSSnewbie.com
3 | Last Updated: June 4, 2008
4 |
5 | Feel free (nay, compelled) to edit, append, and
6 | manipulate this file as you see fit. */
7 |
8 | @media print {
9 | html:not(.print-pdf) {
10 |
11 | background: #fff;
12 | width: auto;
13 | height: auto;
14 | overflow: visible;
15 |
16 | body {
17 | background: #fff;
18 | font-size: 20pt;
19 | width: auto;
20 | height: auto;
21 | border: 0;
22 | margin: 0 5%;
23 | padding: 0;
24 | overflow: visible;
25 | float: none !important;
26 | }
27 |
28 | .nestedarrow,
29 | .controls,
30 | .fork-reveal,
31 | .share-reveal,
32 | .state-background,
33 | .reveal .progress,
34 | .reveal .backgrounds,
35 | .reveal .slide-number {
36 | display: none !important;
37 | }
38 |
39 | body, p, td, li {
40 | font-size: 20pt!important;
41 | color: #000;
42 | }
43 |
44 | h1,h2,h3,h4,h5,h6 {
45 | color: #000!important;
46 | height: auto;
47 | line-height: normal;
48 | text-align: left;
49 | letter-spacing: normal;
50 | }
51 |
52 | /* Need to reduce the size of the fonts for printing */
53 | h1 { font-size: 28pt !important; }
54 | h2 { font-size: 24pt !important; }
55 | h3 { font-size: 22pt !important; }
56 | h4 { font-size: 22pt !important; font-variant: small-caps; }
57 | h5 { font-size: 21pt !important; }
58 | h6 { font-size: 20pt !important; font-style: italic; }
59 |
60 | a:link,
61 | a:visited {
62 | color: #000 !important;
63 | font-weight: bold;
64 | text-decoration: underline;
65 | }
66 |
67 | ul, ol, div, p {
68 | visibility: visible;
69 | position: static;
70 | width: auto;
71 | height: auto;
72 | display: block;
73 | overflow: visible;
74 | margin: 0;
75 | text-align: left !important;
76 | }
77 | .reveal pre,
78 | .reveal table {
79 | margin-left: 0;
80 | margin-right: 0;
81 | }
82 | .reveal pre code {
83 | padding: 20px;
84 | }
85 | .reveal blockquote {
86 | margin: 20px 0;
87 | }
88 | .reveal .slides {
89 | position: static !important;
90 | width: auto !important;
91 | height: auto !important;
92 |
93 | left: 0 !important;
94 | top: 0 !important;
95 | margin-left: 0 !important;
96 | margin-top: 0 !important;
97 | padding: 0 !important;
98 | zoom: 1 !important;
99 | transform: none !important;
100 |
101 | overflow: visible !important;
102 | display: block !important;
103 |
104 | text-align: left !important;
105 | perspective: none;
106 |
107 | perspective-origin: 50% 50%;
108 | }
109 | .reveal .slides section {
110 | visibility: visible !important;
111 | position: static !important;
112 | width: auto !important;
113 | height: auto !important;
114 | display: block !important;
115 | overflow: visible !important;
116 |
117 | left: 0 !important;
118 | top: 0 !important;
119 | margin-left: 0 !important;
120 | margin-top: 0 !important;
121 | padding: 60px 20px !important;
122 | z-index: auto !important;
123 |
124 | opacity: 1 !important;
125 |
126 | page-break-after: always !important;
127 |
128 | transform-style: flat !important;
129 | transform: none !important;
130 | transition: none !important;
131 | }
132 | .reveal .slides section.stack {
133 | padding: 0 !important;
134 | }
135 | .reveal section:last-of-type {
136 | page-break-after: avoid !important;
137 | }
138 | .reveal section .fragment {
139 | opacity: 1 !important;
140 | visibility: visible !important;
141 |
142 | transform: none !important;
143 | }
144 | .reveal section img {
145 | display: block;
146 | margin: 15px 0px;
147 | background: rgba(255,255,255,1);
148 | border: 1px solid #666;
149 | box-shadow: none;
150 | }
151 |
152 | .reveal section small {
153 | font-size: 0.8em;
154 | }
155 |
156 | .reveal .hljs {
157 | max-height: 100%;
158 | white-space: pre-wrap;
159 | word-wrap: break-word;
160 | word-break: break-word;
161 | font-size: 15pt;
162 | }
163 |
164 | .reveal .hljs .hljs-ln-numbers {
165 | white-space: nowrap;
166 | }
167 |
168 | .reveal .hljs td {
169 | font-size: inherit !important;
170 | color: inherit !important;
171 | }
172 | }
173 | }
174 |
--------------------------------------------------------------------------------
/css/print/pdf.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * This stylesheet is used to print reveal.js
3 | * presentations to PDF.
4 | *
5 | * https://revealjs.com/pdf-export/
6 | */
7 |
8 | html.print-pdf {
9 | * {
10 | -webkit-print-color-adjust: exact;
11 | }
12 |
13 | & {
14 | width: 100%;
15 | height: 100%;
16 | overflow: visible;
17 | }
18 |
19 | body {
20 | margin: 0 auto !important;
21 | border: 0;
22 | padding: 0;
23 | float: none !important;
24 | overflow: visible;
25 | }
26 |
27 | /* Remove any elements not needed in print. */
28 | .nestedarrow,
29 | .reveal .controls,
30 | .reveal .progress,
31 | .reveal .playback,
32 | .reveal.overview,
33 | .state-background {
34 | display: none !important;
35 | }
36 |
37 | .reveal pre code {
38 | overflow: hidden !important;
39 | font-family: Courier, 'Courier New', monospace !important;
40 | }
41 |
42 | .reveal {
43 | width: auto !important;
44 | height: auto !important;
45 | overflow: hidden !important;
46 | }
47 | .reveal .slides {
48 | position: static;
49 | width: 100% !important;
50 | height: auto !important;
51 | zoom: 1 !important;
52 | pointer-events: initial;
53 |
54 | left: auto;
55 | top: auto;
56 | margin: 0 !important;
57 | padding: 0 !important;
58 |
59 | overflow: visible;
60 | display: block;
61 |
62 | perspective: none;
63 | perspective-origin: 50% 50%;
64 | }
65 |
66 | .reveal .slides .pdf-page {
67 | position: relative;
68 | overflow: hidden;
69 | z-index: 1;
70 |
71 | page-break-after: always;
72 | }
73 |
74 | .reveal .slides section {
75 | visibility: visible !important;
76 | display: block !important;
77 | position: absolute !important;
78 |
79 | margin: 0 !important;
80 | padding: 0 !important;
81 | box-sizing: border-box !important;
82 | min-height: 1px;
83 |
84 | opacity: 1 !important;
85 |
86 | transform-style: flat !important;
87 | transform: none !important;
88 | }
89 |
90 | .reveal section.stack {
91 | position: relative !important;
92 | margin: 0 !important;
93 | padding: 0 !important;
94 | page-break-after: avoid !important;
95 | height: auto !important;
96 | min-height: auto !important;
97 | }
98 |
99 | .reveal img {
100 | box-shadow: none;
101 | }
102 |
103 |
104 | /* Slide backgrounds are placed inside of their slide when exporting to PDF */
105 | .reveal .backgrounds {
106 | display: none;
107 | }
108 | .reveal .slide-background {
109 | display: block !important;
110 | position: absolute;
111 | top: 0;
112 | left: 0;
113 | width: 100%;
114 | height: 100%;
115 | z-index: auto !important;
116 | }
117 |
118 | /* Display slide speaker notes when 'showNotes' is enabled */
119 | .reveal.show-notes {
120 | max-width: none;
121 | max-height: none;
122 | }
123 | .reveal .speaker-notes-pdf {
124 | display: block;
125 | width: 100%;
126 | height: auto;
127 | max-height: none;
128 | top: auto;
129 | right: auto;
130 | bottom: auto;
131 | left: auto;
132 | z-index: 100;
133 | }
134 |
135 | /* Layout option which makes notes appear on a separate page */
136 | .reveal .speaker-notes-pdf[data-layout="separate-page"] {
137 | position: relative;
138 | color: inherit;
139 | background-color: transparent;
140 | padding: 20px;
141 | page-break-after: always;
142 | border: 0;
143 | }
144 |
145 | /* Display slide numbers when 'slideNumber' is enabled */
146 | .reveal .slide-number-pdf {
147 | display: block;
148 | position: absolute;
149 | font-size: 14px;
150 | }
151 |
152 | /* This accessibility tool is not useful in PDF and breaks it visually */
153 | .aria-status {
154 | display: none;
155 | }
156 | }
157 |
--------------------------------------------------------------------------------
/css/theme/README.md:
--------------------------------------------------------------------------------
1 | ## Dependencies
2 |
3 | Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment installed before proceeding: https://revealjs.com/installation/#full-setup
4 |
5 | ## Creating a Theme
6 |
7 | To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled from Sass to CSS (see the [gulpfile](https://github.com/hakimel/reveal.js/blob/master/gulpfile.js)) when you run `npm run build -- css-themes`.
8 |
9 | Each theme file does four things in the following order:
10 |
11 | 1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**
12 | Shared utility functions.
13 |
14 | 2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**
15 | Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
16 |
17 | 3. **Override**
18 | This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.
19 |
20 | 4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**
21 | The template theme file which will generate final CSS output based on the currently defined variables.
22 |
--------------------------------------------------------------------------------
/css/theme/source/beige.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Beige theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 |
15 | // Include theme-specific fonts
16 | @import url(./fonts/league-gothic/league-gothic.css);
17 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
18 |
19 |
20 | // Override theme settings (see ../template/settings.scss)
21 | $mainColor: #333;
22 | $headingColor: #333;
23 | $headingTextShadow: none;
24 | $backgroundColor: #f7f3de;
25 | $linkColor: #8b743d;
26 | $linkColorHover: lighten( $linkColor, 20% );
27 | $selectionBackgroundColor: rgba(79, 64, 28, 0.99);
28 | $heading1TextShadow: 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,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
29 |
30 | // Background generator
31 | @mixin bodyBackground() {
32 | @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );
33 | }
34 |
35 | // Change text colors against dark slide backgrounds
36 | @include dark-bg-text-color(#fff);
37 |
38 |
39 | // Theme template ------------------------------
40 | @import "../template/theme";
41 | // ---------------------------------------------
42 |
--------------------------------------------------------------------------------
/css/theme/source/black.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js. This is the opposite of the 'white' theme.
3 | *
4 | * By Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
16 |
17 |
18 | // Override theme settings (see ../template/settings.scss)
19 | $backgroundColor: #191919;
20 |
21 | $mainColor: #fff;
22 | $headingColor: #fff;
23 |
24 | $mainFontSize: 42px;
25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27 | $headingTextShadow: none;
28 | $headingLetterSpacing: normal;
29 | $headingTextTransform: uppercase;
30 | $headingFontWeight: 600;
31 | $linkColor: #42affa;
32 | $linkColorHover: lighten( $linkColor, 15% );
33 | $selectionBackgroundColor: lighten( $linkColor, 25% );
34 |
35 | $heading1Size: 2.5em;
36 | $heading2Size: 1.6em;
37 | $heading3Size: 1.3em;
38 | $heading4Size: 1.0em;
39 |
40 | // Change text colors against light slide backgrounds
41 | @include light-bg-text-color(#222);
42 |
43 |
44 | // Theme template ------------------------------
45 | @import "../template/theme";
46 | // ---------------------------------------------
47 |
--------------------------------------------------------------------------------
/css/theme/source/blood.scss:
--------------------------------------------------------------------------------
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 |
13 | // Default mixins and settings -----------------
14 | @import "../template/mixins";
15 | @import "../template/settings";
16 | // ---------------------------------------------
17 |
18 | // Include theme-specific fonts
19 |
20 | @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
21 |
22 | // Colors used in the theme
23 | $blood: #a23;
24 | $coal: #222;
25 | $codeBackground: #23241f;
26 |
27 | $backgroundColor: $coal;
28 |
29 | // Main text
30 | $mainFont: Ubuntu, 'sans-serif';
31 | $mainColor: #eee;
32 |
33 | // Headings
34 | $headingFont: Ubuntu, 'sans-serif';
35 | $headingTextShadow: 2px 2px 2px $coal;
36 |
37 | // h1 shadow, borrowed humbly from
38 | // (c) Default theme by Hakim El Hattab
39 | $heading1TextShadow: 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,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
40 |
41 | // Links
42 | $linkColor: $blood;
43 | $linkColorHover: lighten( $linkColor, 20% );
44 |
45 | // Text selection
46 | $selectionBackgroundColor: $blood;
47 | $selectionColor: #fff;
48 |
49 | // Change text colors against dark slide backgrounds
50 | @include light-bg-text-color(#222);
51 |
52 |
53 | // Theme template ------------------------------
54 | @import "../template/theme";
55 | // ---------------------------------------------
56 |
57 | // some overrides after theme template import
58 |
59 | .reveal p {
60 | font-weight: 300;
61 | text-shadow: 1px 1px $coal;
62 | }
63 |
64 | section.has-light-background {
65 | p, h1, h2, h3, h4 {
66 | text-shadow: none;
67 | }
68 | }
69 |
70 | .reveal h1,
71 | .reveal h2,
72 | .reveal h3,
73 | .reveal h4,
74 | .reveal h5,
75 | .reveal h6 {
76 | font-weight: 700;
77 | }
78 |
79 | .reveal p code {
80 | background-color: $codeBackground;
81 | display: inline-block;
82 | border-radius: 7px;
83 | }
84 |
85 | .reveal small code {
86 | vertical-align: baseline;
87 | }
--------------------------------------------------------------------------------
/css/theme/source/league.scss:
--------------------------------------------------------------------------------
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 |
9 |
10 | // Default mixins and settings -----------------
11 | @import "../template/mixins";
12 | @import "../template/settings";
13 | // ---------------------------------------------
14 |
15 |
16 |
17 | // Include theme-specific fonts
18 | @import url(./fonts/league-gothic/league-gothic.css);
19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
20 |
21 | // Override theme settings (see ../template/settings.scss)
22 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);
23 | $heading1TextShadow: 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,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
24 |
25 | // Background generator
26 | @mixin bodyBackground() {
27 | @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );
28 | }
29 |
30 | // Change text colors against light slide backgrounds
31 | @include light-bg-text-color(#222);
32 |
33 |
34 | // Theme template ------------------------------
35 | @import "../template/theme";
36 | // ---------------------------------------------
37 |
--------------------------------------------------------------------------------
/css/theme/source/moon.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Dark theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 |
6 |
7 | // Default mixins and settings -----------------
8 | @import "../template/mixins";
9 | @import "../template/settings";
10 | // ---------------------------------------------
11 |
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(./fonts/league-gothic/league-gothic.css);
16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
17 |
18 | /**
19 | * Solarized colors by Ethan Schoonover
20 | */
21 | html * {
22 | color-profile: sRGB;
23 | rendering-intent: auto;
24 | }
25 |
26 | // Solarized colors
27 | $base03: #002b36;
28 | $base02: #073642;
29 | $base01: #586e75;
30 | $base00: #657b83;
31 | $base0: #839496;
32 | $base1: #93a1a1;
33 | $base2: #eee8d5;
34 | $base3: #fdf6e3;
35 | $yellow: #b58900;
36 | $orange: #cb4b16;
37 | $red: #dc322f;
38 | $magenta: #d33682;
39 | $violet: #6c71c4;
40 | $blue: #268bd2;
41 | $cyan: #2aa198;
42 | $green: #859900;
43 |
44 | // Override theme settings (see ../template/settings.scss)
45 | $mainColor: $base1;
46 | $headingColor: $base2;
47 | $headingTextShadow: none;
48 | $backgroundColor: $base03;
49 | $linkColor: $blue;
50 | $linkColorHover: lighten( $linkColor, 20% );
51 | $selectionBackgroundColor: $magenta;
52 |
53 | // Change text colors against light slide backgrounds
54 | @include light-bg-text-color(#222);
55 |
56 | // Theme template ------------------------------
57 | @import "../template/theme";
58 | // ---------------------------------------------
59 |
--------------------------------------------------------------------------------
/css/theme/source/night.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
17 |
18 |
19 | // Override theme settings (see ../template/settings.scss)
20 | $backgroundColor: #111;
21 |
22 | $mainFont: 'Open Sans', sans-serif;
23 | $linkColor: #e7ad52;
24 | $linkColorHover: lighten( $linkColor, 20% );
25 | $headingFont: 'Montserrat', Impact, sans-serif;
26 | $headingTextShadow: none;
27 | $headingLetterSpacing: -0.03em;
28 | $headingTextTransform: none;
29 | $selectionBackgroundColor: #e7ad52;
30 |
31 | // Change text colors against light slide backgrounds
32 | @include light-bg-text-color(#222);
33 |
34 |
35 | // Theme template ------------------------------
36 | @import "../template/theme";
37 | // ---------------------------------------------
--------------------------------------------------------------------------------
/css/theme/source/serif.scss:
--------------------------------------------------------------------------------
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 |
8 |
9 | // Default mixins and settings -----------------
10 | @import "../template/mixins";
11 | @import "../template/settings";
12 | // ---------------------------------------------
13 |
14 |
15 |
16 | // Override theme settings (see ../template/settings.scss)
17 | $mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
18 | $mainColor: #000;
19 | $headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
20 | $headingColor: #383D3D;
21 | $headingTextShadow: none;
22 | $headingTextTransform: none;
23 | $backgroundColor: #F0F1EB;
24 | $linkColor: #51483D;
25 | $linkColorHover: lighten( $linkColor, 20% );
26 | $selectionBackgroundColor: #26351C;
27 |
28 | .reveal a {
29 | line-height: 1.3em;
30 | }
31 |
32 | // Change text colors against dark slide backgrounds
33 | @include dark-bg-text-color(#fff);
34 |
35 |
36 | // Theme template ------------------------------
37 | @import "../template/theme";
38 | // ---------------------------------------------
39 |
--------------------------------------------------------------------------------
/css/theme/source/simple.scss:
--------------------------------------------------------------------------------
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 |
9 |
10 | // Default mixins and settings -----------------
11 | @import "../template/mixins";
12 | @import "../template/settings";
13 | // ---------------------------------------------
14 |
15 |
16 |
17 | // Include theme-specific fonts
18 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
20 |
21 |
22 | // Override theme settings (see ../template/settings.scss)
23 | $mainFont: 'Lato', sans-serif;
24 | $mainColor: #000;
25 | $headingFont: 'News Cycle', Impact, sans-serif;
26 | $headingColor: #000;
27 | $headingTextShadow: none;
28 | $headingTextTransform: none;
29 | $backgroundColor: #fff;
30 | $linkColor: #00008B;
31 | $linkColorHover: lighten( $linkColor, 20% );
32 | $selectionBackgroundColor: rgba(0, 0, 0, 0.99);
33 |
34 | // Change text colors against dark slide backgrounds
35 | @include dark-bg-text-color(#fff);
36 |
37 |
38 | // Theme template ------------------------------
39 | @import "../template/theme";
40 | // ---------------------------------------------
--------------------------------------------------------------------------------
/css/theme/source/sky.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Sky theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 |
15 | // Include theme-specific fonts
16 | @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
17 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
18 |
19 |
20 | // Override theme settings (see ../template/settings.scss)
21 | $mainFont: 'Open Sans', sans-serif;
22 | $mainColor: #333;
23 | $headingFont: 'Quicksand', sans-serif;
24 | $headingColor: #333;
25 | $headingLetterSpacing: -0.08em;
26 | $headingTextShadow: none;
27 | $backgroundColor: #f7fbfc;
28 | $linkColor: #3b759e;
29 | $linkColorHover: lighten( $linkColor, 20% );
30 | $selectionBackgroundColor: #134674;
31 |
32 | // Fix links so they are not cut off
33 | .reveal a {
34 | line-height: 1.3em;
35 | }
36 |
37 | // Background generator
38 | @mixin bodyBackground() {
39 | @include radial-gradient( #add9e4, #f7fbfc );
40 | }
41 |
42 | // Change text colors against dark slide backgrounds
43 | @include dark-bg-text-color(#fff);
44 |
45 |
46 |
47 | // Theme template ------------------------------
48 | @import "../template/theme";
49 | // ---------------------------------------------
50 |
--------------------------------------------------------------------------------
/css/theme/source/solarized.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Light theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 |
6 |
7 | // Default mixins and settings -----------------
8 | @import "../template/mixins";
9 | @import "../template/settings";
10 | // ---------------------------------------------
11 |
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(./fonts/league-gothic/league-gothic.css);
16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
17 |
18 |
19 | /**
20 | * Solarized colors by Ethan Schoonover
21 | */
22 | html * {
23 | color-profile: sRGB;
24 | rendering-intent: auto;
25 | }
26 |
27 | // Solarized colors
28 | $base03: #002b36;
29 | $base02: #073642;
30 | $base01: #586e75;
31 | $base00: #657b83;
32 | $base0: #839496;
33 | $base1: #93a1a1;
34 | $base2: #eee8d5;
35 | $base3: #fdf6e3;
36 | $yellow: #b58900;
37 | $orange: #cb4b16;
38 | $red: #dc322f;
39 | $magenta: #d33682;
40 | $violet: #6c71c4;
41 | $blue: #268bd2;
42 | $cyan: #2aa198;
43 | $green: #859900;
44 |
45 | // Override theme settings (see ../template/settings.scss)
46 | $mainColor: $base00;
47 | $headingColor: $base01;
48 | $headingTextShadow: none;
49 | $backgroundColor: $base3;
50 | $linkColor: $blue;
51 | $linkColorHover: lighten( $linkColor, 20% );
52 | $selectionBackgroundColor: $magenta;
53 |
54 | // Background generator
55 | // @mixin bodyBackground() {
56 | // @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );
57 | // }
58 |
59 |
60 |
61 | // Theme template ------------------------------
62 | @import "../template/theme";
63 | // ---------------------------------------------
64 |
--------------------------------------------------------------------------------
/css/theme/source/white.scss:
--------------------------------------------------------------------------------
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 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(./fonts/source-sans-pro/source-sans-pro.css);
16 |
17 |
18 | // Override theme settings (see ../template/settings.scss)
19 | $backgroundColor: #fff;
20 |
21 | $mainColor: #222;
22 | $headingColor: #222;
23 |
24 | $mainFontSize: 42px;
25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27 | $headingTextShadow: none;
28 | $headingLetterSpacing: normal;
29 | $headingTextTransform: uppercase;
30 | $headingFontWeight: 600;
31 | $linkColor: #2a76dd;
32 | $linkColorHover: lighten( $linkColor, 15% );
33 | $selectionBackgroundColor: lighten( $linkColor, 25% );
34 |
35 | $heading1Size: 2.5em;
36 | $heading2Size: 1.6em;
37 | $heading3Size: 1.3em;
38 | $heading4Size: 1.0em;
39 |
40 | // Change text colors against dark slide backgrounds
41 | @include dark-bg-text-color(#fff);
42 |
43 |
44 | // Theme template ------------------------------
45 | @import "../template/theme";
46 | // ---------------------------------------------
47 |
--------------------------------------------------------------------------------
/css/theme/template/exposer.scss:
--------------------------------------------------------------------------------
1 | // Exposes theme's variables for easy re-use in CSS for plugin authors
2 |
3 | :root {
4 | --r-background-color: #{$backgroundColor};
5 | --r-main-font: #{$mainFont};
6 | --r-main-font-size: #{$mainFontSize};
7 | --r-main-color: #{$mainColor};
8 | --r-block-margin: #{$blockMargin};
9 | --r-heading-margin: #{$headingMargin};
10 | --r-heading-font: #{$headingFont};
11 | --r-heading-color: #{$headingColor};
12 | --r-heading-line-height: #{$headingLineHeight};
13 | --r-heading-letter-spacing: #{$headingLetterSpacing};
14 | --r-heading-text-transform: #{$headingTextTransform};
15 | --r-heading-text-shadow: #{$headingTextShadow};
16 | --r-heading-font-weight: #{$headingFontWeight};
17 | --r-heading1-text-shadow: #{$heading1TextShadow};
18 | --r-heading1-size: #{$heading1Size};
19 | --r-heading2-size: #{$heading2Size};
20 | --r-heading3-size: #{$heading3Size};
21 | --r-heading4-size: #{$heading4Size};
22 | --r-code-font: #{$codeFont};
23 | --r-link-color: #{$linkColor};
24 | --r-link-color-dark: #{darken($linkColor , 15% )};
25 | --r-link-color-hover: #{$linkColorHover};
26 | --r-selection-background-color: #{$selectionBackgroundColor};
27 | --r-selection-color: #{$selectionColor};
28 | }
29 |
--------------------------------------------------------------------------------
/css/theme/template/mixins.scss:
--------------------------------------------------------------------------------
1 | @mixin vertical-gradient( $top, $bottom ) {
2 | background: $top;
3 | background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
4 | background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
5 | background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
6 | background: -o-linear-gradient( top, $top 0%, $bottom 100% );
7 | background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
8 | background: linear-gradient( top, $top 0%, $bottom 100% );
9 | }
10 |
11 | @mixin horizontal-gradient( $top, $bottom ) {
12 | background: $top;
13 | background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
14 | background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
15 | background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
16 | background: -o-linear-gradient( left, $top 0%, $bottom 100% );
17 | background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
18 | background: linear-gradient( left, $top 0%, $bottom 100% );
19 | }
20 |
21 | @mixin radial-gradient( $outer, $inner, $type: circle ) {
22 | background: $outer;
23 | background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
24 | background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
25 | background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
26 | background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
27 | background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
28 | background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
29 | }
30 |
31 | @mixin light-bg-text-color( $color ) {
32 | section.has-light-background {
33 | &, h1, h2, h3, h4, h5, h6 {
34 | color: $color;
35 | }
36 | }
37 | }
38 |
39 | @mixin dark-bg-text-color( $color ) {
40 | section.has-dark-background {
41 | &, h1, h2, h3, h4, h5, h6 {
42 | color: $color;
43 | }
44 | }
45 | }
--------------------------------------------------------------------------------
/css/theme/template/settings.scss:
--------------------------------------------------------------------------------
1 | // Base settings for all themes that can optionally be
2 | // overridden by the super-theme
3 |
4 | // Background of the presentation
5 | $backgroundColor: #2b2b2b;
6 |
7 | // Primary/body text
8 | $mainFont: 'Lato', sans-serif;
9 | $mainFontSize: 40px;
10 | $mainColor: #eee;
11 |
12 | // Vertical spacing between blocks of text
13 | $blockMargin: 20px;
14 |
15 | // Headings
16 | $headingMargin: 0 0 $blockMargin 0;
17 | $headingFont: 'League Gothic', Impact, sans-serif;
18 | $headingColor: #eee;
19 | $headingLineHeight: 1.2;
20 | $headingLetterSpacing: normal;
21 | $headingTextTransform: uppercase;
22 | $headingTextShadow: none;
23 | $headingFontWeight: normal;
24 | $heading1TextShadow: $headingTextShadow;
25 |
26 | $heading1Size: 3.77em;
27 | $heading2Size: 2.11em;
28 | $heading3Size: 1.55em;
29 | $heading4Size: 1.00em;
30 |
31 | $codeFont: monospace;
32 |
33 | // Links and actions
34 | $linkColor: #13DAEC;
35 | $linkColorHover: lighten( $linkColor, 20% );
36 |
37 | // Text selection
38 | $selectionBackgroundColor: #FF5E99;
39 | $selectionColor: #fff;
40 |
41 | // Generates the presentation background, can be overridden
42 | // to return a background image or gradient
43 | @mixin bodyBackground() {
44 | background: $backgroundColor;
45 | }
46 |
--------------------------------------------------------------------------------
/css/theme/template/theme.scss:
--------------------------------------------------------------------------------
1 | // Base theme template for reveal.js
2 |
3 | /*********************************************
4 | * GLOBAL STYLES
5 | *********************************************/
6 |
7 | @import "./exposer";
8 |
9 | .reveal-viewport {
10 | @include bodyBackground();
11 | background-color: var(--r-background-color);
12 | }
13 |
14 | .reveal {
15 | font-family: var(--r-main-font);
16 | font-size: var(--r-main-font-size);
17 | font-weight: normal;
18 | color: var(--r-main-color);
19 | }
20 |
21 | .reveal ::selection {
22 | color: var(--r-selection-color);
23 | background: var(--r-selection-background-color);
24 | text-shadow: none;
25 | }
26 |
27 | .reveal ::-moz-selection {
28 | color: var(--r-selection-color);
29 | background: var(--r-selection-background-color);
30 | text-shadow: none;
31 | }
32 |
33 | .reveal .slides section,
34 | .reveal .slides section>section {
35 | line-height: 1.3;
36 | font-weight: inherit;
37 | }
38 |
39 | /*********************************************
40 | * HEADERS
41 | *********************************************/
42 |
43 | .reveal h1,
44 | .reveal h2,
45 | .reveal h3,
46 | .reveal h4,
47 | .reveal h5,
48 | .reveal h6 {
49 | margin: var(--r-heading-margin);
50 | color: var(--r-heading-color);
51 |
52 | font-family: var(--r-heading-font);
53 | font-weight: var(--r-heading-font-weight);
54 | line-height: var(--r-heading-line-height);
55 | letter-spacing: var(--r-heading-letter-spacing);
56 |
57 | text-transform: var(--r-heading-text-transform);
58 | text-shadow: var(--r-heading-text-shadow);
59 |
60 | word-wrap: break-word;
61 | }
62 |
63 | .reveal h1 {font-size: var(--r-heading1-size); }
64 | .reveal h2 {font-size: var(--r-heading2-size); }
65 | .reveal h3 {font-size: var(--r-heading3-size); }
66 | .reveal h4 {font-size: var(--r-heading4-size); }
67 |
68 | .reveal h1 {
69 | text-shadow: var(--r-heading1-text-shadow);
70 | }
71 |
72 |
73 | /*********************************************
74 | * OTHER
75 | *********************************************/
76 |
77 | .reveal p {
78 | margin: var(--r-block-margin) 0;
79 | line-height: 1.3;
80 | }
81 |
82 | /* Remove trailing margins after titles */
83 | .reveal h1:last-child,
84 | .reveal h2:last-child,
85 | .reveal h3:last-child,
86 | .reveal h4:last-child,
87 | .reveal h5:last-child,
88 | .reveal h6:last-child {
89 | margin-bottom: 0;
90 | }
91 |
92 | /* Ensure certain elements are never larger than the slide itself */
93 | .reveal img,
94 | .reveal video,
95 | .reveal iframe {
96 | max-width: 95%;
97 | max-height: 95%;
98 | }
99 | .reveal strong,
100 | .reveal b {
101 | font-weight: bold;
102 | }
103 |
104 | .reveal em {
105 | font-style: italic;
106 | }
107 |
108 | .reveal ol,
109 | .reveal dl,
110 | .reveal ul {
111 | display: inline-block;
112 |
113 | text-align: left;
114 | margin: 0 0 0 1em;
115 | }
116 |
117 | .reveal ol {
118 | list-style-type: decimal;
119 | }
120 |
121 | .reveal ul {
122 | list-style-type: disc;
123 | }
124 |
125 | .reveal ul ul {
126 | list-style-type: square;
127 | }
128 |
129 | .reveal ul ul ul {
130 | list-style-type: circle;
131 | }
132 |
133 | .reveal ul ul,
134 | .reveal ul ol,
135 | .reveal ol ol,
136 | .reveal ol ul {
137 | display: block;
138 | margin-left: 40px;
139 | }
140 |
141 | .reveal dt {
142 | font-weight: bold;
143 | }
144 |
145 | .reveal dd {
146 | margin-left: 40px;
147 | }
148 |
149 | .reveal blockquote {
150 | display: block;
151 | position: relative;
152 | width: 70%;
153 | margin: var(--r-block-margin) auto;
154 | padding: 5px;
155 |
156 | font-style: italic;
157 | background: rgba(255, 255, 255, 0.05);
158 | box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
159 | }
160 | .reveal blockquote p:first-child,
161 | .reveal blockquote p:last-child {
162 | display: inline-block;
163 | }
164 |
165 | .reveal q {
166 | font-style: italic;
167 | }
168 |
169 | .reveal pre {
170 | display: block;
171 | position: relative;
172 | width: 90%;
173 | margin: var(--r-block-margin) auto;
174 |
175 | text-align: left;
176 | font-size: 0.55em;
177 | font-family: var(--r-code-font);
178 | line-height: 1.2em;
179 |
180 | word-wrap: break-word;
181 |
182 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
183 | }
184 |
185 | .reveal code {
186 | font-family: var(--r-code-font);
187 | text-transform: none;
188 | tab-size: 2;
189 | }
190 |
191 | .reveal pre code {
192 | display: block;
193 | padding: 5px;
194 | overflow: auto;
195 | max-height: 400px;
196 | word-wrap: normal;
197 | }
198 |
199 | .reveal .code-wrapper {
200 | white-space: normal;
201 | }
202 |
203 | .reveal .code-wrapper code {
204 | white-space: pre;
205 | }
206 |
207 | .reveal table {
208 | margin: auto;
209 | border-collapse: collapse;
210 | border-spacing: 0;
211 | }
212 |
213 | .reveal table th {
214 | font-weight: bold;
215 | }
216 |
217 | .reveal table th,
218 | .reveal table td {
219 | text-align: left;
220 | padding: 0.2em 0.5em 0.2em 0.5em;
221 | border-bottom: 1px solid;
222 | }
223 |
224 | .reveal table th[align="center"],
225 | .reveal table td[align="center"] {
226 | text-align: center;
227 | }
228 |
229 | .reveal table th[align="right"],
230 | .reveal table td[align="right"] {
231 | text-align: right;
232 | }
233 |
234 | .reveal table tbody tr:last-child th,
235 | .reveal table tbody tr:last-child td {
236 | border-bottom: none;
237 | }
238 |
239 | .reveal sup {
240 | vertical-align: super;
241 | font-size: smaller;
242 | }
243 | .reveal sub {
244 | vertical-align: sub;
245 | font-size: smaller;
246 | }
247 |
248 | .reveal small {
249 | display: inline-block;
250 | font-size: 0.6em;
251 | line-height: 1.2em;
252 | vertical-align: top;
253 | }
254 |
255 | .reveal small * {
256 | vertical-align: top;
257 | }
258 |
259 | .reveal img {
260 | margin: var(--r-block-margin) 0;
261 | }
262 |
263 |
264 | /*********************************************
265 | * LINKS
266 | *********************************************/
267 |
268 | .reveal a {
269 | color: var(--r-link-color);
270 | text-decoration: none;
271 | transition: color .15s ease;
272 | }
273 | .reveal a:hover {
274 | color: var(--r-link-color-hover);
275 | text-shadow: none;
276 | border: none;
277 | }
278 |
279 | .reveal .roll span:after {
280 | color: #fff;
281 | // background: darken( var(--r-link-color), 15% );
282 | background: var(--r-link-color-dark);
283 |
284 | }
285 |
286 |
287 | /*********************************************
288 | * Frame helper
289 | *********************************************/
290 |
291 | .reveal .r-frame {
292 | border: 4px solid var(--r-main-color);
293 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
294 | }
295 |
296 | .reveal a .r-frame {
297 | transition: all .15s linear;
298 | }
299 |
300 | .reveal a:hover .r-frame {
301 | border-color: var(--r-link-color);
302 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
303 | }
304 |
305 |
306 | /*********************************************
307 | * NAVIGATION CONTROLS
308 | *********************************************/
309 |
310 | .reveal .controls {
311 | color: var(--r-link-color);
312 | }
313 |
314 |
315 | /*********************************************
316 | * PROGRESS BAR
317 | *********************************************/
318 |
319 | .reveal .progress {
320 | background: rgba(0,0,0,0.2);
321 | color: var(--r-link-color);
322 | }
323 |
324 | /*********************************************
325 | * PRINT BACKGROUND
326 | *********************************************/
327 | @media print {
328 | .backgrounds {
329 | background-color: var(--r-background-color);
330 | }
331 | }
332 |
--------------------------------------------------------------------------------
/dist/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 | }
--------------------------------------------------------------------------------
/dist/theme/black.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js. This is the opposite of the 'white' 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-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: 42px;
18 | --r-main-color: #fff;
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: #fff;
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: #42affa;
35 | --r-link-color-dark: #068de9;
36 | --r-link-color-hover: #8dcffc;
37 | --r-selection-background-color: #bee4fd;
38 | --r-selection-color: #fff;
39 | }
40 |
41 | .reveal-viewport {
42 | background: #191919;
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 | }
--------------------------------------------------------------------------------
/dist/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 |
--------------------------------------------------------------------------------
/dist/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 |
--------------------------------------------------------------------------------
/dist/theme/fonts/league-gothic/league-gothic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/league-gothic/league-gothic.eot
--------------------------------------------------------------------------------
/dist/theme/fonts/league-gothic/league-gothic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/league-gothic/league-gothic.ttf
--------------------------------------------------------------------------------
/dist/theme/fonts/league-gothic/league-gothic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/league-gothic/league-gothic.woff
--------------------------------------------------------------------------------
/dist/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.
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.eot
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.ttf
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-italic.woff
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.eot
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.ttf
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-regular.woff
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.eot
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.ttf
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-semibold.woff
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.eot
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.ttf
--------------------------------------------------------------------------------
/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chubbc/manim_slides/0288b57cf13358853c9201282bb631d32ca01ea5/dist/theme/fonts/source-sans-pro/source-sans-pro-semibolditalic.woff
--------------------------------------------------------------------------------
/dist/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 |
--------------------------------------------------------------------------------
/dist/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 | }
--------------------------------------------------------------------------------
/dist/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 | }
--------------------------------------------------------------------------------
/dist/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 | }
--------------------------------------------------------------------------------
/dist/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 | }
--------------------------------------------------------------------------------
/ethz_logo_white.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |