slide_hero 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/README.md +1 -1
  4. data/lib/slide_hero/version.rb +1 -1
  5. data/lib/slide_hero/views/layout.html.erb +2 -2
  6. data/vendor/reveal.js/.gitignore +3 -1
  7. data/vendor/reveal.js/.travis.yml +1 -1
  8. data/vendor/reveal.js/CONTRIBUTING.md +19 -0
  9. data/vendor/reveal.js/Gruntfile.js +58 -21
  10. data/vendor/reveal.js/LICENSE +1 -1
  11. data/vendor/reveal.js/README.md +154 -74
  12. data/vendor/reveal.js/css/print/paper.css +193 -167
  13. data/vendor/reveal.js/css/print/pdf.css +20 -53
  14. data/vendor/reveal.js/css/reveal.css +912 -1651
  15. data/vendor/reveal.js/css/reveal.scss +1316 -0
  16. data/vendor/reveal.js/css/theme/README.md +1 -1
  17. data/vendor/reveal.js/css/theme/beige.css +177 -60
  18. data/vendor/reveal.js/css/theme/black.css +261 -0
  19. data/vendor/reveal.js/css/theme/blood.css +191 -75
  20. data/vendor/reveal.js/css/theme/league.css +267 -0
  21. data/vendor/reveal.js/css/theme/moon.css +168 -51
  22. data/vendor/reveal.js/css/theme/night.css +165 -42
  23. data/vendor/reveal.js/css/theme/serif.css +181 -58
  24. data/vendor/reveal.js/css/theme/simple.css +173 -50
  25. data/vendor/reveal.js/css/theme/sky.css +170 -47
  26. data/vendor/reveal.js/css/theme/solarized.css +168 -51
  27. data/vendor/reveal.js/css/theme/source/beige.scss +1 -12
  28. data/vendor/reveal.js/css/theme/source/black.scss +49 -0
  29. data/vendor/reveal.js/css/theme/source/blood.scss +4 -4
  30. data/vendor/reveal.js/css/theme/source/{default.scss → league.scss} +5 -13
  31. data/vendor/reveal.js/css/theme/source/moon.scss +1 -12
  32. data/vendor/reveal.js/css/theme/source/serif.scss +1 -1
  33. data/vendor/reveal.js/css/theme/source/sky.scss +1 -1
  34. data/vendor/reveal.js/css/theme/source/solarized.scss +1 -12
  35. data/vendor/reveal.js/css/theme/source/white.scss +49 -0
  36. data/vendor/reveal.js/css/theme/template/settings.scss +13 -4
  37. data/vendor/reveal.js/css/theme/template/theme.scss +182 -13
  38. data/vendor/reveal.js/css/theme/white.css +261 -0
  39. data/vendor/reveal.js/index.html +198 -178
  40. data/vendor/reveal.js/js/reveal.js +1286 -392
  41. data/vendor/reveal.js/lib/css/zenburn.css +74 -71
  42. data/vendor/reveal.js/lib/font/{league_gothic_license → league-gothic/LICENSE} +0 -0
  43. data/vendor/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
  44. data/vendor/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
  45. data/vendor/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
  46. data/vendor/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
  47. data/vendor/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
  48. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  49. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  50. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  51. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  52. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  53. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  54. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  55. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  56. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  57. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  58. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  59. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  60. data/vendor/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  61. data/vendor/reveal.js/package.json +9 -7
  62. data/vendor/reveal.js/plugin/highlight/highlight.js +2 -4
  63. data/vendor/reveal.js/plugin/leap/leap.js +4 -2
  64. data/vendor/reveal.js/plugin/markdown/example.html +2 -2
  65. data/vendor/reveal.js/plugin/markdown/markdown.js +8 -7
  66. data/vendor/reveal.js/plugin/notes/notes.html +321 -182
  67. data/vendor/reveal.js/plugin/notes/notes.js +89 -45
  68. data/vendor/reveal.js/plugin/notes-server/client.js +49 -46
  69. data/vendor/reveal.js/plugin/notes-server/index.js +28 -21
  70. data/vendor/reveal.js/plugin/notes-server/notes.html +351 -97
  71. data/vendor/reveal.js/plugin/print-pdf/print-pdf.js +24 -20
  72. data/vendor/reveal.js/plugin/zoom-js/zoom.js +77 -57
  73. data/vendor/reveal.js/test/examples/barebones.html +2 -2
  74. data/vendor/reveal.js/test/examples/embedded-media.html +2 -2
  75. data/vendor/reveal.js/test/examples/math.html +2 -2
  76. data/vendor/reveal.js/test/examples/slide-backgrounds.html +29 -7
  77. data/vendor/reveal.js/test/test-markdown-element-attributes.html +6 -6
  78. data/vendor/reveal.js/test/test-markdown-slide-attributes.html +7 -7
  79. data/vendor/reveal.js/test/test-markdown.html +4 -4
  80. data/vendor/reveal.js/test/test-pdf.html +83 -0
  81. data/vendor/reveal.js/test/test-pdf.js +15 -0
  82. data/vendor/reveal.js/test/test.html +5 -4
  83. data/vendor/reveal.js/test/test.js +143 -9
  84. metadata +31 -13
  85. data/vendor/reveal.js/css/reveal.min.css +0 -7
  86. data/vendor/reveal.js/css/theme/default.css +0 -148
  87. data/vendor/reveal.js/js/reveal.min.js +0 -9
  88. data/vendor/reveal.js/lib/font/league_gothic-webfont.eot +0 -0
  89. data/vendor/reveal.js/lib/font/league_gothic-webfont.svg +0 -230
  90. data/vendor/reveal.js/lib/font/league_gothic-webfont.ttf +0 -0
  91. data/vendor/reveal.js/lib/font/league_gothic-webfont.woff +0 -0
  92. data/vendor/reveal.js/plugin/postmessage/example.html +0 -39
  93. data/vendor/reveal.js/plugin/postmessage/postmessage.js +0 -42
@@ -14,67 +14,196 @@
14
14
  * GLOBAL STYLES
15
15
  *********************************************/
16
16
  body {
17
- background: #222222;
18
- background: -moz-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
19
- background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #626262), color-stop(100%, #222222));
20
- background: -webkit-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
21
- background: -o-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
22
- background: -ms-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
23
- background: radial-gradient(center, circle cover, #626262 0%, #222222 100%);
17
+ background: #222;
18
+ background: -moz-radial-gradient(center, circle cover, #626262 0%, #222 100%);
19
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #626262), color-stop(100%, #222));
20
+ background: -webkit-radial-gradient(center, circle cover, #626262 0%, #222 100%);
21
+ background: -o-radial-gradient(center, circle cover, #626262 0%, #222 100%);
22
+ background: -ms-radial-gradient(center, circle cover, #626262 0%, #222 100%);
23
+ background: radial-gradient(center, circle cover, #626262 0%, #222 100%);
24
24
  background-color: #2b2b2b; }
25
25
 
26
26
  .reveal {
27
- font-family: Ubuntu, "sans-serif";
27
+ font-family: Ubuntu, 'sans-serif';
28
28
  font-size: 36px;
29
29
  font-weight: normal;
30
- letter-spacing: -0.02em;
31
- color: #eeeeee; }
30
+ color: #eee; }
32
31
 
33
32
  ::selection {
34
- color: white;
35
- background: #aa2233;
33
+ color: #fff;
34
+ background: #a23;
36
35
  text-shadow: none; }
37
36
 
37
+ .reveal .slides > section, .reveal .slides > section > section {
38
+ line-height: 1.3;
39
+ font-weight: inherit; }
40
+
38
41
  /*********************************************
39
42
  * HEADERS
40
43
  *********************************************/
41
- .reveal h1,
42
- .reveal h2,
43
- .reveal h3,
44
- .reveal h4,
45
- .reveal h5,
46
- .reveal h6 {
44
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
47
45
  margin: 0 0 20px 0;
48
- color: #eeeeee;
49
- font-family: Ubuntu, "sans-serif";
50
- line-height: 0.9em;
51
- letter-spacing: 0.02em;
46
+ color: #eee;
47
+ font-family: Ubuntu, 'sans-serif';
48
+ font-weight: normal;
49
+ line-height: 1.2;
50
+ letter-spacing: normal;
52
51
  text-transform: uppercase;
53
- text-shadow: 2px 2px 2px #222222; }
52
+ text-shadow: 2px 2px 2px #222;
53
+ word-wrap: break-word; }
54
54
 
55
55
  .reveal h1 {
56
- text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 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); }
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, .reveal video, .reveal iframe {
79
+ max-width: 95%;
80
+ max-height: 95%; }
81
+
82
+ .reveal strong, .reveal b {
83
+ font-weight: bold; }
84
+
85
+ .reveal em {
86
+ font-style: italic; }
87
+
88
+ .reveal ol, .reveal dl, .reveal ul {
89
+ display: inline-block;
90
+ text-align: left;
91
+ margin: 0 0 0 1em; }
92
+
93
+ .reveal ol {
94
+ list-style-type: decimal; }
95
+
96
+ .reveal ul {
97
+ list-style-type: disc; }
98
+
99
+ .reveal ul ul {
100
+ list-style-type: square; }
101
+
102
+ .reveal ul ul ul {
103
+ list-style-type: circle; }
104
+
105
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
106
+ display: block;
107
+ margin-left: 40px; }
108
+
109
+ .reveal dt {
110
+ font-weight: bold; }
111
+
112
+ .reveal dd {
113
+ margin-left: 40px; }
114
+
115
+ .reveal q, .reveal blockquote {
116
+ quotes: none; }
117
+
118
+ .reveal blockquote {
119
+ display: block;
120
+ position: relative;
121
+ width: 70%;
122
+ margin: 20px auto;
123
+ padding: 5px;
124
+ font-style: italic;
125
+ background: rgba(255, 255, 255, 0.05);
126
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
127
+
128
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
129
+ display: inline-block; }
130
+
131
+ .reveal q {
132
+ font-style: italic; }
133
+
134
+ .reveal pre {
135
+ display: block;
136
+ position: relative;
137
+ width: 90%;
138
+ margin: 20px auto;
139
+ text-align: left;
140
+ font-size: 0.55em;
141
+ font-family: monospace;
142
+ line-height: 1.2em;
143
+ word-wrap: break-word;
144
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
145
+
146
+ .reveal code {
147
+ font-family: monospace; }
148
+
149
+ .reveal pre code {
150
+ display: block;
151
+ padding: 5px;
152
+ overflow: auto;
153
+ max-height: 400px;
154
+ word-wrap: normal;
155
+ background: #3F3F3F;
156
+ color: #DCDCDC; }
157
+
158
+ .reveal table {
159
+ margin: auto;
160
+ border-collapse: collapse;
161
+ border-spacing: 0; }
162
+
163
+ .reveal table th {
164
+ font-weight: bold; }
165
+
166
+ .reveal table th, .reveal table td {
167
+ text-align: left;
168
+ padding: 0.2em 0.5em 0.2em 0.5em;
169
+ border-bottom: 1px solid; }
170
+
171
+ .reveal table tr:last-child td {
172
+ border-bottom: none; }
173
+
174
+ .reveal sup {
175
+ vertical-align: super; }
176
+
177
+ .reveal sub {
178
+ vertical-align: sub; }
179
+
180
+ .reveal small {
181
+ display: inline-block;
182
+ font-size: 0.6em;
183
+ line-height: 1.2em;
184
+ vertical-align: top; }
185
+
186
+ .reveal small * {
187
+ vertical-align: top; }
57
188
 
58
189
  /*********************************************
59
190
  * LINKS
60
191
  *********************************************/
61
- .reveal a:not(.image) {
62
- color: #aa2233;
192
+ .reveal a {
193
+ color: #a23;
63
194
  text-decoration: none;
64
- -webkit-transition: color .15s ease;
65
- -moz-transition: color .15s ease;
66
- -ms-transition: color .15s ease;
67
- -o-transition: color .15s ease;
68
- transition: color .15s ease; }
69
-
70
- .reveal a:not(.image):hover {
71
- color: #dd5566;
195
+ -webkit-transition: color 0.15s ease;
196
+ -moz-transition: color 0.15s ease;
197
+ transition: color 0.15s ease; }
198
+
199
+ .reveal a:hover {
200
+ color: #dd5567;
72
201
  text-shadow: none;
73
202
  border: none; }
74
203
 
75
204
  .reveal .roll span:after {
76
205
  color: #fff;
77
- background: #6a1520; }
206
+ background: #6a1521; }
78
207
 
79
208
  /*********************************************
80
209
  * IMAGES
@@ -82,49 +211,45 @@ body {
82
211
  .reveal section img {
83
212
  margin: 15px 0px;
84
213
  background: rgba(255, 255, 255, 0.12);
85
- border: 4px solid #eeeeee;
86
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
87
- -webkit-transition: all .2s linear;
88
- -moz-transition: all .2s linear;
89
- -ms-transition: all .2s linear;
90
- -o-transition: all .2s linear;
91
- transition: all .2s linear; }
214
+ border: 4px solid #eee;
215
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
216
+
217
+ .reveal a img {
218
+ -webkit-transition: all 0.15s linear;
219
+ -moz-transition: all 0.15s linear;
220
+ transition: all 0.15s linear; }
92
221
 
93
222
  .reveal a:hover img {
94
223
  background: rgba(255, 255, 255, 0.2);
95
- border-color: #aa2233;
224
+ border-color: #a23;
96
225
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
97
226
 
98
227
  /*********************************************
99
228
  * NAVIGATION CONTROLS
100
229
  *********************************************/
101
- .reveal .controls div.navigate-left,
102
- .reveal .controls div.navigate-left.enabled {
103
- border-right-color: #aa2233; }
230
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
231
+ border-right-color: #a23; }
104
232
 
105
- .reveal .controls div.navigate-right,
106
- .reveal .controls div.navigate-right.enabled {
107
- border-left-color: #aa2233; }
233
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
234
+ border-left-color: #a23; }
108
235
 
109
- .reveal .controls div.navigate-up,
110
- .reveal .controls div.navigate-up.enabled {
111
- border-bottom-color: #aa2233; }
236
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
237
+ border-bottom-color: #a23; }
112
238
 
113
- .reveal .controls div.navigate-down,
114
- .reveal .controls div.navigate-down.enabled {
115
- border-top-color: #aa2233; }
239
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
240
+ border-top-color: #a23; }
116
241
 
117
242
  .reveal .controls div.navigate-left.enabled:hover {
118
- border-right-color: #dd5566; }
243
+ border-right-color: #dd5567; }
119
244
 
120
245
  .reveal .controls div.navigate-right.enabled:hover {
121
- border-left-color: #dd5566; }
246
+ border-left-color: #dd5567; }
122
247
 
123
248
  .reveal .controls div.navigate-up.enabled:hover {
124
- border-bottom-color: #dd5566; }
249
+ border-bottom-color: #dd5567; }
125
250
 
126
251
  .reveal .controls div.navigate-down.enabled:hover {
127
- border-top-color: #dd5566; }
252
+ border-top-color: #dd5567; }
128
253
 
129
254
  /*********************************************
130
255
  * PROGRESS BAR
@@ -133,37 +258,28 @@ body {
133
258
  background: rgba(0, 0, 0, 0.2); }
134
259
 
135
260
  .reveal .progress span {
136
- background: #aa2233;
261
+ background: #a23;
137
262
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
138
263
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
139
- -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
140
- -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
141
264
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
142
265
 
143
266
  /*********************************************
144
267
  * SLIDE NUMBER
145
268
  *********************************************/
146
269
  .reveal .slide-number {
147
- color: #aa2233; }
270
+ color: #a23; }
148
271
 
149
272
  .reveal p {
150
273
  font-weight: 300;
151
- text-shadow: 1px 1px #222222; }
152
-
153
- .reveal h1,
154
- .reveal h2,
155
- .reveal h3,
156
- .reveal h4,
157
- .reveal h5,
158
- .reveal h6 {
274
+ text-shadow: 1px 1px #222; }
275
+
276
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
159
277
  font-weight: 700; }
160
278
 
161
- .reveal a:not(.image),
162
- .reveal a:not(.image):hover {
279
+ .reveal a, .reveal a:hover {
163
280
  text-shadow: 2px 2px 2px #000; }
164
281
 
165
- .reveal small a:not(.image),
166
- .reveal small a:not(.image):hover {
282
+ .reveal small a, .reveal small a:hover {
167
283
  text-shadow: 1px 1px 1px #000; }
168
284
 
169
285
  .reveal p code {
@@ -0,0 +1,267 @@
1
+ @import url(../../lib/font/league-gothic/league-gothic.css);
2
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
3
+ /**
4
+ * League theme for reveal.js.
5
+ *
6
+ * This was the default theme pre-3.0.0.
7
+ *
8
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
9
+ */
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, .reveal .slides > section > section {
35
+ line-height: 1.3;
36
+ font-weight: inherit; }
37
+
38
+ /*********************************************
39
+ * HEADERS
40
+ *********************************************/
41
+ .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
42
+ margin: 0 0 20px 0;
43
+ color: #eee;
44
+ font-family: 'League Gothic', Impact, sans-serif;
45
+ font-weight: normal;
46
+ line-height: 1.2;
47
+ letter-spacing: normal;
48
+ text-transform: uppercase;
49
+ text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
50
+ word-wrap: break-word; }
51
+
52
+ .reveal h1 {
53
+ font-size: 3.77em; }
54
+
55
+ .reveal h2 {
56
+ font-size: 2.11em; }
57
+
58
+ .reveal h3 {
59
+ font-size: 1.55em; }
60
+
61
+ .reveal h4 {
62
+ font-size: 1em; }
63
+
64
+ .reveal h1 {
65
+ 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); }
66
+
67
+ /*********************************************
68
+ * OTHER
69
+ *********************************************/
70
+ .reveal p {
71
+ margin: 20px 0;
72
+ line-height: 1.3; }
73
+
74
+ /* Ensure certain elements are never larger than the slide itself */
75
+ .reveal img, .reveal video, .reveal iframe {
76
+ max-width: 95%;
77
+ max-height: 95%; }
78
+
79
+ .reveal strong, .reveal b {
80
+ font-weight: bold; }
81
+
82
+ .reveal em {
83
+ font-style: italic; }
84
+
85
+ .reveal ol, .reveal dl, .reveal ul {
86
+ display: inline-block;
87
+ text-align: left;
88
+ margin: 0 0 0 1em; }
89
+
90
+ .reveal ol {
91
+ list-style-type: decimal; }
92
+
93
+ .reveal ul {
94
+ list-style-type: disc; }
95
+
96
+ .reveal ul ul {
97
+ list-style-type: square; }
98
+
99
+ .reveal ul ul ul {
100
+ list-style-type: circle; }
101
+
102
+ .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
103
+ display: block;
104
+ margin-left: 40px; }
105
+
106
+ .reveal dt {
107
+ font-weight: bold; }
108
+
109
+ .reveal dd {
110
+ margin-left: 40px; }
111
+
112
+ .reveal q, .reveal blockquote {
113
+ quotes: none; }
114
+
115
+ .reveal blockquote {
116
+ display: block;
117
+ position: relative;
118
+ width: 70%;
119
+ margin: 20px auto;
120
+ padding: 5px;
121
+ font-style: italic;
122
+ background: rgba(255, 255, 255, 0.05);
123
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
124
+
125
+ .reveal blockquote p:first-child, .reveal blockquote p:last-child {
126
+ display: inline-block; }
127
+
128
+ .reveal q {
129
+ font-style: italic; }
130
+
131
+ .reveal pre {
132
+ display: block;
133
+ position: relative;
134
+ width: 90%;
135
+ margin: 20px auto;
136
+ text-align: left;
137
+ font-size: 0.55em;
138
+ font-family: monospace;
139
+ line-height: 1.2em;
140
+ word-wrap: break-word;
141
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
142
+
143
+ .reveal code {
144
+ font-family: monospace; }
145
+
146
+ .reveal pre code {
147
+ display: block;
148
+ padding: 5px;
149
+ overflow: auto;
150
+ max-height: 400px;
151
+ word-wrap: normal;
152
+ background: #3F3F3F;
153
+ color: #DCDCDC; }
154
+
155
+ .reveal table {
156
+ margin: auto;
157
+ border-collapse: collapse;
158
+ border-spacing: 0; }
159
+
160
+ .reveal table th {
161
+ font-weight: bold; }
162
+
163
+ .reveal table th, .reveal table td {
164
+ text-align: left;
165
+ padding: 0.2em 0.5em 0.2em 0.5em;
166
+ border-bottom: 1px solid; }
167
+
168
+ .reveal table tr:last-child td {
169
+ border-bottom: none; }
170
+
171
+ .reveal sup {
172
+ vertical-align: super; }
173
+
174
+ .reveal sub {
175
+ vertical-align: sub; }
176
+
177
+ .reveal small {
178
+ display: inline-block;
179
+ font-size: 0.6em;
180
+ line-height: 1.2em;
181
+ vertical-align: top; }
182
+
183
+ .reveal small * {
184
+ vertical-align: top; }
185
+
186
+ /*********************************************
187
+ * LINKS
188
+ *********************************************/
189
+ .reveal a {
190
+ color: #13DAEC;
191
+ text-decoration: none;
192
+ -webkit-transition: color 0.15s ease;
193
+ -moz-transition: color 0.15s ease;
194
+ transition: color 0.15s ease; }
195
+
196
+ .reveal a:hover {
197
+ color: #71ebf4;
198
+ text-shadow: none;
199
+ border: none; }
200
+
201
+ .reveal .roll span:after {
202
+ color: #fff;
203
+ background: #0d9ba5; }
204
+
205
+ /*********************************************
206
+ * IMAGES
207
+ *********************************************/
208
+ .reveal section img {
209
+ margin: 15px 0px;
210
+ background: rgba(255, 255, 255, 0.12);
211
+ border: 4px solid #eee;
212
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
213
+
214
+ .reveal a img {
215
+ -webkit-transition: all 0.15s linear;
216
+ -moz-transition: all 0.15s linear;
217
+ transition: all 0.15s linear; }
218
+
219
+ .reveal a:hover img {
220
+ background: rgba(255, 255, 255, 0.2);
221
+ border-color: #13DAEC;
222
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
223
+
224
+ /*********************************************
225
+ * NAVIGATION CONTROLS
226
+ *********************************************/
227
+ .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
228
+ border-right-color: #13DAEC; }
229
+
230
+ .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
231
+ border-left-color: #13DAEC; }
232
+
233
+ .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
234
+ border-bottom-color: #13DAEC; }
235
+
236
+ .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
237
+ border-top-color: #13DAEC; }
238
+
239
+ .reveal .controls div.navigate-left.enabled:hover {
240
+ border-right-color: #71ebf4; }
241
+
242
+ .reveal .controls div.navigate-right.enabled:hover {
243
+ border-left-color: #71ebf4; }
244
+
245
+ .reveal .controls div.navigate-up.enabled:hover {
246
+ border-bottom-color: #71ebf4; }
247
+
248
+ .reveal .controls div.navigate-down.enabled:hover {
249
+ border-top-color: #71ebf4; }
250
+
251
+ /*********************************************
252
+ * PROGRESS BAR
253
+ *********************************************/
254
+ .reveal .progress {
255
+ background: rgba(0, 0, 0, 0.2); }
256
+
257
+ .reveal .progress span {
258
+ background: #13DAEC;
259
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
260
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
261
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
262
+
263
+ /*********************************************
264
+ * SLIDE NUMBER
265
+ *********************************************/
266
+ .reveal .slide-number {
267
+ color: #13DAEC; }