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