starterlog-theme 1.1.3 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +52 -8
  3. data/_layouts/slide.html +105 -0
  4. data/_pages/profile/index.html +1 -1
  5. data/_pages/start/index.html +7 -2
  6. data/assets/modules/reveal.js/.gitignore +13 -0
  7. data/assets/modules/reveal.js/.travis.yml +5 -0
  8. data/assets/modules/reveal.js/CONTRIBUTING.md +23 -0
  9. data/assets/modules/reveal.js/Gruntfile.js +187 -0
  10. data/assets/modules/reveal.js/LICENSE +19 -0
  11. data/assets/modules/reveal.js/README.md +1185 -0
  12. data/assets/modules/reveal.js/bower.json +27 -0
  13. data/assets/modules/reveal.js/css/print/paper.css +203 -0
  14. data/assets/modules/reveal.js/css/print/pdf.css +171 -0
  15. data/assets/modules/reveal.js/css/reveal.css +1365 -0
  16. data/assets/modules/reveal.js/css/reveal.scss +1446 -0
  17. data/assets/modules/reveal.js/css/theme/README.md +21 -0
  18. data/assets/modules/reveal.js/css/theme/beige.css +296 -0
  19. data/assets/modules/reveal.js/css/theme/black.css +292 -0
  20. data/assets/modules/reveal.js/css/theme/blood.css +315 -0
  21. data/assets/modules/reveal.js/css/theme/league.css +298 -0
  22. data/assets/modules/reveal.js/css/theme/moon.css +296 -0
  23. data/assets/modules/reveal.js/css/theme/night.css +290 -0
  24. data/assets/modules/reveal.js/css/theme/serif.css +292 -0
  25. data/assets/modules/reveal.js/css/theme/simple.css +295 -0
  26. data/assets/modules/reveal.js/css/theme/sky.css +299 -0
  27. data/assets/modules/reveal.js/css/theme/solarized.css +296 -0
  28. data/assets/modules/reveal.js/css/theme/source/beige.scss +39 -0
  29. data/assets/modules/reveal.js/css/theme/source/black.scss +49 -0
  30. data/assets/modules/reveal.js/css/theme/source/blood.scss +78 -0
  31. data/assets/modules/reveal.js/css/theme/source/league.scss +34 -0
  32. data/assets/modules/reveal.js/css/theme/source/moon.scss +57 -0
  33. data/assets/modules/reveal.js/css/theme/source/night.scss +34 -0
  34. data/assets/modules/reveal.js/css/theme/source/serif.scss +35 -0
  35. data/assets/modules/reveal.js/css/theme/source/simple.scss +43 -0
  36. data/assets/modules/reveal.js/css/theme/source/sky.scss +46 -0
  37. data/assets/modules/reveal.js/css/theme/source/solarized.scss +63 -0
  38. data/assets/modules/reveal.js/css/theme/source/white.scss +49 -0
  39. data/assets/modules/reveal.js/css/theme/template/mixins.scss +29 -0
  40. data/assets/modules/reveal.js/css/theme/template/settings.scss +43 -0
  41. data/assets/modules/reveal.js/css/theme/template/theme.scss +352 -0
  42. data/assets/modules/reveal.js/css/theme/white.css +292 -0
  43. data/assets/modules/reveal.js/demo.html +410 -0
  44. data/assets/modules/reveal.js/index.html +50 -0
  45. data/assets/modules/reveal.js/js/reveal.js +4961 -0
  46. data/assets/modules/reveal.js/lib/css/zenburn.css +80 -0
  47. data/assets/modules/reveal.js/lib/font/league-gothic/LICENSE +2 -0
  48. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
  49. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
  50. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
  51. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
  52. data/assets/modules/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
  53. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  54. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  55. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  56. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  57. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  58. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  59. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  60. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  61. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  62. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  63. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  64. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  65. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  66. data/assets/modules/reveal.js/lib/js/classList.js +2 -0
  67. data/assets/modules/reveal.js/lib/js/head.min.js +9 -0
  68. data/assets/modules/reveal.js/lib/js/html5shiv.js +7 -0
  69. data/assets/modules/reveal.js/package.json +45 -0
  70. data/assets/modules/reveal.js/plugin/highlight/highlight.js +78 -0
  71. data/assets/modules/reveal.js/plugin/markdown/example.html +129 -0
  72. data/assets/modules/reveal.js/plugin/markdown/example.md +31 -0
  73. data/assets/modules/reveal.js/plugin/markdown/markdown.js +411 -0
  74. data/assets/modules/reveal.js/plugin/markdown/marked.js +6 -0
  75. data/assets/modules/reveal.js/plugin/math/math.js +67 -0
  76. data/assets/modules/reveal.js/plugin/multiplex/client.js +13 -0
  77. data/assets/modules/reveal.js/plugin/multiplex/index.js +64 -0
  78. data/assets/modules/reveal.js/plugin/multiplex/master.js +31 -0
  79. data/assets/modules/reveal.js/plugin/multiplex/package.json +19 -0
  80. data/assets/modules/reveal.js/plugin/notes-server/client.js +65 -0
  81. data/assets/modules/reveal.js/plugin/notes-server/index.js +69 -0
  82. data/assets/modules/reveal.js/plugin/notes-server/notes.html +585 -0
  83. data/assets/modules/reveal.js/plugin/notes/notes.html +609 -0
  84. data/assets/modules/reveal.js/plugin/notes/notes.js +145 -0
  85. data/assets/modules/reveal.js/plugin/print-pdf/print-pdf.js +51 -0
  86. data/assets/modules/reveal.js/plugin/search/search.js +196 -0
  87. data/assets/modules/reveal.js/plugin/zoom-js/zoom.js +288 -0
  88. data/assets/modules/reveal.js/test/examples/assets/image1.png +0 -0
  89. data/assets/modules/reveal.js/test/examples/assets/image2.png +0 -0
  90. data/assets/modules/reveal.js/test/examples/barebones.html +41 -0
  91. data/assets/modules/reveal.js/test/examples/embedded-media.html +49 -0
  92. data/assets/modules/reveal.js/test/examples/math.html +185 -0
  93. data/assets/modules/reveal.js/test/examples/slide-backgrounds.html +144 -0
  94. data/assets/modules/reveal.js/test/examples/slide-transitions.html +101 -0
  95. data/assets/modules/reveal.js/test/qunit-1.12.0.css +244 -0
  96. data/assets/modules/reveal.js/test/qunit-1.12.0.js +2212 -0
  97. data/assets/modules/reveal.js/test/simple.md +12 -0
  98. data/assets/modules/reveal.js/test/test-markdown-element-attributes.html +134 -0
  99. data/assets/modules/reveal.js/test/test-markdown-element-attributes.js +46 -0
  100. data/assets/modules/reveal.js/test/test-markdown-external.html +36 -0
  101. data/assets/modules/reveal.js/test/test-markdown-external.js +24 -0
  102. data/assets/modules/reveal.js/test/test-markdown-options.html +41 -0
  103. data/assets/modules/reveal.js/test/test-markdown-options.js +26 -0
  104. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.html +128 -0
  105. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.js +47 -0
  106. data/assets/modules/reveal.js/test/test-markdown.html +52 -0
  107. data/assets/modules/reveal.js/test/test-markdown.js +15 -0
  108. data/assets/modules/reveal.js/test/test-pdf.html +83 -0
  109. data/assets/modules/reveal.js/test/test-pdf.js +15 -0
  110. data/assets/modules/reveal.js/test/test.html +86 -0
  111. data/assets/modules/reveal.js/test/test.js +597 -0
  112. metadata +117 -10
@@ -0,0 +1,21 @@
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 including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#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 by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt 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.
@@ -0,0 +1,296 @@
1
+ /**
2
+ * Beige theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+ @import url(../../lib/font/league-gothic/league-gothic.css);
7
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
8
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #f7f2d3;
13
+ background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
14
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));
15
+ background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
16
+ background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
17
+ background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
18
+ background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
19
+ background-color: #f7f3de; }
20
+
21
+ .reveal {
22
+ font-family: "Lato", sans-serif;
23
+ font-size: 40px;
24
+ font-weight: normal;
25
+ color: #333; }
26
+
27
+ ::selection {
28
+ color: #fff;
29
+ background: rgba(79, 64, 28, 0.99);
30
+ text-shadow: none; }
31
+
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: rgba(79, 64, 28, 0.99);
35
+ text-shadow: none; }
36
+
37
+ .reveal .slides > section,
38
+ .reveal .slides > section > section {
39
+ line-height: 1.3;
40
+ font-weight: inherit; }
41
+
42
+ /*********************************************
43
+ * HEADERS
44
+ *********************************************/
45
+ .reveal h1,
46
+ .reveal h2,
47
+ .reveal h3,
48
+ .reveal h4,
49
+ .reveal h5,
50
+ .reveal h6 {
51
+ margin: 0 0 20px 0;
52
+ color: #333;
53
+ font-family: "League Gothic", Impact, sans-serif;
54
+ font-weight: normal;
55
+ line-height: 1.2;
56
+ letter-spacing: normal;
57
+ text-transform: uppercase;
58
+ text-shadow: none;
59
+ word-wrap: break-word; }
60
+
61
+ .reveal h1 {
62
+ font-size: 3.77em; }
63
+
64
+ .reveal h2 {
65
+ font-size: 2.11em; }
66
+
67
+ .reveal h3 {
68
+ font-size: 1.55em; }
69
+
70
+ .reveal h4 {
71
+ font-size: 1em; }
72
+
73
+ .reveal h1 {
74
+ text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }
75
+
76
+ /*********************************************
77
+ * OTHER
78
+ *********************************************/
79
+ .reveal p {
80
+ margin: 20px 0;
81
+ line-height: 1.3; }
82
+
83
+ /* Ensure certain elements are never larger than the slide itself */
84
+ .reveal img,
85
+ .reveal video,
86
+ .reveal iframe {
87
+ max-width: 95%;
88
+ max-height: 95%; }
89
+
90
+ .reveal strong,
91
+ .reveal b {
92
+ font-weight: bold; }
93
+
94
+ .reveal em {
95
+ font-style: italic; }
96
+
97
+ .reveal ol,
98
+ .reveal dl,
99
+ .reveal ul {
100
+ display: inline-block;
101
+ text-align: left;
102
+ margin: 0 0 0 1em; }
103
+
104
+ .reveal ol {
105
+ list-style-type: decimal; }
106
+
107
+ .reveal ul {
108
+ list-style-type: disc; }
109
+
110
+ .reveal ul ul {
111
+ list-style-type: square; }
112
+
113
+ .reveal ul ul ul {
114
+ list-style-type: circle; }
115
+
116
+ .reveal ul ul,
117
+ .reveal ul ol,
118
+ .reveal ol ol,
119
+ .reveal ol ul {
120
+ display: block;
121
+ margin-left: 40px; }
122
+
123
+ .reveal dt {
124
+ font-weight: bold; }
125
+
126
+ .reveal dd {
127
+ margin-left: 40px; }
128
+
129
+ .reveal q,
130
+ .reveal blockquote {
131
+ quotes: none; }
132
+
133
+ .reveal blockquote {
134
+ display: block;
135
+ position: relative;
136
+ width: 70%;
137
+ margin: 20px auto;
138
+ padding: 5px;
139
+ font-style: italic;
140
+ background: rgba(255, 255, 255, 0.05);
141
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
142
+
143
+ .reveal blockquote p:first-child,
144
+ .reveal blockquote p:last-child {
145
+ display: inline-block; }
146
+
147
+ .reveal q {
148
+ font-style: italic; }
149
+
150
+ .reveal pre {
151
+ display: block;
152
+ position: relative;
153
+ width: 90%;
154
+ margin: 20px auto;
155
+ text-align: left;
156
+ font-size: 0.55em;
157
+ font-family: monospace;
158
+ line-height: 1.2em;
159
+ word-wrap: break-word;
160
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
161
+
162
+ .reveal code {
163
+ font-family: monospace; }
164
+
165
+ .reveal pre code {
166
+ display: block;
167
+ padding: 5px;
168
+ overflow: auto;
169
+ max-height: 400px;
170
+ word-wrap: normal; }
171
+
172
+ .reveal table {
173
+ margin: auto;
174
+ border-collapse: collapse;
175
+ border-spacing: 0; }
176
+
177
+ .reveal table th {
178
+ font-weight: bold; }
179
+
180
+ .reveal table th,
181
+ .reveal table td {
182
+ text-align: left;
183
+ padding: 0.2em 0.5em 0.2em 0.5em;
184
+ border-bottom: 1px solid; }
185
+
186
+ .reveal table th[align="center"],
187
+ .reveal table td[align="center"] {
188
+ text-align: center; }
189
+
190
+ .reveal table th[align="right"],
191
+ .reveal table td[align="right"] {
192
+ text-align: right; }
193
+
194
+ .reveal table tbody tr:last-child th,
195
+ .reveal table tbody tr:last-child td {
196
+ border-bottom: none; }
197
+
198
+ .reveal sup {
199
+ vertical-align: super; }
200
+
201
+ .reveal sub {
202
+ vertical-align: sub; }
203
+
204
+ .reveal small {
205
+ display: inline-block;
206
+ font-size: 0.6em;
207
+ line-height: 1.2em;
208
+ vertical-align: top; }
209
+
210
+ .reveal small * {
211
+ vertical-align: top; }
212
+
213
+ /*********************************************
214
+ * LINKS
215
+ *********************************************/
216
+ .reveal a {
217
+ color: #8b743d;
218
+ text-decoration: none;
219
+ -webkit-transition: color .15s ease;
220
+ -moz-transition: color .15s ease;
221
+ transition: color .15s ease; }
222
+
223
+ .reveal a:hover {
224
+ color: #c0a86e;
225
+ text-shadow: none;
226
+ border: none; }
227
+
228
+ .reveal .roll span:after {
229
+ color: #fff;
230
+ background: #564826; }
231
+
232
+ /*********************************************
233
+ * IMAGES
234
+ *********************************************/
235
+ .reveal section img {
236
+ margin: 15px 0px;
237
+ background: rgba(255, 255, 255, 0.12);
238
+ border: 4px solid #333;
239
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
240
+
241
+ .reveal section img.plain {
242
+ border: 0;
243
+ box-shadow: none; }
244
+
245
+ .reveal a img {
246
+ -webkit-transition: all .15s linear;
247
+ -moz-transition: all .15s linear;
248
+ transition: all .15s linear; }
249
+
250
+ .reveal a:hover img {
251
+ background: rgba(255, 255, 255, 0.2);
252
+ border-color: #8b743d;
253
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
254
+
255
+ /*********************************************
256
+ * NAVIGATION CONTROLS
257
+ *********************************************/
258
+ .reveal .controls .navigate-left,
259
+ .reveal .controls .navigate-left.enabled {
260
+ border-right-color: #8b743d; }
261
+
262
+ .reveal .controls .navigate-right,
263
+ .reveal .controls .navigate-right.enabled {
264
+ border-left-color: #8b743d; }
265
+
266
+ .reveal .controls .navigate-up,
267
+ .reveal .controls .navigate-up.enabled {
268
+ border-bottom-color: #8b743d; }
269
+
270
+ .reveal .controls .navigate-down,
271
+ .reveal .controls .navigate-down.enabled {
272
+ border-top-color: #8b743d; }
273
+
274
+ .reveal .controls .navigate-left.enabled:hover {
275
+ border-right-color: #c0a86e; }
276
+
277
+ .reveal .controls .navigate-right.enabled:hover {
278
+ border-left-color: #c0a86e; }
279
+
280
+ .reveal .controls .navigate-up.enabled:hover {
281
+ border-bottom-color: #c0a86e; }
282
+
283
+ .reveal .controls .navigate-down.enabled:hover {
284
+ border-top-color: #c0a86e; }
285
+
286
+ /*********************************************
287
+ * PROGRESS BAR
288
+ *********************************************/
289
+ .reveal .progress {
290
+ background: rgba(0, 0, 0, 0.2); }
291
+
292
+ .reveal .progress span {
293
+ background: #8b743d;
294
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
295
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
296
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
@@ -0,0 +1,292 @@
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(../../lib/font/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
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #222;
15
+ background-color: #222; }
16
+
17
+ .reveal {
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
+ font-weight: normal;
21
+ color: #fff; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #bee4fd;
26
+ text-shadow: none; }
27
+
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #bee4fd;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides > section,
34
+ .reveal .slides > section > section {
35
+ line-height: 1.3;
36
+ font-weight: inherit; }
37
+
38
+ /*********************************************
39
+ * HEADERS
40
+ *********************************************/
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
47
+ margin: 0 0 20px 0;
48
+ color: #fff;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
50
+ font-weight: 600;
51
+ line-height: 1.2;
52
+ letter-spacing: normal;
53
+ text-transform: uppercase;
54
+ text-shadow: none;
55
+ word-wrap: break-word; }
56
+
57
+ .reveal h1 {
58
+ font-size: 2.5em; }
59
+
60
+ .reveal h2 {
61
+ font-size: 1.6em; }
62
+
63
+ .reveal h3 {
64
+ font-size: 1.3em; }
65
+
66
+ .reveal h4 {
67
+ font-size: 1em; }
68
+
69
+ .reveal h1 {
70
+ text-shadow: none; }
71
+
72
+ /*********************************************
73
+ * OTHER
74
+ *********************************************/
75
+ .reveal p {
76
+ margin: 20px 0;
77
+ line-height: 1.3; }
78
+
79
+ /* Ensure certain elements are never larger than the slide itself */
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
83
+ max-width: 95%;
84
+ max-height: 95%; }
85
+
86
+ .reveal strong,
87
+ .reveal b {
88
+ font-weight: bold; }
89
+
90
+ .reveal em {
91
+ font-style: italic; }
92
+
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
96
+ display: inline-block;
97
+ text-align: left;
98
+ margin: 0 0 0 1em; }
99
+
100
+ .reveal ol {
101
+ list-style-type: decimal; }
102
+
103
+ .reveal ul {
104
+ list-style-type: disc; }
105
+
106
+ .reveal ul ul {
107
+ list-style-type: square; }
108
+
109
+ .reveal ul ul ul {
110
+ list-style-type: circle; }
111
+
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
116
+ display: block;
117
+ margin-left: 40px; }
118
+
119
+ .reveal dt {
120
+ font-weight: bold; }
121
+
122
+ .reveal dd {
123
+ margin-left: 40px; }
124
+
125
+ .reveal q,
126
+ .reveal blockquote {
127
+ quotes: none; }
128
+
129
+ .reveal blockquote {
130
+ display: block;
131
+ position: relative;
132
+ width: 70%;
133
+ margin: 20px auto;
134
+ padding: 5px;
135
+ font-style: italic;
136
+ background: rgba(255, 255, 255, 0.05);
137
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
138
+
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
141
+ display: inline-block; }
142
+
143
+ .reveal q {
144
+ font-style: italic; }
145
+
146
+ .reveal pre {
147
+ display: block;
148
+ position: relative;
149
+ width: 90%;
150
+ margin: 20px auto;
151
+ text-align: left;
152
+ font-size: 0.55em;
153
+ font-family: monospace;
154
+ line-height: 1.2em;
155
+ word-wrap: break-word;
156
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
157
+
158
+ .reveal code {
159
+ font-family: monospace; }
160
+
161
+ .reveal pre code {
162
+ display: block;
163
+ padding: 5px;
164
+ overflow: auto;
165
+ max-height: 400px;
166
+ word-wrap: normal; }
167
+
168
+ .reveal table {
169
+ margin: auto;
170
+ border-collapse: collapse;
171
+ border-spacing: 0; }
172
+
173
+ .reveal table th {
174
+ font-weight: bold; }
175
+
176
+ .reveal table th,
177
+ .reveal table td {
178
+ text-align: left;
179
+ padding: 0.2em 0.5em 0.2em 0.5em;
180
+ border-bottom: 1px solid; }
181
+
182
+ .reveal table th[align="center"],
183
+ .reveal table td[align="center"] {
184
+ text-align: center; }
185
+
186
+ .reveal table th[align="right"],
187
+ .reveal table td[align="right"] {
188
+ text-align: right; }
189
+
190
+ .reveal table tbody tr:last-child th,
191
+ .reveal table tbody tr:last-child td {
192
+ border-bottom: none; }
193
+
194
+ .reveal sup {
195
+ vertical-align: super; }
196
+
197
+ .reveal sub {
198
+ vertical-align: sub; }
199
+
200
+ .reveal small {
201
+ display: inline-block;
202
+ font-size: 0.6em;
203
+ line-height: 1.2em;
204
+ vertical-align: top; }
205
+
206
+ .reveal small * {
207
+ vertical-align: top; }
208
+
209
+ /*********************************************
210
+ * LINKS
211
+ *********************************************/
212
+ .reveal a {
213
+ color: #42affa;
214
+ text-decoration: none;
215
+ -webkit-transition: color .15s ease;
216
+ -moz-transition: color .15s ease;
217
+ transition: color .15s ease; }
218
+
219
+ .reveal a:hover {
220
+ color: #8dcffc;
221
+ text-shadow: none;
222
+ border: none; }
223
+
224
+ .reveal .roll span:after {
225
+ color: #fff;
226
+ background: #068de9; }
227
+
228
+ /*********************************************
229
+ * IMAGES
230
+ *********************************************/
231
+ .reveal section img {
232
+ margin: 15px 0px;
233
+ background: rgba(255, 255, 255, 0.12);
234
+ border: 4px solid #fff;
235
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
236
+
237
+ .reveal section img.plain {
238
+ border: 0;
239
+ box-shadow: none; }
240
+
241
+ .reveal a img {
242
+ -webkit-transition: all .15s linear;
243
+ -moz-transition: all .15s linear;
244
+ transition: all .15s linear; }
245
+
246
+ .reveal a:hover img {
247
+ background: rgba(255, 255, 255, 0.2);
248
+ border-color: #42affa;
249
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
250
+
251
+ /*********************************************
252
+ * NAVIGATION CONTROLS
253
+ *********************************************/
254
+ .reveal .controls .navigate-left,
255
+ .reveal .controls .navigate-left.enabled {
256
+ border-right-color: #42affa; }
257
+
258
+ .reveal .controls .navigate-right,
259
+ .reveal .controls .navigate-right.enabled {
260
+ border-left-color: #42affa; }
261
+
262
+ .reveal .controls .navigate-up,
263
+ .reveal .controls .navigate-up.enabled {
264
+ border-bottom-color: #42affa; }
265
+
266
+ .reveal .controls .navigate-down,
267
+ .reveal .controls .navigate-down.enabled {
268
+ border-top-color: #42affa; }
269
+
270
+ .reveal .controls .navigate-left.enabled:hover {
271
+ border-right-color: #8dcffc; }
272
+
273
+ .reveal .controls .navigate-right.enabled:hover {
274
+ border-left-color: #8dcffc; }
275
+
276
+ .reveal .controls .navigate-up.enabled:hover {
277
+ border-bottom-color: #8dcffc; }
278
+
279
+ .reveal .controls .navigate-down.enabled:hover {
280
+ border-top-color: #8dcffc; }
281
+
282
+ /*********************************************
283
+ * PROGRESS BAR
284
+ *********************************************/
285
+ .reveal .progress {
286
+ background: rgba(0, 0, 0, 0.2); }
287
+
288
+ .reveal .progress span {
289
+ background: #42affa;
290
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
291
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
292
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }