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