reveal-jekyll 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +94 -0
- data/_includes/basements.html +7 -0
- data/_includes/head.html +39 -0
- data/_includes/reveal.html +25 -0
- data/_layouts/presentation.html +26 -0
- data/_layouts/raw.html +20 -0
- data/assets/css/print/paper.css +203 -0
- data/assets/css/print/pdf.css +164 -0
- data/assets/css/reset.css +30 -0
- data/assets/css/reveal.css +1598 -0
- data/assets/css/reveal.scss +1768 -0
- data/assets/css/rouge-highlight/monokai.css +210 -0
- data/assets/css/theme/README.md +21 -0
- data/assets/css/theme/beige.css +277 -0
- data/assets/css/theme/black.css +273 -0
- data/assets/css/theme/blood.css +296 -0
- data/assets/css/theme/league.css +279 -0
- data/assets/css/theme/moon.css +277 -0
- data/assets/css/theme/night.css +271 -0
- data/assets/css/theme/serif.css +273 -0
- data/assets/css/theme/simple.css +276 -0
- data/assets/css/theme/sky.css +280 -0
- data/assets/css/theme/solarized.css +277 -0
- data/assets/css/theme/source/beige.scss +39 -0
- data/assets/css/theme/source/black.scss +49 -0
- data/assets/css/theme/source/blood.scss +78 -0
- data/assets/css/theme/source/league.scss +34 -0
- data/assets/css/theme/source/moon.scss +57 -0
- data/assets/css/theme/source/night.scss +34 -0
- data/assets/css/theme/source/serif.scss +35 -0
- data/assets/css/theme/source/simple.scss +43 -0
- data/assets/css/theme/source/sky.scss +46 -0
- data/assets/css/theme/source/solarized.scss +63 -0
- data/assets/css/theme/source/white.scss +49 -0
- data/assets/css/theme/template/mixins.scss +29 -0
- data/assets/css/theme/template/settings.scss +45 -0
- data/assets/css/theme/template/theme.scss +325 -0
- data/assets/css/theme/white.css +273 -0
- data/assets/js/reveal.js +6028 -0
- data/assets/lib/css/monokai.css +71 -0
- data/assets/lib/css/zenburn.css +80 -0
- data/assets/lib/font/Pacifico/Pacifico.eot +0 -0
- data/assets/lib/font/Pacifico/Pacifico.svg +10833 -0
- data/assets/lib/font/Pacifico/Pacifico.ttf +0 -0
- data/assets/lib/font/Pacifico/Pacifico.woff +0 -0
- data/assets/lib/font/Pacifico/Pacifico.woff2 +0 -0
- data/assets/lib/font/Pacifico/original-pacifico-regular.ttf +0 -0
- data/assets/lib/font/fontawesome/FontAwesome.otf +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.eot +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.svg +2671 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.ttf +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.woff +0 -0
- data/assets/lib/font/fontawesome/fontawesome-webfont.woff2 +0 -0
- data/assets/lib/font/league-gothic/LICENSE +2 -0
- data/assets/lib/font/league-gothic/league-gothic.css +10 -0
- data/assets/lib/font/league-gothic/league-gothic.eot +0 -0
- data/assets/lib/font/league-gothic/league-gothic.ttf +0 -0
- data/assets/lib/font/league-gothic/league-gothic.woff +0 -0
- data/assets/lib/font/source-sans-pro/LICENSE +45 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
- data/assets/lib/font/source-sans-pro/source-sans-pro.css +39 -0
- data/assets/lib/js/html5shiv.js +7 -0
- data/assets/lib/js/promise.js +2 -0
- data/assets/plugin/highlight/highlight.js +168 -0
- data/assets/plugin/markdown/example.html +134 -0
- data/assets/plugin/markdown/example.md +36 -0
- data/assets/plugin/markdown/markdown.js +446 -0
- data/assets/plugin/markdown/marked.js +6 -0
- data/assets/plugin/math/math.js +92 -0
- data/assets/plugin/multiplex/client.js +13 -0
- data/assets/plugin/multiplex/index.js +64 -0
- data/assets/plugin/multiplex/master.js +34 -0
- data/assets/plugin/multiplex/package.json +19 -0
- data/assets/plugin/notes-server/client.js +65 -0
- data/assets/plugin/notes-server/index.js +69 -0
- data/assets/plugin/notes-server/notes.html +585 -0
- data/assets/plugin/notes/notes.html +834 -0
- data/assets/plugin/notes/notes.js +178 -0
- data/assets/plugin/print-pdf/print-pdf.js +67 -0
- data/assets/plugin/search/search.js +206 -0
- data/assets/plugin/zoom-js/zoom.js +277 -0
- metadata +180 -0
@@ -0,0 +1,277 @@
|
|
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 5px 15px rgba(0, 0, 0, 0.15); }
|
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
|
+
font-size: smaller; }
|
198
|
+
|
199
|
+
.reveal sub {
|
200
|
+
vertical-align: sub;
|
201
|
+
font-size: smaller; }
|
202
|
+
|
203
|
+
.reveal small {
|
204
|
+
display: inline-block;
|
205
|
+
font-size: 0.6em;
|
206
|
+
line-height: 1.2em;
|
207
|
+
vertical-align: top; }
|
208
|
+
|
209
|
+
.reveal small * {
|
210
|
+
vertical-align: top; }
|
211
|
+
|
212
|
+
/*********************************************
|
213
|
+
* LINKS
|
214
|
+
*********************************************/
|
215
|
+
.reveal a {
|
216
|
+
color: #268bd2;
|
217
|
+
text-decoration: none;
|
218
|
+
-webkit-transition: color .15s ease;
|
219
|
+
-moz-transition: color .15s ease;
|
220
|
+
transition: color .15s ease; }
|
221
|
+
|
222
|
+
.reveal a:hover {
|
223
|
+
color: #78b9e6;
|
224
|
+
text-shadow: none;
|
225
|
+
border: none; }
|
226
|
+
|
227
|
+
.reveal .roll span:after {
|
228
|
+
color: #fff;
|
229
|
+
background: #1a6091; }
|
230
|
+
|
231
|
+
/*********************************************
|
232
|
+
* IMAGES
|
233
|
+
*********************************************/
|
234
|
+
.reveal section img {
|
235
|
+
margin: 15px 0px;
|
236
|
+
background: rgba(255, 255, 255, 0.12);
|
237
|
+
border: 4px solid #657b83;
|
238
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
239
|
+
|
240
|
+
.reveal section img.plain {
|
241
|
+
border: 0;
|
242
|
+
box-shadow: none; }
|
243
|
+
|
244
|
+
.reveal a img {
|
245
|
+
-webkit-transition: all .15s linear;
|
246
|
+
-moz-transition: all .15s linear;
|
247
|
+
transition: all .15s linear; }
|
248
|
+
|
249
|
+
.reveal a:hover img {
|
250
|
+
background: rgba(255, 255, 255, 0.2);
|
251
|
+
border-color: #268bd2;
|
252
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
253
|
+
|
254
|
+
/*********************************************
|
255
|
+
* NAVIGATION CONTROLS
|
256
|
+
*********************************************/
|
257
|
+
.reveal .controls {
|
258
|
+
color: #268bd2; }
|
259
|
+
|
260
|
+
/*********************************************
|
261
|
+
* PROGRESS BAR
|
262
|
+
*********************************************/
|
263
|
+
.reveal .progress {
|
264
|
+
background: rgba(0, 0, 0, 0.2);
|
265
|
+
color: #268bd2; }
|
266
|
+
|
267
|
+
.reveal .progress span {
|
268
|
+
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
269
|
+
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
270
|
+
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|
271
|
+
|
272
|
+
/*********************************************
|
273
|
+
* PRINT BACKGROUND
|
274
|
+
*********************************************/
|
275
|
+
@media print {
|
276
|
+
.backgrounds {
|
277
|
+
background-color: #fdf6e3; } }
|
@@ -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: #191919;
|
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
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/**
|
2
|
+
* League theme for reveal.js.
|
3
|
+
*
|
4
|
+
* This was the default theme pre-3.0.0.
|
5
|
+
*
|
6
|
+
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
7
|
+
*/
|
8
|
+
|
9
|
+
|
10
|
+
// Default mixins and settings -----------------
|
11
|
+
@import "../template/mixins";
|
12
|
+
@import "../template/settings";
|
13
|
+
// ---------------------------------------------
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
// Include theme-specific fonts
|
18
|
+
@import url(../../lib/font/league-gothic/league-gothic.css);
|
19
|
+
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
20
|
+
|
21
|
+
// Override theme settings (see ../template/settings.scss)
|
22
|
+
$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);
|
23
|
+
$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);
|
24
|
+
|
25
|
+
// Background generator
|
26
|
+
@mixin bodyBackground() {
|
27
|
+
@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
// Theme template ------------------------------
|
33
|
+
@import "../template/theme";
|
34
|
+
// ---------------------------------------------
|