scateu.me-jekyll-theme 0.1.1 → 0.1.2

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