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,292 @@
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
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #F0F1EB;
15
+ background-color: #F0F1EB; }
16
+
17
+ .reveal {
18
+ font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
19
+ font-size: 40px;
20
+ font-weight: normal;
21
+ color: #000; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #26351C;
26
+ text-shadow: none; }
27
+
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #26351C;
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: #383D3D;
49
+ font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
50
+ font-weight: normal;
51
+ line-height: 1.2;
52
+ letter-spacing: normal;
53
+ text-transform: none;
54
+ text-shadow: none;
55
+ word-wrap: break-word; }
56
+
57
+ .reveal h1 {
58
+ font-size: 3.77em; }
59
+
60
+ .reveal h2 {
61
+ font-size: 2.11em; }
62
+
63
+ .reveal h3 {
64
+ font-size: 1.55em; }
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: #51483D;
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: #8b7c69;
221
+ text-shadow: none;
222
+ border: none; }
223
+
224
+ .reveal .roll span:after {
225
+ color: #fff;
226
+ background: #25211c; }
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 #000;
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: #51483D;
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: #51483D; }
257
+
258
+ .reveal .controls .navigate-right,
259
+ .reveal .controls .navigate-right.enabled {
260
+ border-left-color: #51483D; }
261
+
262
+ .reveal .controls .navigate-up,
263
+ .reveal .controls .navigate-up.enabled {
264
+ border-bottom-color: #51483D; }
265
+
266
+ .reveal .controls .navigate-down,
267
+ .reveal .controls .navigate-down.enabled {
268
+ border-top-color: #51483D; }
269
+
270
+ .reveal .controls .navigate-left.enabled:hover {
271
+ border-right-color: #8b7c69; }
272
+
273
+ .reveal .controls .navigate-right.enabled:hover {
274
+ border-left-color: #8b7c69; }
275
+
276
+ .reveal .controls .navigate-up.enabled:hover {
277
+ border-bottom-color: #8b7c69; }
278
+
279
+ .reveal .controls .navigate-down.enabled:hover {
280
+ border-top-color: #8b7c69; }
281
+
282
+ /*********************************************
283
+ * PROGRESS BAR
284
+ *********************************************/
285
+ .reveal .progress {
286
+ background: rgba(0, 0, 0, 0.2); }
287
+
288
+ .reveal .progress span {
289
+ background: #51483D;
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); }
@@ -0,0 +1,295 @@
1
+ /**
2
+ * A simple theme for reveal.js presentations, similar
3
+ * to the default theme. The accent color is darkblue.
4
+ *
5
+ * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6
+ * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
9
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
10
+ section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
11
+ color: #fff; }
12
+
13
+ /*********************************************
14
+ * GLOBAL STYLES
15
+ *********************************************/
16
+ body {
17
+ background: #fff;
18
+ background-color: #fff; }
19
+
20
+ .reveal {
21
+ font-family: "Lato", sans-serif;
22
+ font-size: 40px;
23
+ font-weight: normal;
24
+ color: #000; }
25
+
26
+ ::selection {
27
+ color: #fff;
28
+ background: rgba(0, 0, 0, 0.99);
29
+ text-shadow: none; }
30
+
31
+ ::-moz-selection {
32
+ color: #fff;
33
+ background: rgba(0, 0, 0, 0.99);
34
+ text-shadow: none; }
35
+
36
+ .reveal .slides > section,
37
+ .reveal .slides > section > section {
38
+ line-height: 1.3;
39
+ font-weight: inherit; }
40
+
41
+ /*********************************************
42
+ * HEADERS
43
+ *********************************************/
44
+ .reveal h1,
45
+ .reveal h2,
46
+ .reveal h3,
47
+ .reveal h4,
48
+ .reveal h5,
49
+ .reveal h6 {
50
+ margin: 0 0 20px 0;
51
+ color: #000;
52
+ font-family: "News Cycle", Impact, sans-serif;
53
+ font-weight: normal;
54
+ line-height: 1.2;
55
+ letter-spacing: normal;
56
+ text-transform: none;
57
+ text-shadow: none;
58
+ word-wrap: break-word; }
59
+
60
+ .reveal h1 {
61
+ font-size: 3.77em; }
62
+
63
+ .reveal h2 {
64
+ font-size: 2.11em; }
65
+
66
+ .reveal h3 {
67
+ font-size: 1.55em; }
68
+
69
+ .reveal h4 {
70
+ font-size: 1em; }
71
+
72
+ .reveal h1 {
73
+ text-shadow: none; }
74
+
75
+ /*********************************************
76
+ * OTHER
77
+ *********************************************/
78
+ .reveal p {
79
+ margin: 20px 0;
80
+ line-height: 1.3; }
81
+
82
+ /* Ensure certain elements are never larger than the slide itself */
83
+ .reveal img,
84
+ .reveal video,
85
+ .reveal iframe {
86
+ max-width: 95%;
87
+ max-height: 95%; }
88
+
89
+ .reveal strong,
90
+ .reveal b {
91
+ font-weight: bold; }
92
+
93
+ .reveal em {
94
+ font-style: italic; }
95
+
96
+ .reveal ol,
97
+ .reveal dl,
98
+ .reveal ul {
99
+ display: inline-block;
100
+ text-align: left;
101
+ margin: 0 0 0 1em; }
102
+
103
+ .reveal ol {
104
+ list-style-type: decimal; }
105
+
106
+ .reveal ul {
107
+ list-style-type: disc; }
108
+
109
+ .reveal ul ul {
110
+ list-style-type: square; }
111
+
112
+ .reveal ul ul ul {
113
+ list-style-type: circle; }
114
+
115
+ .reveal ul ul,
116
+ .reveal ul ol,
117
+ .reveal ol ol,
118
+ .reveal ol ul {
119
+ display: block;
120
+ margin-left: 40px; }
121
+
122
+ .reveal dt {
123
+ font-weight: bold; }
124
+
125
+ .reveal dd {
126
+ margin-left: 40px; }
127
+
128
+ .reveal q,
129
+ .reveal blockquote {
130
+ quotes: none; }
131
+
132
+ .reveal blockquote {
133
+ display: block;
134
+ position: relative;
135
+ width: 70%;
136
+ margin: 20px auto;
137
+ padding: 5px;
138
+ font-style: italic;
139
+ background: rgba(255, 255, 255, 0.05);
140
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
141
+
142
+ .reveal blockquote p:first-child,
143
+ .reveal blockquote p:last-child {
144
+ display: inline-block; }
145
+
146
+ .reveal q {
147
+ font-style: italic; }
148
+
149
+ .reveal pre {
150
+ display: block;
151
+ position: relative;
152
+ width: 90%;
153
+ margin: 20px auto;
154
+ text-align: left;
155
+ font-size: 0.55em;
156
+ font-family: monospace;
157
+ line-height: 1.2em;
158
+ word-wrap: break-word;
159
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
160
+
161
+ .reveal code {
162
+ font-family: monospace; }
163
+
164
+ .reveal pre code {
165
+ display: block;
166
+ padding: 5px;
167
+ overflow: auto;
168
+ max-height: 400px;
169
+ word-wrap: normal; }
170
+
171
+ .reveal table {
172
+ margin: auto;
173
+ border-collapse: collapse;
174
+ border-spacing: 0; }
175
+
176
+ .reveal table th {
177
+ font-weight: bold; }
178
+
179
+ .reveal table th,
180
+ .reveal table td {
181
+ text-align: left;
182
+ padding: 0.2em 0.5em 0.2em 0.5em;
183
+ border-bottom: 1px solid; }
184
+
185
+ .reveal table th[align="center"],
186
+ .reveal table td[align="center"] {
187
+ text-align: center; }
188
+
189
+ .reveal table th[align="right"],
190
+ .reveal table td[align="right"] {
191
+ text-align: right; }
192
+
193
+ .reveal table tbody tr:last-child th,
194
+ .reveal table tbody tr:last-child td {
195
+ border-bottom: none; }
196
+
197
+ .reveal sup {
198
+ vertical-align: super; }
199
+
200
+ .reveal sub {
201
+ vertical-align: sub; }
202
+
203
+ .reveal small {
204
+ display: inline-block;
205
+ font-size: 0.6em;
206
+ line-height: 1.2em;
207
+ vertical-align: top; }
208
+
209
+ .reveal small * {
210
+ vertical-align: top; }
211
+
212
+ /*********************************************
213
+ * LINKS
214
+ *********************************************/
215
+ .reveal a {
216
+ color: #00008B;
217
+ text-decoration: none;
218
+ -webkit-transition: color .15s ease;
219
+ -moz-transition: color .15s ease;
220
+ transition: color .15s ease; }
221
+
222
+ .reveal a:hover {
223
+ color: #0000f1;
224
+ text-shadow: none;
225
+ border: none; }
226
+
227
+ .reveal .roll span:after {
228
+ color: #fff;
229
+ background: #00003f; }
230
+
231
+ /*********************************************
232
+ * IMAGES
233
+ *********************************************/
234
+ .reveal section img {
235
+ margin: 15px 0px;
236
+ background: rgba(255, 255, 255, 0.12);
237
+ border: 4px solid #000;
238
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
239
+
240
+ .reveal section img.plain {
241
+ border: 0;
242
+ box-shadow: none; }
243
+
244
+ .reveal a img {
245
+ -webkit-transition: all .15s linear;
246
+ -moz-transition: all .15s linear;
247
+ transition: all .15s linear; }
248
+
249
+ .reveal a:hover img {
250
+ background: rgba(255, 255, 255, 0.2);
251
+ border-color: #00008B;
252
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
253
+
254
+ /*********************************************
255
+ * NAVIGATION CONTROLS
256
+ *********************************************/
257
+ .reveal .controls .navigate-left,
258
+ .reveal .controls .navigate-left.enabled {
259
+ border-right-color: #00008B; }
260
+
261
+ .reveal .controls .navigate-right,
262
+ .reveal .controls .navigate-right.enabled {
263
+ border-left-color: #00008B; }
264
+
265
+ .reveal .controls .navigate-up,
266
+ .reveal .controls .navigate-up.enabled {
267
+ border-bottom-color: #00008B; }
268
+
269
+ .reveal .controls .navigate-down,
270
+ .reveal .controls .navigate-down.enabled {
271
+ border-top-color: #00008B; }
272
+
273
+ .reveal .controls .navigate-left.enabled:hover {
274
+ border-right-color: #0000f1; }
275
+
276
+ .reveal .controls .navigate-right.enabled:hover {
277
+ border-left-color: #0000f1; }
278
+
279
+ .reveal .controls .navigate-up.enabled:hover {
280
+ border-bottom-color: #0000f1; }
281
+
282
+ .reveal .controls .navigate-down.enabled:hover {
283
+ border-top-color: #0000f1; }
284
+
285
+ /*********************************************
286
+ * PROGRESS BAR
287
+ *********************************************/
288
+ .reveal .progress {
289
+ background: rgba(0, 0, 0, 0.2); }
290
+
291
+ .reveal .progress span {
292
+ background: #00008B;
293
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
294
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
295
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }