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,296 @@
1
+ /**
2
+ * Solarized Dark theme for reveal.js.
3
+ * Author: Achim Staebler
4
+ */
5
+ @import url(../../lib/font/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
+ * GLOBAL STYLES
16
+ *********************************************/
17
+ body {
18
+ background: #002b36;
19
+ background-color: #002b36; }
20
+
21
+ .reveal {
22
+ font-family: "Lato", sans-serif;
23
+ font-size: 40px;
24
+ font-weight: normal;
25
+ color: #93a1a1; }
26
+
27
+ ::selection {
28
+ color: #fff;
29
+ background: #d33682;
30
+ text-shadow: none; }
31
+
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: #d33682;
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: #eee8d5;
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: none; }
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: #268bd2;
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: #78b9e6;
225
+ text-shadow: none;
226
+ border: none; }
227
+
228
+ .reveal .roll span:after {
229
+ color: #fff;
230
+ background: #1a6091; }
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 #93a1a1;
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: #268bd2;
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: #268bd2; }
261
+
262
+ .reveal .controls .navigate-right,
263
+ .reveal .controls .navigate-right.enabled {
264
+ border-left-color: #268bd2; }
265
+
266
+ .reveal .controls .navigate-up,
267
+ .reveal .controls .navigate-up.enabled {
268
+ border-bottom-color: #268bd2; }
269
+
270
+ .reveal .controls .navigate-down,
271
+ .reveal .controls .navigate-down.enabled {
272
+ border-top-color: #268bd2; }
273
+
274
+ .reveal .controls .navigate-left.enabled:hover {
275
+ border-right-color: #78b9e6; }
276
+
277
+ .reveal .controls .navigate-right.enabled:hover {
278
+ border-left-color: #78b9e6; }
279
+
280
+ .reveal .controls .navigate-up.enabled:hover {
281
+ border-bottom-color: #78b9e6; }
282
+
283
+ .reveal .controls .navigate-down.enabled:hover {
284
+ border-top-color: #78b9e6; }
285
+
286
+ /*********************************************
287
+ * PROGRESS BAR
288
+ *********************************************/
289
+ .reveal .progress {
290
+ background: rgba(0, 0, 0, 0.2); }
291
+
292
+ .reveal .progress span {
293
+ background: #268bd2;
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,290 @@
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
+ /*********************************************
9
+ * GLOBAL STYLES
10
+ *********************************************/
11
+ body {
12
+ background: #111;
13
+ background-color: #111; }
14
+
15
+ .reveal {
16
+ font-family: "Open Sans", sans-serif;
17
+ font-size: 40px;
18
+ font-weight: normal;
19
+ color: #eee; }
20
+
21
+ ::selection {
22
+ color: #fff;
23
+ background: #e7ad52;
24
+ text-shadow: none; }
25
+
26
+ ::-moz-selection {
27
+ color: #fff;
28
+ background: #e7ad52;
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: "Montserrat", Impact, sans-serif;
48
+ font-weight: normal;
49
+ line-height: 1.2;
50
+ letter-spacing: -0.03em;
51
+ text-transform: none;
52
+ text-shadow: none;
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: none; }
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: #e7ad52;
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: #f3d7ac;
219
+ text-shadow: none;
220
+ border: none; }
221
+
222
+ .reveal .roll span:after {
223
+ color: #fff;
224
+ background: #d08a1d; }
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: #e7ad52;
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: #e7ad52; }
255
+
256
+ .reveal .controls .navigate-right,
257
+ .reveal .controls .navigate-right.enabled {
258
+ border-left-color: #e7ad52; }
259
+
260
+ .reveal .controls .navigate-up,
261
+ .reveal .controls .navigate-up.enabled {
262
+ border-bottom-color: #e7ad52; }
263
+
264
+ .reveal .controls .navigate-down,
265
+ .reveal .controls .navigate-down.enabled {
266
+ border-top-color: #e7ad52; }
267
+
268
+ .reveal .controls .navigate-left.enabled:hover {
269
+ border-right-color: #f3d7ac; }
270
+
271
+ .reveal .controls .navigate-right.enabled:hover {
272
+ border-left-color: #f3d7ac; }
273
+
274
+ .reveal .controls .navigate-up.enabled:hover {
275
+ border-bottom-color: #f3d7ac; }
276
+
277
+ .reveal .controls .navigate-down.enabled:hover {
278
+ border-top-color: #f3d7ac; }
279
+
280
+ /*********************************************
281
+ * PROGRESS BAR
282
+ *********************************************/
283
+ .reveal .progress {
284
+ background: rgba(0, 0, 0, 0.2); }
285
+
286
+ .reveal .progress span {
287
+ background: #e7ad52;
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); }