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,271 @@
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: 40px;
27
+ font-weight: normal;
28
+ color: #333; }
29
+
30
+ ::selection {
31
+ color: #fff;
32
+ background: #134674;
33
+ text-shadow: none; }
34
+
35
+ ::-moz-selection {
36
+ color: #fff;
37
+ background: #134674;
38
+ text-shadow: none; }
39
+
40
+ .reveal .slides > section,
41
+ .reveal .slides > section > section {
42
+ line-height: 1.3;
43
+ font-weight: inherit; }
44
+
45
+ /*********************************************
46
+ * HEADERS
47
+ *********************************************/
48
+ .reveal h1,
49
+ .reveal h2,
50
+ .reveal h3,
51
+ .reveal h4,
52
+ .reveal h5,
53
+ .reveal h6 {
54
+ margin: 0 0 20px 0;
55
+ color: #333;
56
+ font-family: "Quicksand", sans-serif;
57
+ font-weight: normal;
58
+ line-height: 1.2;
59
+ letter-spacing: -0.08em;
60
+ text-transform: uppercase;
61
+ text-shadow: none;
62
+ word-wrap: break-word; }
63
+
64
+ .reveal h1 {
65
+ font-size: 3.77em; }
66
+
67
+ .reveal h2 {
68
+ font-size: 2.11em; }
69
+
70
+ .reveal h3 {
71
+ font-size: 1.55em; }
72
+
73
+ .reveal h4 {
74
+ font-size: 1em; }
75
+
76
+ .reveal h1 {
77
+ text-shadow: none; }
78
+
79
+ /*********************************************
80
+ * OTHER
81
+ *********************************************/
82
+ .reveal p {
83
+ margin: 20px 0;
84
+ line-height: 1.3; }
85
+
86
+ /* Ensure certain elements are never larger than the slide itself */
87
+ .reveal img,
88
+ .reveal video,
89
+ .reveal iframe {
90
+ max-width: 95%;
91
+ max-height: 95%; }
92
+
93
+ .reveal strong,
94
+ .reveal b {
95
+ font-weight: bold; }
96
+
97
+ .reveal em {
98
+ font-style: italic; }
99
+
100
+ .reveal ol,
101
+ .reveal dl,
102
+ .reveal ul {
103
+ display: inline-block;
104
+ text-align: left;
105
+ margin: 0 0 0 1em; }
106
+
107
+ .reveal ol {
108
+ list-style-type: decimal; }
109
+
110
+ .reveal ul {
111
+ list-style-type: disc; }
112
+
113
+ .reveal ul ul {
114
+ list-style-type: square; }
115
+
116
+ .reveal ul ul ul {
117
+ list-style-type: circle; }
118
+
119
+ .reveal ul ul,
120
+ .reveal ul ol,
121
+ .reveal ol ol,
122
+ .reveal ol ul {
123
+ display: block;
124
+ margin-left: 40px; }
125
+
126
+ .reveal dt {
127
+ font-weight: bold; }
128
+
129
+ .reveal dd {
130
+ margin-left: 40px; }
131
+
132
+ .reveal blockquote {
133
+ display: block;
134
+ position: relative;
135
+ width: 70%;
136
+ margin: 20px auto;
137
+ padding: 5px;
138
+ font-style: italic;
139
+ background: rgba(255, 255, 255, 0.05);
140
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
141
+
142
+ .reveal blockquote p:first-child,
143
+ .reveal blockquote p:last-child {
144
+ display: inline-block; }
145
+
146
+ .reveal q {
147
+ font-style: italic; }
148
+
149
+ .reveal pre {
150
+ display: block;
151
+ position: relative;
152
+ width: 90%;
153
+ margin: 20px auto;
154
+ text-align: left;
155
+ font-size: 0.55em;
156
+ font-family: monospace;
157
+ line-height: 1.2em;
158
+ word-wrap: break-word;
159
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
160
+
161
+ .reveal code {
162
+ font-family: monospace;
163
+ text-transform: none; }
164
+
165
+ .reveal pre code {
166
+ display: block;
167
+ padding: 5px;
168
+ overflow: auto;
169
+ max-height: 400px;
170
+ word-wrap: normal; }
171
+
172
+ .reveal table {
173
+ margin: auto;
174
+ border-collapse: collapse;
175
+ border-spacing: 0; }
176
+
177
+ .reveal table th {
178
+ font-weight: bold; }
179
+
180
+ .reveal table th,
181
+ .reveal table td {
182
+ text-align: left;
183
+ padding: 0.2em 0.5em 0.2em 0.5em;
184
+ border-bottom: 1px solid; }
185
+
186
+ .reveal table th[align="center"],
187
+ .reveal table td[align="center"] {
188
+ text-align: center; }
189
+
190
+ .reveal table th[align="right"],
191
+ .reveal table td[align="right"] {
192
+ text-align: right; }
193
+
194
+ .reveal table tbody tr:last-child th,
195
+ .reveal table tbody tr:last-child td {
196
+ border-bottom: none; }
197
+
198
+ .reveal sup {
199
+ vertical-align: super; }
200
+
201
+ .reveal sub {
202
+ vertical-align: sub; }
203
+
204
+ .reveal small {
205
+ display: inline-block;
206
+ font-size: 0.6em;
207
+ line-height: 1.2em;
208
+ vertical-align: top; }
209
+
210
+ .reveal small * {
211
+ vertical-align: top; }
212
+
213
+ /*********************************************
214
+ * LINKS
215
+ *********************************************/
216
+ .reveal a {
217
+ color: #3b759e;
218
+ text-decoration: none;
219
+ -webkit-transition: color .15s ease;
220
+ -moz-transition: color .15s ease;
221
+ transition: color .15s ease; }
222
+
223
+ .reveal a:hover {
224
+ color: #74a7cb;
225
+ text-shadow: none;
226
+ border: none; }
227
+
228
+ .reveal .roll span:after {
229
+ color: #fff;
230
+ background: #264c66; }
231
+
232
+ /*********************************************
233
+ * IMAGES
234
+ *********************************************/
235
+ .reveal section img {
236
+ margin: 15px 0px;
237
+ background: rgba(255, 255, 255, 0.12);
238
+ border: 4px solid #333;
239
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
240
+
241
+ .reveal section img.plain {
242
+ border: 0;
243
+ box-shadow: none; }
244
+
245
+ .reveal a img {
246
+ -webkit-transition: all .15s linear;
247
+ -moz-transition: all .15s linear;
248
+ transition: all .15s linear; }
249
+
250
+ .reveal a:hover img {
251
+ background: rgba(255, 255, 255, 0.2);
252
+ border-color: #3b759e;
253
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
254
+
255
+ /*********************************************
256
+ * NAVIGATION CONTROLS
257
+ *********************************************/
258
+ .reveal .controls {
259
+ color: #3b759e; }
260
+
261
+ /*********************************************
262
+ * PROGRESS BAR
263
+ *********************************************/
264
+ .reveal .progress {
265
+ background: rgba(0, 0, 0, 0.2);
266
+ color: #3b759e; }
267
+
268
+ .reveal .progress span {
269
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
270
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
271
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
@@ -0,0 +1,268 @@
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: 40px;
24
+ font-weight: normal;
25
+ color: #657b83; }
26
+
27
+ ::selection {
28
+ color: #fff;
29
+ background: #d33682;
30
+ text-shadow: none; }
31
+
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: #d33682;
35
+ text-shadow: none; }
36
+
37
+ .reveal .slides > section,
38
+ .reveal .slides > section > section {
39
+ line-height: 1.3;
40
+ font-weight: inherit; }
41
+
42
+ /*********************************************
43
+ * HEADERS
44
+ *********************************************/
45
+ .reveal h1,
46
+ .reveal h2,
47
+ .reveal h3,
48
+ .reveal h4,
49
+ .reveal h5,
50
+ .reveal h6 {
51
+ margin: 0 0 20px 0;
52
+ color: #586e75;
53
+ font-family: "League Gothic", Impact, sans-serif;
54
+ font-weight: normal;
55
+ line-height: 1.2;
56
+ letter-spacing: normal;
57
+ text-transform: uppercase;
58
+ text-shadow: none;
59
+ word-wrap: break-word; }
60
+
61
+ .reveal h1 {
62
+ font-size: 3.77em; }
63
+
64
+ .reveal h2 {
65
+ font-size: 2.11em; }
66
+
67
+ .reveal h3 {
68
+ font-size: 1.55em; }
69
+
70
+ .reveal h4 {
71
+ font-size: 1em; }
72
+
73
+ .reveal h1 {
74
+ text-shadow: none; }
75
+
76
+ /*********************************************
77
+ * OTHER
78
+ *********************************************/
79
+ .reveal p {
80
+ margin: 20px 0;
81
+ line-height: 1.3; }
82
+
83
+ /* Ensure certain elements are never larger than the slide itself */
84
+ .reveal img,
85
+ .reveal video,
86
+ .reveal iframe {
87
+ max-width: 95%;
88
+ max-height: 95%; }
89
+
90
+ .reveal strong,
91
+ .reveal b {
92
+ font-weight: bold; }
93
+
94
+ .reveal em {
95
+ font-style: italic; }
96
+
97
+ .reveal ol,
98
+ .reveal dl,
99
+ .reveal ul {
100
+ display: inline-block;
101
+ text-align: left;
102
+ margin: 0 0 0 1em; }
103
+
104
+ .reveal ol {
105
+ list-style-type: decimal; }
106
+
107
+ .reveal ul {
108
+ list-style-type: disc; }
109
+
110
+ .reveal ul ul {
111
+ list-style-type: square; }
112
+
113
+ .reveal ul ul ul {
114
+ list-style-type: circle; }
115
+
116
+ .reveal ul ul,
117
+ .reveal ul ol,
118
+ .reveal ol ol,
119
+ .reveal ol ul {
120
+ display: block;
121
+ margin-left: 40px; }
122
+
123
+ .reveal dt {
124
+ font-weight: bold; }
125
+
126
+ .reveal dd {
127
+ margin-left: 40px; }
128
+
129
+ .reveal blockquote {
130
+ display: block;
131
+ position: relative;
132
+ width: 70%;
133
+ margin: 20px auto;
134
+ padding: 5px;
135
+ font-style: italic;
136
+ background: rgba(255, 255, 255, 0.05);
137
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
138
+
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
141
+ display: inline-block; }
142
+
143
+ .reveal q {
144
+ font-style: italic; }
145
+
146
+ .reveal pre {
147
+ display: block;
148
+ position: relative;
149
+ width: 90%;
150
+ margin: 20px auto;
151
+ text-align: left;
152
+ font-size: 0.55em;
153
+ font-family: monospace;
154
+ line-height: 1.2em;
155
+ word-wrap: break-word;
156
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
157
+
158
+ .reveal code {
159
+ font-family: monospace;
160
+ text-transform: none; }
161
+
162
+ .reveal pre code {
163
+ display: block;
164
+ padding: 5px;
165
+ overflow: auto;
166
+ max-height: 400px;
167
+ word-wrap: normal; }
168
+
169
+ .reveal table {
170
+ margin: auto;
171
+ border-collapse: collapse;
172
+ border-spacing: 0; }
173
+
174
+ .reveal table th {
175
+ font-weight: bold; }
176
+
177
+ .reveal table th,
178
+ .reveal table td {
179
+ text-align: left;
180
+ padding: 0.2em 0.5em 0.2em 0.5em;
181
+ border-bottom: 1px solid; }
182
+
183
+ .reveal table th[align="center"],
184
+ .reveal table td[align="center"] {
185
+ text-align: center; }
186
+
187
+ .reveal table th[align="right"],
188
+ .reveal table td[align="right"] {
189
+ text-align: right; }
190
+
191
+ .reveal table tbody tr:last-child th,
192
+ .reveal table tbody tr:last-child td {
193
+ border-bottom: none; }
194
+
195
+ .reveal sup {
196
+ vertical-align: super; }
197
+
198
+ .reveal sub {
199
+ vertical-align: sub; }
200
+
201
+ .reveal small {
202
+ display: inline-block;
203
+ font-size: 0.6em;
204
+ line-height: 1.2em;
205
+ vertical-align: top; }
206
+
207
+ .reveal small * {
208
+ vertical-align: top; }
209
+
210
+ /*********************************************
211
+ * LINKS
212
+ *********************************************/
213
+ .reveal a {
214
+ color: #268bd2;
215
+ text-decoration: none;
216
+ -webkit-transition: color .15s ease;
217
+ -moz-transition: color .15s ease;
218
+ transition: color .15s ease; }
219
+
220
+ .reveal a:hover {
221
+ color: #78b9e6;
222
+ text-shadow: none;
223
+ border: none; }
224
+
225
+ .reveal .roll span:after {
226
+ color: #fff;
227
+ background: #1a6091; }
228
+
229
+ /*********************************************
230
+ * IMAGES
231
+ *********************************************/
232
+ .reveal section img {
233
+ margin: 15px 0px;
234
+ background: rgba(255, 255, 255, 0.12);
235
+ border: 4px solid #657b83;
236
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
237
+
238
+ .reveal section img.plain {
239
+ border: 0;
240
+ box-shadow: none; }
241
+
242
+ .reveal a img {
243
+ -webkit-transition: all .15s linear;
244
+ -moz-transition: all .15s linear;
245
+ transition: all .15s linear; }
246
+
247
+ .reveal a:hover img {
248
+ background: rgba(255, 255, 255, 0.2);
249
+ border-color: #268bd2;
250
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
251
+
252
+ /*********************************************
253
+ * NAVIGATION CONTROLS
254
+ *********************************************/
255
+ .reveal .controls {
256
+ color: #268bd2; }
257
+
258
+ /*********************************************
259
+ * PROGRESS BAR
260
+ *********************************************/
261
+ .reveal .progress {
262
+ background: rgba(0, 0, 0, 0.2);
263
+ color: #268bd2; }
264
+
265
+ .reveal .progress span {
266
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
267
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
268
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Beige theme for reveal.js.
3
+ *
4
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+
15
+ // Include theme-specific fonts
16
+ @import url(../../lib/font/league-gothic/league-gothic.css);
17
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
18
+
19
+
20
+ // Override theme settings (see ../template/settings.scss)
21
+ $mainColor: #333;
22
+ $headingColor: #333;
23
+ $headingTextShadow: none;
24
+ $backgroundColor: #f7f3de;
25
+ $linkColor: #8b743d;
26
+ $linkColorHover: lighten( $linkColor, 20% );
27
+ $selectionBackgroundColor: rgba(79, 64, 28, 0.99);
28
+ $heading1TextShadow: 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,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
29
+
30
+ // Background generator
31
+ @mixin bodyBackground() {
32
+ @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );
33
+ }
34
+
35
+
36
+
37
+ // Theme template ------------------------------
38
+ @import "../template/theme";
39
+ // ---------------------------------------------
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Black theme for reveal.js. This is the opposite of the 'white' theme.
3
+ *
4
+ * By Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+ // Include theme-specific fonts
15
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
16
+
17
+
18
+ // Override theme settings (see ../template/settings.scss)
19
+ $backgroundColor: #222;
20
+
21
+ $mainColor: #fff;
22
+ $headingColor: #fff;
23
+
24
+ $mainFontSize: 42px;
25
+ $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26
+ $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27
+ $headingTextShadow: none;
28
+ $headingLetterSpacing: normal;
29
+ $headingTextTransform: uppercase;
30
+ $headingFontWeight: 600;
31
+ $linkColor: #42affa;
32
+ $linkColorHover: lighten( $linkColor, 15% );
33
+ $selectionBackgroundColor: lighten( $linkColor, 25% );
34
+
35
+ $heading1Size: 2.5em;
36
+ $heading2Size: 1.6em;
37
+ $heading3Size: 1.3em;
38
+ $heading4Size: 1.0em;
39
+
40
+ section.has-light-background {
41
+ &, h1, h2, h3, h4, h5, h6 {
42
+ color: #222;
43
+ }
44
+ }
45
+
46
+
47
+ // Theme template ------------------------------
48
+ @import "../template/theme";
49
+ // ---------------------------------------------
@@ -0,0 +1,78 @@
1
+ /**
2
+ * Blood theme for reveal.js
3
+ * Author: Walther http://github.com/Walther
4
+ *
5
+ * Designed to be used with highlight.js theme
6
+ * "monokai_sublime.css" available from
7
+ * https://github.com/isagalaev/highlight.js/
8
+ *
9
+ * For other themes, change $codeBackground accordingly.
10
+ *
11
+ */
12
+
13
+ // Default mixins and settings -----------------
14
+ @import "../template/mixins";
15
+ @import "../template/settings";
16
+ // ---------------------------------------------
17
+
18
+ // Include theme-specific fonts
19
+
20
+ @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
21
+
22
+ // Colors used in the theme
23
+ $blood: #a23;
24
+ $coal: #222;
25
+ $codeBackground: #23241f;
26
+
27
+ $backgroundColor: $coal;
28
+
29
+ // Main text
30
+ $mainFont: Ubuntu, 'sans-serif';
31
+ $mainColor: #eee;
32
+
33
+ // Headings
34
+ $headingFont: Ubuntu, 'sans-serif';
35
+ $headingTextShadow: 2px 2px 2px $coal;
36
+
37
+ // h1 shadow, borrowed humbly from
38
+ // (c) Default theme by Hakim El Hattab
39
+ $heading1TextShadow: 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,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
40
+
41
+ // Links
42
+ $linkColor: $blood;
43
+ $linkColorHover: lighten( $linkColor, 20% );
44
+
45
+ // Text selection
46
+ $selectionBackgroundColor: $blood;
47
+ $selectionColor: #fff;
48
+
49
+
50
+ // Theme template ------------------------------
51
+ @import "../template/theme";
52
+ // ---------------------------------------------
53
+
54
+ // some overrides after theme template import
55
+
56
+ .reveal p {
57
+ font-weight: 300;
58
+ text-shadow: 1px 1px $coal;
59
+ }
60
+
61
+ .reveal h1,
62
+ .reveal h2,
63
+ .reveal h3,
64
+ .reveal h4,
65
+ .reveal h5,
66
+ .reveal h6 {
67
+ font-weight: 700;
68
+ }
69
+
70
+ .reveal p code {
71
+ background-color: $codeBackground;
72
+ display: inline-block;
73
+ border-radius: 7px;
74
+ }
75
+
76
+ .reveal small code {
77
+ vertical-align: baseline;
78
+ }