jekyll-theme-newtype 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_includes/footer.html +4 -0
  5. data/_includes/head.html +22 -0
  6. data/_includes/header.html +31 -0
  7. data/_includes/navbar.html +9 -0
  8. data/_includes/post_preview.html +10 -0
  9. data/_includes/sidebar.html +1 -0
  10. data/_layouts/category_index.html +11 -0
  11. data/_layouts/default.html +29 -0
  12. data/_layouts/home.html +7 -0
  13. data/_layouts/page.html +5 -0
  14. data/_layouts/post.html +5 -0
  15. data/_layouts/slides.html +50 -0
  16. data/_sass/newtype.scss +32 -0
  17. data/_sass/skeleton/base/_base-styles.scss +37 -0
  18. data/_sass/skeleton/base/_functions.scss +17 -0
  19. data/_sass/skeleton/base/_normalize.scss +428 -0
  20. data/_sass/skeleton/base/_typography.scss +29 -0
  21. data/_sass/skeleton/base/_utils.scss +20 -0
  22. data/_sass/skeleton/base/_variables.scss +32 -0
  23. data/_sass/skeleton/modules/_buttons.scss +147 -0
  24. data/_sass/skeleton/modules/_code.scss +18 -0
  25. data/_sass/skeleton/modules/_forms.scss +88 -0
  26. data/_sass/skeleton/modules/_grid.scss +116 -0
  27. data/_sass/skeleton/modules/_lists.scss +32 -0
  28. data/_sass/skeleton/modules/_media-queries.scss +22 -0
  29. data/_sass/skeleton/modules/_spacing.scss +26 -0
  30. data/_sass/skeleton/modules/_tables.scss +19 -0
  31. data/_sass/skeleton/normalize.scss +427 -0
  32. data/_sass/skeleton/skeleton.scss +418 -0
  33. data/_sass/syntax.scss +60 -0
  34. data/assets/bullet.svg +13 -0
  35. data/assets/revealjs/.gitignore +13 -0
  36. data/assets/revealjs/.travis.yml +7 -0
  37. data/assets/revealjs/CONTRIBUTING.md +23 -0
  38. data/assets/revealjs/Gruntfile.js +192 -0
  39. data/assets/revealjs/LICENSE +19 -0
  40. data/assets/revealjs/README.md +1238 -0
  41. data/assets/revealjs/bower.json +27 -0
  42. data/assets/revealjs/css/print/paper.css +203 -0
  43. data/assets/revealjs/css/print/pdf.css +178 -0
  44. data/assets/revealjs/css/reveal.css +1555 -0
  45. data/assets/revealjs/css/reveal.scss +1717 -0
  46. data/assets/revealjs/css/theme/README.md +21 -0
  47. data/assets/revealjs/css/theme/beige.css +268 -0
  48. data/assets/revealjs/css/theme/black.css +264 -0
  49. data/assets/revealjs/css/theme/blood.css +287 -0
  50. data/assets/revealjs/css/theme/league.css +270 -0
  51. data/assets/revealjs/css/theme/moon.css +268 -0
  52. data/assets/revealjs/css/theme/night.css +262 -0
  53. data/assets/revealjs/css/theme/serif.css +264 -0
  54. data/assets/revealjs/css/theme/simple.css +267 -0
  55. data/assets/revealjs/css/theme/sky.css +271 -0
  56. data/assets/revealjs/css/theme/solarized.css +268 -0
  57. data/assets/revealjs/css/theme/source/beige.scss +39 -0
  58. data/assets/revealjs/css/theme/source/black.scss +49 -0
  59. data/assets/revealjs/css/theme/source/blood.scss +78 -0
  60. data/assets/revealjs/css/theme/source/league.scss +34 -0
  61. data/assets/revealjs/css/theme/source/moon.scss +57 -0
  62. data/assets/revealjs/css/theme/source/night.scss +34 -0
  63. data/assets/revealjs/css/theme/source/serif.scss +35 -0
  64. data/assets/revealjs/css/theme/source/simple.scss +43 -0
  65. data/assets/revealjs/css/theme/source/sky.scss +46 -0
  66. data/assets/revealjs/css/theme/source/solarized.scss +63 -0
  67. data/assets/revealjs/css/theme/source/white.scss +49 -0
  68. data/assets/revealjs/css/theme/template/mixins.scss +29 -0
  69. data/assets/revealjs/css/theme/template/settings.scss +43 -0
  70. data/assets/revealjs/css/theme/template/theme.scss +316 -0
  71. data/assets/revealjs/css/theme/white.css +264 -0
  72. data/assets/revealjs/demo.html +410 -0
  73. data/assets/revealjs/index.html +49 -0
  74. data/assets/revealjs/js/reveal.js +5239 -0
  75. data/assets/revealjs/lib/css/zenburn.css +80 -0
  76. data/assets/revealjs/lib/font/league-gothic/LICENSE +2 -0
  77. data/assets/revealjs/lib/font/league-gothic/league-gothic.css +10 -0
  78. data/assets/revealjs/lib/font/league-gothic/league-gothic.eot +0 -0
  79. data/assets/revealjs/lib/font/league-gothic/league-gothic.ttf +0 -0
  80. data/assets/revealjs/lib/font/league-gothic/league-gothic.woff +0 -0
  81. data/assets/revealjs/lib/font/source-sans-pro/LICENSE +45 -0
  82. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  83. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  84. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  85. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  86. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  87. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  88. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  89. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  90. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  91. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  92. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  93. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  94. data/assets/revealjs/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  95. data/assets/revealjs/lib/js/classList.js +2 -0
  96. data/assets/revealjs/lib/js/head.min.js +9 -0
  97. data/assets/revealjs/lib/js/html5shiv.js +7 -0
  98. data/assets/revealjs/package.json +43 -0
  99. data/assets/revealjs/plugin/highlight/highlight.js +77 -0
  100. data/assets/revealjs/plugin/markdown/markdown.js +412 -0
  101. data/assets/revealjs/plugin/markdown/marked.js +6 -0
  102. data/assets/revealjs/plugin/math/math.js +67 -0
  103. data/assets/revealjs/plugin/multiplex/client.js +13 -0
  104. data/assets/revealjs/plugin/multiplex/index.js +64 -0
  105. data/assets/revealjs/plugin/multiplex/master.js +34 -0
  106. data/assets/revealjs/plugin/multiplex/package.json +19 -0
  107. data/assets/revealjs/plugin/notes/notes.html +759 -0
  108. data/assets/revealjs/plugin/notes/notes.js +155 -0
  109. data/assets/revealjs/plugin/notes-server/client.js +65 -0
  110. data/assets/revealjs/plugin/notes-server/index.js +69 -0
  111. data/assets/revealjs/plugin/notes-server/notes.html +585 -0
  112. data/assets/revealjs/plugin/print-pdf/print-pdf.js +69 -0
  113. data/assets/revealjs/plugin/search/search.js +206 -0
  114. data/assets/revealjs/plugin/zoom-js/zoom.js +272 -0
  115. data/assets/revealjs/test/examples/assets/image1.png +0 -0
  116. data/assets/revealjs/test/examples/assets/image2.png +0 -0
  117. data/assets/revealjs/test/examples/barebones.html +41 -0
  118. data/assets/revealjs/test/examples/embedded-media.html +49 -0
  119. data/assets/revealjs/test/examples/math.html +185 -0
  120. data/assets/revealjs/test/examples/slide-backgrounds.html +144 -0
  121. data/assets/revealjs/test/examples/slide-transitions.html +101 -0
  122. data/assets/revealjs/test/qunit-1.12.0.css +244 -0
  123. data/assets/revealjs/test/qunit-1.12.0.js +2212 -0
  124. data/assets/revealjs/test/test-markdown-element-attributes.html +134 -0
  125. data/assets/revealjs/test/test-markdown-element-attributes.js +46 -0
  126. data/assets/revealjs/test/test-markdown-external.html +36 -0
  127. data/assets/revealjs/test/test-markdown-external.js +24 -0
  128. data/assets/revealjs/test/test-markdown-options.html +41 -0
  129. data/assets/revealjs/test/test-markdown-options.js +26 -0
  130. data/assets/revealjs/test/test-markdown-slide-attributes.html +128 -0
  131. data/assets/revealjs/test/test-markdown-slide-attributes.js +47 -0
  132. data/assets/revealjs/test/test-markdown.html +52 -0
  133. data/assets/revealjs/test/test-markdown.js +15 -0
  134. data/assets/revealjs/test/test-pdf.html +83 -0
  135. data/assets/revealjs/test/test-pdf.js +15 -0
  136. data/assets/revealjs/test/test.html +86 -0
  137. data/assets/revealjs/test/test.js +597 -0
  138. data/assets/social-github.svg +14 -0
  139. data/assets/social-twitter.png +0 -0
  140. data/assets/social-twitter.svg +12 -0
  141. data/assets/style.scss +4 -0
  142. metadata +226 -0
@@ -0,0 +1,316 @@
1
+ // Base theme template for reveal.js
2
+
3
+ /*********************************************
4
+ * GLOBAL STYLES
5
+ *********************************************/
6
+
7
+ body {
8
+ @include bodyBackground();
9
+ background-color: $backgroundColor;
10
+ }
11
+
12
+ .reveal {
13
+ font-family: $mainFont;
14
+ font-size: $mainFontSize;
15
+ font-weight: normal;
16
+ color: $mainColor;
17
+ }
18
+
19
+ ::selection {
20
+ color: $selectionColor;
21
+ background: $selectionBackgroundColor;
22
+ text-shadow: none;
23
+ }
24
+
25
+ ::-moz-selection {
26
+ color: $selectionColor;
27
+ background: $selectionBackgroundColor;
28
+ text-shadow: none;
29
+ }
30
+
31
+ .reveal .slides>section,
32
+ .reveal .slides>section>section {
33
+ line-height: 1.3;
34
+ font-weight: inherit;
35
+ }
36
+
37
+ /*********************************************
38
+ * HEADERS
39
+ *********************************************/
40
+
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
47
+ margin: $headingMargin;
48
+ color: $headingColor;
49
+
50
+ font-family: $headingFont;
51
+ font-weight: $headingFontWeight;
52
+ line-height: $headingLineHeight;
53
+ letter-spacing: $headingLetterSpacing;
54
+
55
+ text-transform: $headingTextTransform;
56
+ text-shadow: $headingTextShadow;
57
+
58
+ word-wrap: break-word;
59
+ }
60
+
61
+ .reveal h1 {font-size: $heading1Size; }
62
+ .reveal h2 {font-size: $heading2Size; }
63
+ .reveal h3 {font-size: $heading3Size; }
64
+ .reveal h4 {font-size: $heading4Size; }
65
+
66
+ .reveal h1 {
67
+ text-shadow: $heading1TextShadow;
68
+ }
69
+
70
+
71
+ /*********************************************
72
+ * OTHER
73
+ *********************************************/
74
+
75
+ .reveal p {
76
+ margin: $blockMargin 0;
77
+ line-height: 1.3;
78
+ }
79
+
80
+ /* Ensure certain elements are never larger than the slide itself */
81
+ .reveal img,
82
+ .reveal video,
83
+ .reveal iframe {
84
+ max-width: 95%;
85
+ max-height: 95%;
86
+ }
87
+ .reveal strong,
88
+ .reveal b {
89
+ font-weight: bold;
90
+ }
91
+
92
+ .reveal em {
93
+ font-style: italic;
94
+ }
95
+
96
+ .reveal ol,
97
+ .reveal dl,
98
+ .reveal ul {
99
+ display: inline-block;
100
+
101
+ text-align: left;
102
+ margin: 0 0 0 1em;
103
+ }
104
+
105
+ .reveal ol {
106
+ list-style-type: decimal;
107
+ }
108
+
109
+ .reveal ul {
110
+ list-style-type: disc;
111
+ }
112
+
113
+ .reveal ul ul {
114
+ list-style-type: square;
115
+ }
116
+
117
+ .reveal ul ul ul {
118
+ list-style-type: circle;
119
+ }
120
+
121
+ .reveal ul ul,
122
+ .reveal ul ol,
123
+ .reveal ol ol,
124
+ .reveal ol ul {
125
+ display: block;
126
+ margin-left: 40px;
127
+ }
128
+
129
+ .reveal dt {
130
+ font-weight: bold;
131
+ }
132
+
133
+ .reveal dd {
134
+ margin-left: 40px;
135
+ }
136
+
137
+ .reveal blockquote {
138
+ display: block;
139
+ position: relative;
140
+ width: 70%;
141
+ margin: $blockMargin auto;
142
+ padding: 5px;
143
+
144
+ font-style: italic;
145
+ background: rgba(255, 255, 255, 0.05);
146
+ box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
147
+ }
148
+ .reveal blockquote p:first-child,
149
+ .reveal blockquote p:last-child {
150
+ display: inline-block;
151
+ }
152
+
153
+ .reveal q {
154
+ font-style: italic;
155
+ }
156
+
157
+ .reveal pre {
158
+ display: block;
159
+ position: relative;
160
+ width: 90%;
161
+ margin: $blockMargin auto;
162
+
163
+ text-align: left;
164
+ font-size: 0.55em;
165
+ font-family: monospace;
166
+ line-height: 1.2em;
167
+
168
+ word-wrap: break-word;
169
+
170
+ box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
171
+ }
172
+
173
+ .reveal code {
174
+ font-family: monospace;
175
+ text-transform: none;
176
+ }
177
+
178
+ .reveal pre code {
179
+ display: block;
180
+ padding: 5px;
181
+ overflow: auto;
182
+ max-height: 400px;
183
+ word-wrap: normal;
184
+ }
185
+
186
+ .reveal table {
187
+ margin: auto;
188
+ border-collapse: collapse;
189
+ border-spacing: 0;
190
+ }
191
+
192
+ .reveal table th {
193
+ font-weight: bold;
194
+ }
195
+
196
+ .reveal table th,
197
+ .reveal table td {
198
+ text-align: left;
199
+ padding: 0.2em 0.5em 0.2em 0.5em;
200
+ border-bottom: 1px solid;
201
+ }
202
+
203
+ .reveal table th[align="center"],
204
+ .reveal table td[align="center"] {
205
+ text-align: center;
206
+ }
207
+
208
+ .reveal table th[align="right"],
209
+ .reveal table td[align="right"] {
210
+ text-align: right;
211
+ }
212
+
213
+ .reveal table tbody tr:last-child th,
214
+ .reveal table tbody tr:last-child td {
215
+ border-bottom: none;
216
+ }
217
+
218
+ .reveal sup {
219
+ vertical-align: super;
220
+ }
221
+ .reveal sub {
222
+ vertical-align: sub;
223
+ }
224
+
225
+ .reveal small {
226
+ display: inline-block;
227
+ font-size: 0.6em;
228
+ line-height: 1.2em;
229
+ vertical-align: top;
230
+ }
231
+
232
+ .reveal small * {
233
+ vertical-align: top;
234
+ }
235
+
236
+
237
+ /*********************************************
238
+ * LINKS
239
+ *********************************************/
240
+
241
+ .reveal a {
242
+ color: $linkColor;
243
+ text-decoration: none;
244
+
245
+ -webkit-transition: color .15s ease;
246
+ -moz-transition: color .15s ease;
247
+ transition: color .15s ease;
248
+ }
249
+ .reveal a:hover {
250
+ color: $linkColorHover;
251
+
252
+ text-shadow: none;
253
+ border: none;
254
+ }
255
+
256
+ .reveal .roll span:after {
257
+ color: #fff;
258
+ background: darken( $linkColor, 15% );
259
+ }
260
+
261
+
262
+ /*********************************************
263
+ * IMAGES
264
+ *********************************************/
265
+
266
+ .reveal section img {
267
+ margin: 15px 0px;
268
+ background: rgba(255,255,255,0.12);
269
+ border: 4px solid $mainColor;
270
+
271
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
272
+ }
273
+
274
+ .reveal section img.plain {
275
+ border: 0;
276
+ box-shadow: none;
277
+ }
278
+
279
+ .reveal a img {
280
+ -webkit-transition: all .15s linear;
281
+ -moz-transition: all .15s linear;
282
+ transition: all .15s linear;
283
+ }
284
+
285
+ .reveal a:hover img {
286
+ background: rgba(255,255,255,0.2);
287
+ border-color: $linkColor;
288
+
289
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
290
+ }
291
+
292
+
293
+ /*********************************************
294
+ * NAVIGATION CONTROLS
295
+ *********************************************/
296
+
297
+ .reveal .controls {
298
+ color: $linkColor;
299
+ }
300
+
301
+
302
+ /*********************************************
303
+ * PROGRESS BAR
304
+ *********************************************/
305
+
306
+ .reveal .progress {
307
+ background: rgba(0,0,0,0.2);
308
+ color: $linkColor;
309
+ }
310
+ .reveal .progress span {
311
+ -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
312
+ -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
313
+ transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
314
+ }
315
+
316
+
@@ -0,0 +1,264 @@
1
+ /**
2
+ * White theme for reveal.js. This is the opposite of the 'black' theme.
3
+ *
4
+ * By Hakim El Hattab, http://hakim.se
5
+ */
6
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7
+ section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
8
+ color: #fff; }
9
+
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #fff;
15
+ background-color: #fff; }
16
+
17
+ .reveal {
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
+ font-weight: normal;
21
+ color: #222; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #98bdef;
26
+ text-shadow: none; }
27
+
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #98bdef;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides > section,
34
+ .reveal .slides > section > section {
35
+ line-height: 1.3;
36
+ font-weight: inherit; }
37
+
38
+ /*********************************************
39
+ * HEADERS
40
+ *********************************************/
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
47
+ margin: 0 0 20px 0;
48
+ color: #222;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
50
+ font-weight: 600;
51
+ line-height: 1.2;
52
+ letter-spacing: normal;
53
+ text-transform: uppercase;
54
+ text-shadow: none;
55
+ word-wrap: break-word; }
56
+
57
+ .reveal h1 {
58
+ font-size: 2.5em; }
59
+
60
+ .reveal h2 {
61
+ font-size: 1.6em; }
62
+
63
+ .reveal h3 {
64
+ font-size: 1.3em; }
65
+
66
+ .reveal h4 {
67
+ font-size: 1em; }
68
+
69
+ .reveal h1 {
70
+ text-shadow: none; }
71
+
72
+ /*********************************************
73
+ * OTHER
74
+ *********************************************/
75
+ .reveal p {
76
+ margin: 20px 0;
77
+ line-height: 1.3; }
78
+
79
+ /* Ensure certain elements are never larger than the slide itself */
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
83
+ max-width: 95%;
84
+ max-height: 95%; }
85
+
86
+ .reveal strong,
87
+ .reveal b {
88
+ font-weight: bold; }
89
+
90
+ .reveal em {
91
+ font-style: italic; }
92
+
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
96
+ display: inline-block;
97
+ text-align: left;
98
+ margin: 0 0 0 1em; }
99
+
100
+ .reveal ol {
101
+ list-style-type: decimal; }
102
+
103
+ .reveal ul {
104
+ list-style-type: disc; }
105
+
106
+ .reveal ul ul {
107
+ list-style-type: square; }
108
+
109
+ .reveal ul ul ul {
110
+ list-style-type: circle; }
111
+
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
116
+ display: block;
117
+ margin-left: 40px; }
118
+
119
+ .reveal dt {
120
+ font-weight: bold; }
121
+
122
+ .reveal dd {
123
+ margin-left: 40px; }
124
+
125
+ .reveal blockquote {
126
+ display: block;
127
+ position: relative;
128
+ width: 70%;
129
+ margin: 20px auto;
130
+ padding: 5px;
131
+ font-style: italic;
132
+ background: rgba(255, 255, 255, 0.05);
133
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
134
+
135
+ .reveal blockquote p:first-child,
136
+ .reveal blockquote p:last-child {
137
+ display: inline-block; }
138
+
139
+ .reveal q {
140
+ font-style: italic; }
141
+
142
+ .reveal pre {
143
+ display: block;
144
+ position: relative;
145
+ width: 90%;
146
+ margin: 20px auto;
147
+ text-align: left;
148
+ font-size: 0.55em;
149
+ font-family: monospace;
150
+ line-height: 1.2em;
151
+ word-wrap: break-word;
152
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
153
+
154
+ .reveal code {
155
+ font-family: monospace;
156
+ text-transform: none; }
157
+
158
+ .reveal pre code {
159
+ display: block;
160
+ padding: 5px;
161
+ overflow: auto;
162
+ max-height: 400px;
163
+ word-wrap: normal; }
164
+
165
+ .reveal table {
166
+ margin: auto;
167
+ border-collapse: collapse;
168
+ border-spacing: 0; }
169
+
170
+ .reveal table th {
171
+ font-weight: bold; }
172
+
173
+ .reveal table th,
174
+ .reveal table td {
175
+ text-align: left;
176
+ padding: 0.2em 0.5em 0.2em 0.5em;
177
+ border-bottom: 1px solid; }
178
+
179
+ .reveal table th[align="center"],
180
+ .reveal table td[align="center"] {
181
+ text-align: center; }
182
+
183
+ .reveal table th[align="right"],
184
+ .reveal table td[align="right"] {
185
+ text-align: right; }
186
+
187
+ .reveal table tbody tr:last-child th,
188
+ .reveal table tbody tr:last-child td {
189
+ border-bottom: none; }
190
+
191
+ .reveal sup {
192
+ vertical-align: super; }
193
+
194
+ .reveal sub {
195
+ vertical-align: sub; }
196
+
197
+ .reveal small {
198
+ display: inline-block;
199
+ font-size: 0.6em;
200
+ line-height: 1.2em;
201
+ vertical-align: top; }
202
+
203
+ .reveal small * {
204
+ vertical-align: top; }
205
+
206
+ /*********************************************
207
+ * LINKS
208
+ *********************************************/
209
+ .reveal a {
210
+ color: #2a76dd;
211
+ text-decoration: none;
212
+ -webkit-transition: color .15s ease;
213
+ -moz-transition: color .15s ease;
214
+ transition: color .15s ease; }
215
+
216
+ .reveal a:hover {
217
+ color: #6ca0e8;
218
+ text-shadow: none;
219
+ border: none; }
220
+
221
+ .reveal .roll span:after {
222
+ color: #fff;
223
+ background: #1a53a1; }
224
+
225
+ /*********************************************
226
+ * IMAGES
227
+ *********************************************/
228
+ .reveal section img {
229
+ margin: 15px 0px;
230
+ background: rgba(255, 255, 255, 0.12);
231
+ border: 4px solid #222;
232
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
233
+
234
+ .reveal section img.plain {
235
+ border: 0;
236
+ box-shadow: none; }
237
+
238
+ .reveal a img {
239
+ -webkit-transition: all .15s linear;
240
+ -moz-transition: all .15s linear;
241
+ transition: all .15s linear; }
242
+
243
+ .reveal a:hover img {
244
+ background: rgba(255, 255, 255, 0.2);
245
+ border-color: #2a76dd;
246
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
247
+
248
+ /*********************************************
249
+ * NAVIGATION CONTROLS
250
+ *********************************************/
251
+ .reveal .controls {
252
+ color: #2a76dd; }
253
+
254
+ /*********************************************
255
+ * PROGRESS BAR
256
+ *********************************************/
257
+ .reveal .progress {
258
+ background: rgba(0, 0, 0, 0.2);
259
+ color: #2a76dd; }
260
+
261
+ .reveal .progress span {
262
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
263
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
264
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }