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