slideoff 0.1
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.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +218 -0
- data/bin/slideoff +127 -0
- data/lib/slideoff/config_builder.rb +60 -0
- data/lib/slideoff/flickr_api.rb +50 -0
- data/lib/slideoff/flickr_image.rb +92 -0
- data/lib/slideoff/markdown.rb +145 -0
- data/lib/slideoff/presentation.rb +90 -0
- data/lib/slideoff/remote_api.rb +53 -0
- data/lib/slideoff/routes.rb +20 -0
- data/lib/slideoff/server.rb +50 -0
- data/lib/slideoff/slides_api.rb +59 -0
- data/lib/slideoff/utils.rb +453 -0
- data/lib/slideoff.rb +15 -0
- data/themes/3d_slideshow/README +2 -0
- data/themes/3d_slideshow/css/main.css +232 -0
- data/themes/3d_slideshow/css/reset.css +57 -0
- data/themes/3d_slideshow/index.erb +31 -0
- data/themes/3d_slideshow/js/slideshow.js +288 -0
- data/themes/CSSS/README +2 -0
- data/themes/CSSS/css/slideshow.css +304 -0
- data/themes/CSSS/css/theme.css +250 -0
- data/themes/CSSS/images/rainbow-wood.jpg +0 -0
- data/themes/CSSS/index.erb +36 -0
- data/themes/CSSS/js/classList.js +116 -0
- data/themes/CSSS/js/prefixfree.min.js +5 -0
- data/themes/CSSS/js/slideshow.js +621 -0
- data/themes/common/css/pygments/colorful.css +62 -0
- data/themes/common/css/pygments/manni.css +61 -0
- data/themes/common/css/pygments/native.css +70 -0
- data/themes/common/css/pygments/solarized.css +66 -0
- data/themes/common/fonts/DroidSansMono.svg +626 -0
- data/themes/common/fonts/DroidSansMono.ttf +0 -0
- data/themes/common/fonts/Lato-BoldItalic.woff +0 -0
- data/themes/common/fonts/Lato-Italic.woff +0 -0
- data/themes/common/fonts/Lato-bold.woff +0 -0
- data/themes/common/fonts/Lato.woff +0 -0
- data/themes/common/fonts/OpenSans-Bold.woff +0 -0
- data/themes/common/fonts/OpenSans-BoldItalic.woff +0 -0
- data/themes/common/fonts/OpenSans-Italic.woff +0 -0
- data/themes/common/fonts/OpenSans.woff +0 -0
- data/themes/common/fonts/PTMono.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Italic.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/common/fonts/PTSans.Narrow.woff +0 -0
- data/themes/common/fonts/PTSans.woff +0 -0
- data/themes/common/fonts/TargetBlank.otf +0 -0
- data/themes/common/fonts/TargetBlank.svg +14 -0
- data/themes/common/fonts/YanoneKaffeesatz-Bold.woff +0 -0
- data/themes/common/fonts/YanoneKaffeesatz-Regular.woff +0 -0
- data/themes/common/fonts/crimson_text.ttf +0 -0
- data/themes/common/fonts/crimson_text_bold.ttf +0 -0
- data/themes/common/fonts/crimson_text_semibold.ttf +0 -0
- data/themes/common/fonts/league_gothic-webfont.ttf +0 -0
- data/themes/html5rocks/README +2 -0
- data/themes/html5rocks/css/default.css +501 -0
- data/themes/html5rocks/css/moon.css +543 -0
- data/themes/html5rocks/css/sand.css +508 -0
- data/themes/html5rocks/css/sea_wave.css +492 -0
- data/themes/html5rocks/index.erb +64 -0
- data/themes/html5rocks/js/slides.js +464 -0
- data/themes/io2012/README +2 -0
- data/themes/io2012/css/default.css +1481 -0
- data/themes/io2012/css/fonts.css +24 -0
- data/themes/io2012/css/phone.css +27 -0
- data/themes/io2012/images/google_developers_icon_128.png +0 -0
- data/themes/io2012/images/io2012_logo.png +0 -0
- data/themes/io2012/index.erb +73 -0
- data/themes/io2012/js/hammer.js +586 -0
- data/themes/io2012/js/modernizr.custom.45394.js +4 -0
- data/themes/io2012/js/order.js +8 -0
- data/themes/io2012/js/polyfills/classList.min.js +2 -0
- data/themes/io2012/js/polyfills/dataset.min.js +2 -0
- data/themes/io2012/js/polyfills/history.min.js +1 -0
- data/themes/io2012/js/prettify/lang-apollo.js +2 -0
- data/themes/io2012/js/prettify/lang-clj.js +18 -0
- data/themes/io2012/js/prettify/lang-css.js +2 -0
- data/themes/io2012/js/prettify/lang-go.js +1 -0
- data/themes/io2012/js/prettify/lang-hs.js +2 -0
- data/themes/io2012/js/prettify/lang-lisp.js +3 -0
- data/themes/io2012/js/prettify/lang-lua.js +2 -0
- data/themes/io2012/js/prettify/lang-ml.js +2 -0
- data/themes/io2012/js/prettify/lang-n.js +4 -0
- data/themes/io2012/js/prettify/lang-proto.js +1 -0
- data/themes/io2012/js/prettify/lang-scala.js +2 -0
- data/themes/io2012/js/prettify/lang-sql.js +2 -0
- data/themes/io2012/js/prettify/lang-tex.js +1 -0
- data/themes/io2012/js/prettify/lang-vb.js +2 -0
- data/themes/io2012/js/prettify/lang-vhdl.js +3 -0
- data/themes/io2012/js/prettify/lang-wiki.js +2 -0
- data/themes/io2012/js/prettify/lang-xq.js +3 -0
- data/themes/io2012/js/prettify/lang-yaml.js +2 -0
- data/themes/io2012/js/prettify/prettify.css +1 -0
- data/themes/io2012/js/prettify/prettify.js +28 -0
- data/themes/io2012/js/require-1.0.8.min.js +33 -0
- data/themes/io2012/js/slide-controller.js +109 -0
- data/themes/io2012/js/slide-deck.js +768 -0
- data/themes/io2012/js/slides.js +5 -0
- data/themes/memories/README +5 -0
- data/themes/memories/css/fonts.css +25 -0
- data/themes/memories/css/slideshow.css +286 -0
- data/themes/memories/css/theme.css +183 -0
- data/themes/memories/index.erb +37 -0
- data/themes/memories/js/prefixfree.min.js +13 -0
- data/themes/memories/js/slideshow.js +577 -0
- data/themes/modern/LICENSE +20 -0
- data/themes/modern/README.md +52 -0
- data/themes/modern/css/GENERATED_CONTENT +0 -0
- data/themes/modern/css/defaults.css +0 -0
- data/themes/modern/css/fonts.css +166 -0
- data/themes/modern/css/pygments/colorful.css +215 -0
- data/themes/modern/css/pygments/github.css +208 -0
- data/themes/modern/css/pygments/solarized-dark.css +213 -0
- data/themes/modern/css/pygments/solarized-light.css +213 -0
- data/themes/modern/css/reset.css +41 -0
- data/themes/modern/css/screen.css +1183 -0
- data/themes/modern/fonts/Collegiate.woff +0 -0
- data/themes/modern/fonts/GoudyBookletter.1911.woff +0 -0
- data/themes/modern/fonts/Inconsolata.Bold.woff +0 -0
- data/themes/modern/fonts/Inconsolata.woff +0 -0
- data/themes/modern/fonts/Junction.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Bold.woff +0 -0
- data/themes/modern/fonts/LiberationMono.BoldItalic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Italic.woff +0 -0
- data/themes/modern/fonts/LiberationMono.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Bold.woff +0 -0
- data/themes/modern/fonts/OpenSans.BoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBold.woff +0 -0
- data/themes/modern/fonts/OpenSans.ExtraBoldItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Italic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Light.woff +0 -0
- data/themes/modern/fonts/OpenSans.LightItalic.woff +0 -0
- data/themes/modern/fonts/OpenSans.Regular.woff +0 -0
- data/themes/modern/fonts/OpenSans.Semibold.woff +0 -0
- data/themes/modern/fonts/OpenSans.SemiboldItalic.woff +0 -0
- data/themes/modern/fonts/PTMono.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.Italic.woff +0 -0
- data/themes/modern/fonts/PTSans.Narrow.Bold.woff +0 -0
- data/themes/modern/fonts/PTSans.woff +0 -0
- data/themes/modern/fonts/Raleway.Thin.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Bold.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.BoldItalic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Italic.woff +0 -0
- data/themes/modern/fonts/STIXGeneral.Regular.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Bold.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.ExtraLight.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Light.woff +0 -0
- data/themes/modern/fonts/YanoneKaffeesatz.Regular.woff +0 -0
- data/themes/modern/images/cc/by.svg +29 -0
- data/themes/modern/images/cc/cc-white.svg +23 -0
- data/themes/modern/images/cc/cc.svg +23 -0
- data/themes/modern/images/cc/nc-eu.svg +21 -0
- data/themes/modern/images/cc/nc-jp.svg +18 -0
- data/themes/modern/images/cc/nc.svg +23 -0
- data/themes/modern/images/cc/nd.svg +20 -0
- data/themes/modern/images/cc/pd.svg +24 -0
- data/themes/modern/images/cc/remix.svg +20 -0
- data/themes/modern/images/cc/sa.svg +22 -0
- data/themes/modern/images/cc/sampling.plus.svg +33 -0
- data/themes/modern/images/cc/sampling.svg +36 -0
- data/themes/modern/images/cc/share.svg +22 -0
- data/themes/modern/images/cc/zero.svg +24 -0
- data/themes/modern/images/flickr.svg +65 -0
- data/themes/modern/images/mesh.png +0 -0
- data/themes/modern/images/mesh@2x.png +0 -0
- data/themes/modern/images/progress-grayDark.svg +55 -0
- data/themes/modern/images/progress.svg +3 -0
- data/themes/modern/index.erb +76 -0
- data/themes/modern/js/highcharts.js +294 -0
- data/themes/modern/js/jquery-2.1.0.min.js +4 -0
- data/themes/modern/js/script.coffee +480 -0
- data/themes/modern/js/script.js +678 -0
- data/themes/modern/styles/_box.scss +89 -0
- data/themes/modern/styles/_figure.scss +81 -0
- data/themes/modern/styles/_full.scss +74 -0
- data/themes/modern/styles/_increment.scss +38 -0
- data/themes/modern/styles/_list.scss +129 -0
- data/themes/modern/styles/_progress.scss +19 -0
- data/themes/modern/styles/defaults.scss +46 -0
- data/themes/modern/styles/fonts.scss +197 -0
- data/themes/modern/styles/pygments/_solarized.scss +82 -0
- data/themes/modern/styles/pygments/colorful.scss +67 -0
- data/themes/modern/styles/pygments/github.scss +67 -0
- data/themes/modern/styles/pygments/solarized-dark.scss +15 -0
- data/themes/modern/styles/pygments/solarized-light.scss +15 -0
- data/themes/modern/styles/reset.scss +46 -0
- data/themes/modern/styles/screen.scss +841 -0
- data/themes/reveal/README +2 -0
- data/themes/reveal/css/main.css +1029 -0
- data/themes/reveal/css/reset.css +57 -0
- data/themes/reveal/index.erb +102 -0
- data/themes/reveal/js/classList.js +2 -0
- data/themes/reveal/js/head.min.js +8 -0
- data/themes/reveal/js/reveal.js +951 -0
- data/themes/shower/README +2 -0
- data/themes/shower/css/fonts.css +50 -0
- data/themes/shower/css/reset.css +42 -0
- data/themes/shower/css/style.css +418 -0
- data/themes/shower/images/grid.png +0 -0
- data/themes/shower/images/linen.png +0 -0
- data/themes/shower/images/ribbon.svg +4 -0
- data/themes/shower/index.erb +35 -0
- data/themes/shower/js/script.js +325 -0
- data/themes/template/README +5 -0
- data/themes/template/css/reset.css +42 -0
- data/themes/template/index.erb +35 -0
- data/themes/template/js/prefixfree.min.js +13 -0
- metadata +343 -0
@@ -0,0 +1,1029 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/**
|
3
|
+
* Main styles for reveal.js
|
4
|
+
*
|
5
|
+
* @author Hakim El Hattab
|
6
|
+
*/
|
7
|
+
|
8
|
+
|
9
|
+
/*********************************************
|
10
|
+
* FONT-FACE DEFINITIONS
|
11
|
+
*********************************************/
|
12
|
+
|
13
|
+
@font-face {
|
14
|
+
font-family: 'League Gothic';
|
15
|
+
src: url('../fonts/league_gothic-webfont.ttf') format('truetype');
|
16
|
+
font-weight: normal;
|
17
|
+
font-style: normal;
|
18
|
+
}
|
19
|
+
|
20
|
+
@font-face {
|
21
|
+
font-family: 'Lato';
|
22
|
+
font-style: normal;
|
23
|
+
font-weight: 400;
|
24
|
+
src: local('Lato Regular'), local('Lato-Regular'), url('../fonts/Lato.woff') format('woff');
|
25
|
+
}
|
26
|
+
@font-face {
|
27
|
+
font-family: 'Lato';
|
28
|
+
font-style: normal;
|
29
|
+
font-weight: 700;
|
30
|
+
src: local('Lato Bold'), local('Lato-Bold'), url('../fonts/Lato-Bold.woff') format('woff');
|
31
|
+
}
|
32
|
+
@font-face {
|
33
|
+
font-family: 'Lato';
|
34
|
+
font-style: italic;
|
35
|
+
font-weight: 400;
|
36
|
+
src: local('Lato Italic'), local('Lato-Italic'), url('../fonts/Lato-Italic.woff') format('woff');
|
37
|
+
}
|
38
|
+
@font-face {
|
39
|
+
font-family: 'Lato';
|
40
|
+
font-style: italic;
|
41
|
+
font-weight: 700;
|
42
|
+
src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url('../fonts/Lato-BoldItalic.woff') format('woff');
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
/*********************************************
|
48
|
+
* GLOBAL STYLES
|
49
|
+
*********************************************/
|
50
|
+
|
51
|
+
html, body {
|
52
|
+
padding: 0;
|
53
|
+
margin: 0;
|
54
|
+
width: 100%;
|
55
|
+
height: 100%;
|
56
|
+
min-height: 600px;
|
57
|
+
}
|
58
|
+
|
59
|
+
body {
|
60
|
+
position: relative;
|
61
|
+
padding: 0;
|
62
|
+
margin: 0;
|
63
|
+
overflow: hidden;
|
64
|
+
|
65
|
+
font-family: 'Lato', Times, 'Times New Roman', serif;
|
66
|
+
font-size: 36px;
|
67
|
+
font-weight: 200;
|
68
|
+
letter-spacing: -0.02em;
|
69
|
+
color: #eee;
|
70
|
+
|
71
|
+
background: #1c1e20;
|
72
|
+
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM1NTVhNWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMWMxZTIwIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
|
73
|
+
background: -moz-radial-gradient(center, ellipse cover, rgba(85,90,95,1) 0%, rgba(28,30,32,1) 100%);
|
74
|
+
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(85,90,95,1)), color-stop(100%,rgba(28,30,32,1)));
|
75
|
+
background: -webkit-radial-gradient(center, ellipse cover, rgba(85,90,95,1) 0%,rgba(28,30,32,1) 100%);
|
76
|
+
background: -o-radial-gradient(center, ellipse cover, rgba(85,90,95,1) 0%,rgba(28,30,32,1) 100%);
|
77
|
+
background: -ms-radial-gradient(center, ellipse cover, rgba(85,90,95,1) 0%,rgba(28,30,32,1) 100%);
|
78
|
+
background: radial-gradient(center, ellipse cover, rgba(85,90,95,1) 0%,rgba(28,30,32,1) 100%);
|
79
|
+
}
|
80
|
+
|
81
|
+
/*********************************************
|
82
|
+
* HEADERS
|
83
|
+
*********************************************/
|
84
|
+
.reveal h1,
|
85
|
+
.reveal h2,
|
86
|
+
.reveal h3,
|
87
|
+
.reveal h4 {
|
88
|
+
margin: 0 0 20px 0;
|
89
|
+
|
90
|
+
color: #eee;
|
91
|
+
|
92
|
+
font-family: 'League Gothic', sans-serif;
|
93
|
+
line-height: 0.9em;
|
94
|
+
letter-spacing: 0.02em;
|
95
|
+
|
96
|
+
text-transform: uppercase;
|
97
|
+
text-shadow: 0px 0px 6px rgba(0,0,0,0.2);
|
98
|
+
}
|
99
|
+
|
100
|
+
.reveal h1 { font-size: 136px; }
|
101
|
+
.reveal h2 { font-size: 76px; }
|
102
|
+
.reveal h3 { font-size: 56px; }
|
103
|
+
.reveal h4 { font-size: 36px; }
|
104
|
+
|
105
|
+
.reveal h1.inverted,
|
106
|
+
.reveal h2.inverted,
|
107
|
+
.reveal h3.inverted,
|
108
|
+
.reveal h4.inverted {
|
109
|
+
color: #fff;
|
110
|
+
text-shadow: 0px 0px 2px rgba(0,0,0,0.2);
|
111
|
+
}
|
112
|
+
|
113
|
+
.reveal h1 {
|
114
|
+
text-shadow: 0 1px 0 #ccc,
|
115
|
+
0 2px 0 #c9c9c9,
|
116
|
+
0 3px 0 #bbb,
|
117
|
+
0 4px 0 #b9b9b9,
|
118
|
+
0 5px 0 #aaa,
|
119
|
+
0 6px 1px rgba(0,0,0,.1),
|
120
|
+
0 0 5px rgba(0,0,0,.1),
|
121
|
+
0 1px 3px rgba(0,0,0,.3),
|
122
|
+
0 3px 5px rgba(0,0,0,.2),
|
123
|
+
0 5px 10px rgba(0,0,0,.25),
|
124
|
+
0 20px 20px rgba(0,0,0,.15);
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
/*********************************************
|
129
|
+
* VIEW FRAGMENTS
|
130
|
+
*********************************************/
|
131
|
+
|
132
|
+
.reveal .slides section .fragment {
|
133
|
+
opacity: 0;
|
134
|
+
|
135
|
+
-webkit-transition: all .2s ease;
|
136
|
+
-moz-transition: all .2s ease;
|
137
|
+
-ms-transition: all .2s ease;
|
138
|
+
-o-transition: all .2s ease;
|
139
|
+
transition: all .2s ease;
|
140
|
+
}
|
141
|
+
.reveal .slides section .fragment.visible {
|
142
|
+
opacity: 1;
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
/*********************************************
|
147
|
+
* DEFAULT ELEMENT STYLES
|
148
|
+
*********************************************/
|
149
|
+
|
150
|
+
.reveal .slides section {
|
151
|
+
line-height: 1.2em;
|
152
|
+
font-weight: normal;
|
153
|
+
}
|
154
|
+
|
155
|
+
.reveal strong,
|
156
|
+
.reveal b {
|
157
|
+
font-weight: bold;
|
158
|
+
}
|
159
|
+
|
160
|
+
.reveal em,
|
161
|
+
.reveal i {
|
162
|
+
font-style: italic;
|
163
|
+
}
|
164
|
+
|
165
|
+
.reveal ol,
|
166
|
+
.reveal ul {
|
167
|
+
display: inline-block;
|
168
|
+
|
169
|
+
text-align: left;
|
170
|
+
margin: 0 auto;
|
171
|
+
}
|
172
|
+
|
173
|
+
.reveal ol {
|
174
|
+
list-style-type: decimal;
|
175
|
+
}
|
176
|
+
|
177
|
+
.reveal ul {
|
178
|
+
list-style-type: disc;
|
179
|
+
}
|
180
|
+
|
181
|
+
.reveal ul ul {
|
182
|
+
list-style-type: square;
|
183
|
+
}
|
184
|
+
|
185
|
+
.reveal ul ul ul {
|
186
|
+
list-style-type: circle;
|
187
|
+
}
|
188
|
+
|
189
|
+
.reveal ul ul,
|
190
|
+
.reveal ul ol,
|
191
|
+
.reveal ol ol,
|
192
|
+
.reveal ol ul {
|
193
|
+
display: block;
|
194
|
+
margin-left: 40px;
|
195
|
+
}
|
196
|
+
|
197
|
+
.reveal p {
|
198
|
+
margin-bottom: 10px;
|
199
|
+
}
|
200
|
+
|
201
|
+
.reveal blockquote {
|
202
|
+
display: block;
|
203
|
+
position: relative;
|
204
|
+
width: 70%;
|
205
|
+
margin: 5px auto;
|
206
|
+
padding: 5px;
|
207
|
+
|
208
|
+
font-style: italic;
|
209
|
+
background: rgba(255, 255, 255, 0.05);
|
210
|
+
box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
|
211
|
+
}
|
212
|
+
.reveal blockquote:before {
|
213
|
+
content: '“';
|
214
|
+
}
|
215
|
+
.reveal blockquote:after {
|
216
|
+
content: '”';
|
217
|
+
}
|
218
|
+
|
219
|
+
.reveal pre {
|
220
|
+
display: block;
|
221
|
+
position: relative;
|
222
|
+
width: 90%;
|
223
|
+
margin: 10px auto;
|
224
|
+
|
225
|
+
text-align: left;
|
226
|
+
font-size: 20px;
|
227
|
+
font-family: monospace;
|
228
|
+
line-height: 1.2em;
|
229
|
+
|
230
|
+
word-wrap: break-word;
|
231
|
+
|
232
|
+
box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
|
233
|
+
}
|
234
|
+
|
235
|
+
.reveal code {
|
236
|
+
font-family: monospace;
|
237
|
+
}
|
238
|
+
|
239
|
+
.reveal table th,
|
240
|
+
.reveal table td {
|
241
|
+
text-align: left;
|
242
|
+
padding-right: .3em;
|
243
|
+
}
|
244
|
+
|
245
|
+
.reveal table th {
|
246
|
+
text-shadow: rgb(255,255,255) 1px 1px 2px;
|
247
|
+
}
|
248
|
+
|
249
|
+
.reveal small {
|
250
|
+
font-size: 60%;
|
251
|
+
line-height: 1em;
|
252
|
+
vertical-align: top;
|
253
|
+
}
|
254
|
+
|
255
|
+
.reveal q {
|
256
|
+
font-style: italic;
|
257
|
+
}
|
258
|
+
.reveal q:before {
|
259
|
+
content: '“';
|
260
|
+
}
|
261
|
+
.reveal q:after {
|
262
|
+
content: '”';
|
263
|
+
}
|
264
|
+
|
265
|
+
.reveal a:not(.image) {
|
266
|
+
color: hsl(185, 85%, 50%);
|
267
|
+
text-decoration: none;
|
268
|
+
|
269
|
+
-webkit-transition: all .2s ease;
|
270
|
+
-moz-transition: all .2s ease;
|
271
|
+
-ms-transition: all .2s ease;
|
272
|
+
-o-transition: all .2s ease;
|
273
|
+
transition: all .2s ease;
|
274
|
+
}
|
275
|
+
|
276
|
+
.reveal a:not(.image):hover {
|
277
|
+
color: hsl(185, 85%, 70%);
|
278
|
+
background: hsla(185, 25%, 20%, 0.4);
|
279
|
+
text-shadow: none;
|
280
|
+
border: none;
|
281
|
+
border-radius: 2px;
|
282
|
+
}
|
283
|
+
|
284
|
+
.reveal section img {
|
285
|
+
margin: 30px 0 0 0;
|
286
|
+
background: rgba(255,255,255,0.12);
|
287
|
+
border: 4px solid #eee;
|
288
|
+
|
289
|
+
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
290
|
+
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
291
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
292
|
+
|
293
|
+
-webkit-transition: all .2s linear;
|
294
|
+
-moz-transition: all .2s linear;
|
295
|
+
-ms-transition: all .2s linear;
|
296
|
+
-o-transition: all .2s linear;
|
297
|
+
transition: all .2s linear;
|
298
|
+
}
|
299
|
+
|
300
|
+
.reveal a:hover img {
|
301
|
+
background: rgba(255,255,255,0.2);
|
302
|
+
border-color: #13DAEC;
|
303
|
+
|
304
|
+
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
305
|
+
-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
306
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
307
|
+
}
|
308
|
+
|
309
|
+
|
310
|
+
/*********************************************
|
311
|
+
* CONTROLS
|
312
|
+
*********************************************/
|
313
|
+
|
314
|
+
.reveal .controls {
|
315
|
+
display: none;
|
316
|
+
position: fixed;
|
317
|
+
width: 100px;
|
318
|
+
height: 100px;
|
319
|
+
z-index: 30;
|
320
|
+
|
321
|
+
right: 0;
|
322
|
+
bottom: 0;
|
323
|
+
}
|
324
|
+
|
325
|
+
.reveal .controls a {
|
326
|
+
font-size: 30px;
|
327
|
+
position: absolute;
|
328
|
+
opacity: 0.1;
|
329
|
+
color: #fff;
|
330
|
+
}
|
331
|
+
.reveal .controls a.enabled {
|
332
|
+
opacity: 0.6;
|
333
|
+
color: hsl(185, 85%, 70%);
|
334
|
+
|
335
|
+
text-shadow: 0px 0px 2px hsla(185, 45%, 70%, 0.3);
|
336
|
+
}
|
337
|
+
.reveal .controls a.enabled:active {
|
338
|
+
margin-top: 1px;
|
339
|
+
}
|
340
|
+
|
341
|
+
.reveal .controls .left {
|
342
|
+
top: 30px;
|
343
|
+
}
|
344
|
+
|
345
|
+
.reveal .controls .right {
|
346
|
+
left: 60px;
|
347
|
+
top: 30px;
|
348
|
+
}
|
349
|
+
|
350
|
+
.reveal .controls .up {
|
351
|
+
left: 30px;
|
352
|
+
}
|
353
|
+
|
354
|
+
.reveal .controls .down {
|
355
|
+
left: 30px;
|
356
|
+
top: 60px;
|
357
|
+
|
358
|
+
}
|
359
|
+
|
360
|
+
|
361
|
+
/*********************************************
|
362
|
+
* PROGRESS BAR
|
363
|
+
*********************************************/
|
364
|
+
|
365
|
+
.reveal .progress {
|
366
|
+
position: fixed;
|
367
|
+
display: none;
|
368
|
+
height: 3px;
|
369
|
+
width: 100%;
|
370
|
+
bottom: 0;
|
371
|
+
left: 0;
|
372
|
+
|
373
|
+
background: rgba(0,0,0,0.2);
|
374
|
+
}
|
375
|
+
|
376
|
+
.reveal .progress span {
|
377
|
+
display: block;
|
378
|
+
background: hsl(185, 85%, 50%);
|
379
|
+
height: 100%;
|
380
|
+
width: 0px;
|
381
|
+
|
382
|
+
-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
383
|
+
-moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
384
|
+
-ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
385
|
+
-o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
386
|
+
transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
387
|
+
}
|
388
|
+
|
389
|
+
/*********************************************
|
390
|
+
* ROLLING LINKS
|
391
|
+
*********************************************/
|
392
|
+
|
393
|
+
.reveal .roll {
|
394
|
+
display: inline-block;
|
395
|
+
overflow: hidden;
|
396
|
+
|
397
|
+
vertical-align: top;
|
398
|
+
|
399
|
+
-webkit-perspective: 400px;
|
400
|
+
-moz-perspective: 400px;
|
401
|
+
-ms-perspective: 400px;
|
402
|
+
perspective: 400px;
|
403
|
+
|
404
|
+
-webkit-perspective-origin: 50% 50%;
|
405
|
+
-moz-perspective-origin: 50% 50%;
|
406
|
+
-ms-perspective-origin: 50% 50%;
|
407
|
+
perspective-origin: 50% 50%;
|
408
|
+
}
|
409
|
+
.reveal .roll:hover {
|
410
|
+
background: none;
|
411
|
+
text-shadow: none;
|
412
|
+
}
|
413
|
+
.reveal .roll span {
|
414
|
+
display: block;
|
415
|
+
position: relative;
|
416
|
+
padding: 0 2px;
|
417
|
+
|
418
|
+
pointer-events: none;
|
419
|
+
|
420
|
+
-webkit-transition: all 400ms ease;
|
421
|
+
-moz-transition: all 400ms ease;
|
422
|
+
-ms-transition: all 400ms ease;
|
423
|
+
transition: all 400ms ease;
|
424
|
+
|
425
|
+
-webkit-transform-origin: 50% 0%;
|
426
|
+
-moz-transform-origin: 50% 0%;
|
427
|
+
-ms-transform-origin: 50% 0%;
|
428
|
+
transform-origin: 50% 0%;
|
429
|
+
|
430
|
+
-webkit-transform-style: preserve-3d;
|
431
|
+
-moz-transform-style: preserve-3d;
|
432
|
+
-ms-transform-style: preserve-3d;
|
433
|
+
transform-style: preserve-3d;
|
434
|
+
}
|
435
|
+
.reveal .roll:hover span {
|
436
|
+
background: rgba(0,0,0,0.5);
|
437
|
+
|
438
|
+
-webkit-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
439
|
+
-moz-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
440
|
+
-ms-transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
441
|
+
transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );
|
442
|
+
}
|
443
|
+
.reveal .roll span:after {
|
444
|
+
content: attr(data-title);
|
445
|
+
|
446
|
+
display: block;
|
447
|
+
position: absolute;
|
448
|
+
left: 0;
|
449
|
+
top: 0;
|
450
|
+
padding: 0 2px;
|
451
|
+
|
452
|
+
color: #fff;
|
453
|
+
background: hsl(185, 60%, 35%);
|
454
|
+
|
455
|
+
-webkit-transform-origin: 50% 0%;
|
456
|
+
-moz-transform-origin: 50% 0%;
|
457
|
+
-ms-transform-origin: 50% 0%;
|
458
|
+
transform-origin: 50% 0%;
|
459
|
+
|
460
|
+
-webkit-transform: translate3d( 0px, 105%, 0px ) rotateX( -90deg );
|
461
|
+
-moz-transform: translate3d( 0px, 105%, 0px ) rotateX( -90deg );
|
462
|
+
-ms-transform: translate3d( 0px, 105%, 0px ) rotateX( -90deg );
|
463
|
+
transform: translate3d( 0px, 105%, 0px ) rotateX( -90deg );
|
464
|
+
}
|
465
|
+
|
466
|
+
|
467
|
+
/*********************************************
|
468
|
+
* SLIDES
|
469
|
+
*********************************************/
|
470
|
+
|
471
|
+
.reveal .slides {
|
472
|
+
position: absolute;
|
473
|
+
width: 900px;
|
474
|
+
height: 600px;
|
475
|
+
|
476
|
+
left: 50%;
|
477
|
+
top: 50%;
|
478
|
+
margin-left: -450px;
|
479
|
+
margin-top: -320px;
|
480
|
+
padding: 20px 0px;
|
481
|
+
|
482
|
+
text-align: center;
|
483
|
+
|
484
|
+
-webkit-transition: -webkit-perspective .4s ease;
|
485
|
+
-moz-transition: -moz-perspective .4s ease;
|
486
|
+
-ms-transition: -ms-perspective .4s ease;
|
487
|
+
-o-transition: -o-perspective .4s ease;
|
488
|
+
transition: perspective .4s ease;
|
489
|
+
|
490
|
+
-webkit-perspective: 600px;
|
491
|
+
-moz-perspective: 600px;
|
492
|
+
-ms-perspective: 600px;
|
493
|
+
perspective: 600px;
|
494
|
+
|
495
|
+
-webkit-perspective-origin: 50% 25%;
|
496
|
+
-moz-perspective-origin: 50% 25%;
|
497
|
+
-ms-perspective-origin: 50% 25%;
|
498
|
+
perspective-origin: 50% 25%;
|
499
|
+
}
|
500
|
+
|
501
|
+
.reveal .slides>section,
|
502
|
+
.reveal .slides>section>section {
|
503
|
+
display: none;
|
504
|
+
position: absolute;
|
505
|
+
width: 100%;
|
506
|
+
min-height: 600px;
|
507
|
+
|
508
|
+
z-index: 10;
|
509
|
+
|
510
|
+
-webkit-transform-style: preserve-3d;
|
511
|
+
-moz-transform-style: preserve-3d;
|
512
|
+
-ms-transform-style: preserve-3d;
|
513
|
+
transform-style: preserve-3d;
|
514
|
+
|
515
|
+
-webkit-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
516
|
+
-moz-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
517
|
+
-ms-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
518
|
+
-o-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
519
|
+
transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
520
|
+
}
|
521
|
+
|
522
|
+
.reveal .slides>section.present {
|
523
|
+
display: block;
|
524
|
+
z-index: 11;
|
525
|
+
opacity: 1;
|
526
|
+
}
|
527
|
+
|
528
|
+
|
529
|
+
/*********************************************
|
530
|
+
* DEFAULT TRANSITION
|
531
|
+
*********************************************/
|
532
|
+
|
533
|
+
.reveal .slides>section.past {
|
534
|
+
display: block;
|
535
|
+
opacity: 0;
|
536
|
+
|
537
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
538
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
539
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
540
|
+
transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);
|
541
|
+
}
|
542
|
+
.reveal .slides>section.future {
|
543
|
+
display: block;
|
544
|
+
opacity: 0;
|
545
|
+
|
546
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
547
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
548
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
549
|
+
transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);
|
550
|
+
}
|
551
|
+
|
552
|
+
.reveal .slides>section>section.past {
|
553
|
+
display: block;
|
554
|
+
opacity: 0;
|
555
|
+
|
556
|
+
-webkit-transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0);
|
557
|
+
-moz-transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0);
|
558
|
+
-ms-transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0);
|
559
|
+
transform: translate3d(0, -50%, 0) rotateX(70deg) translate3d(0, -50%, 0);
|
560
|
+
}
|
561
|
+
.reveal .slides>section>section.future {
|
562
|
+
display: block;
|
563
|
+
opacity: 0;
|
564
|
+
|
565
|
+
-webkit-transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0);
|
566
|
+
-moz-transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0);
|
567
|
+
-ms-transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0);
|
568
|
+
transform: translate3d(0, 50%, 0) rotateX(-70deg) translate3d(0, 50%, 0);
|
569
|
+
}
|
570
|
+
|
571
|
+
|
572
|
+
/*********************************************
|
573
|
+
* CONCAVE TRANSITION
|
574
|
+
*********************************************/
|
575
|
+
|
576
|
+
.reveal.concave .slides>section.past {
|
577
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
578
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
579
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
580
|
+
transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);
|
581
|
+
}
|
582
|
+
.reveal.concave .slides>section.future {
|
583
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
584
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
585
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
586
|
+
transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);
|
587
|
+
}
|
588
|
+
|
589
|
+
.reveal.concave .slides>section>section.past {
|
590
|
+
-webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
591
|
+
-moz-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
592
|
+
-ms-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
593
|
+
transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);
|
594
|
+
}
|
595
|
+
.reveal.concave .slides>section>section.future {
|
596
|
+
-webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
597
|
+
-moz-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
598
|
+
-ms-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
599
|
+
transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);
|
600
|
+
}
|
601
|
+
|
602
|
+
|
603
|
+
/*********************************************
|
604
|
+
* LINEAR TRANSITION
|
605
|
+
*********************************************/
|
606
|
+
|
607
|
+
.reveal.linear .slides>section.past {
|
608
|
+
-webkit-transform: translate(-150%, 0);
|
609
|
+
-moz-transform: translate(-150%, 0);
|
610
|
+
-ms-transform: translate(-150%, 0);
|
611
|
+
-o-transform: translate(-150%, 0);
|
612
|
+
transform: translate(-150%, 0);
|
613
|
+
}
|
614
|
+
.reveal.linear .slides>section.future {
|
615
|
+
-webkit-transform: translate(150%, 0);
|
616
|
+
-moz-transform: translate(150%, 0);
|
617
|
+
-ms-transform: translate(150%, 0);
|
618
|
+
-o-transform: translate(150%, 0);
|
619
|
+
transform: translate(150%, 0);
|
620
|
+
}
|
621
|
+
|
622
|
+
.reveal.linear .slides>section>section.past {
|
623
|
+
-webkit-transform: translate(0, -150%);
|
624
|
+
-moz-transform: translate(0, -150%);
|
625
|
+
-ms-transform: translate(0, -150%);
|
626
|
+
-o-transform: translate(0, -150%);
|
627
|
+
transform: translate(0, -150%);
|
628
|
+
}
|
629
|
+
.reveal.linear .slides>section>section.future {
|
630
|
+
-webkit-transform: translate(0, 150%);
|
631
|
+
-moz-transform: translate(0, 150%);
|
632
|
+
-ms-transform: translate(0, 150%);
|
633
|
+
-o-transform: translate(0, 150%);
|
634
|
+
transform: translate(0, 150%);
|
635
|
+
}
|
636
|
+
|
637
|
+
/*********************************************
|
638
|
+
* BOX TRANSITION
|
639
|
+
*********************************************/
|
640
|
+
|
641
|
+
.reveal.cube .slides {
|
642
|
+
margin-top: -350px;
|
643
|
+
|
644
|
+
-webkit-perspective-origin: 50% 25%;
|
645
|
+
-moz-perspective-origin: 50% 25%;
|
646
|
+
-ms-perspective-origin: 50% 25%;
|
647
|
+
perspective-origin: 50% 25%;
|
648
|
+
|
649
|
+
-webkit-perspective: 1300px;
|
650
|
+
-moz-perspective: 1300px;
|
651
|
+
-ms-perspective: 1300px;
|
652
|
+
perspective: 1300px;
|
653
|
+
}
|
654
|
+
|
655
|
+
.reveal.cube .slides section {
|
656
|
+
padding: 30px;
|
657
|
+
|
658
|
+
-webkit-backface-visibility: hidden;
|
659
|
+
-moz-backface-visibility: hidden;
|
660
|
+
-ms-backface-visibility: hidden;
|
661
|
+
backface-visibility: hidden;
|
662
|
+
|
663
|
+
-webkit-box-sizing: border-box;
|
664
|
+
-moz-box-sizing: border-box;
|
665
|
+
box-sizing: border-box;
|
666
|
+
}
|
667
|
+
.reveal.cube .slides section:not(.stack):before {
|
668
|
+
content: '';
|
669
|
+
position: absolute;
|
670
|
+
display: block;
|
671
|
+
width: 100%;
|
672
|
+
height: 100%;
|
673
|
+
left: 0;
|
674
|
+
top: 0;
|
675
|
+
background: #232628;
|
676
|
+
border-radius: 4px;
|
677
|
+
|
678
|
+
-webkit-transform: translateZ( -20px );
|
679
|
+
-moz-transform: translateZ( -20px );
|
680
|
+
-ms-transform: translateZ( -20px );
|
681
|
+
-o-transform: translateZ( -20px );
|
682
|
+
transform: translateZ( -20px );
|
683
|
+
}
|
684
|
+
.reveal.cube .slides section:not(.stack):after {
|
685
|
+
content: '';
|
686
|
+
position: absolute;
|
687
|
+
display: block;
|
688
|
+
width: 90%;
|
689
|
+
height: 30px;
|
690
|
+
left: 5%;
|
691
|
+
bottom: 0;
|
692
|
+
background: none;
|
693
|
+
z-index: 1;
|
694
|
+
|
695
|
+
border-radius: 4px;
|
696
|
+
box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
|
697
|
+
|
698
|
+
-webkit-transform: translateZ(-90px) rotateX( 65deg );
|
699
|
+
-moz-transform: translateZ(-90px) rotateX( 65deg );
|
700
|
+
-ms-transform: translateZ(-90px) rotateX( 65deg );
|
701
|
+
-o-transform: translateZ(-90px) rotateX( 65deg );
|
702
|
+
transform: translateZ(-90px) rotateX( 65deg );
|
703
|
+
}
|
704
|
+
|
705
|
+
.reveal.cube .slides>section.stack {
|
706
|
+
padding: 0;
|
707
|
+
background: none;
|
708
|
+
}
|
709
|
+
|
710
|
+
.reveal.cube .slides>section.past {
|
711
|
+
-webkit-transform-origin: 100% 0%;
|
712
|
+
-moz-transform-origin: 100% 0%;
|
713
|
+
-ms-transform-origin: 100% 0%;
|
714
|
+
transform-origin: 100% 0%;
|
715
|
+
|
716
|
+
-webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
717
|
+
-moz-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
718
|
+
-ms-transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
719
|
+
transform: translate3d(-100%, 0, 0) rotateY(-90deg);
|
720
|
+
}
|
721
|
+
|
722
|
+
.reveal.cube .slides>section.future {
|
723
|
+
-webkit-transform-origin: 0% 0%;
|
724
|
+
-moz-transform-origin: 0% 0%;
|
725
|
+
-ms-transform-origin: 0% 0%;
|
726
|
+
transform-origin: 0% 0%;
|
727
|
+
|
728
|
+
-webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);
|
729
|
+
-moz-transform: translate3d(100%, 0, 0) rotateY(90deg);
|
730
|
+
-ms-transform: translate3d(100%, 0, 0) rotateY(90deg);
|
731
|
+
transform: translate3d(100%, 0, 0) rotateY(90deg);
|
732
|
+
}
|
733
|
+
|
734
|
+
.reveal.cube .slides>section>section.past {
|
735
|
+
-webkit-transform-origin: 0% 100%;
|
736
|
+
-moz-transform-origin: 0% 100%;
|
737
|
+
-ms-transform-origin: 0% 100%;
|
738
|
+
transform-origin: 0% 100%;
|
739
|
+
|
740
|
+
-webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);
|
741
|
+
-moz-transform: translate3d(0, -100%, 0) rotateX(90deg);
|
742
|
+
-ms-transform: translate3d(0, -100%, 0) rotateX(90deg);
|
743
|
+
transform: translate3d(0, -100%, 0) rotateX(90deg);
|
744
|
+
}
|
745
|
+
|
746
|
+
.reveal.cube .slides>section>section.future {
|
747
|
+
-webkit-transform-origin: 0% 0%;
|
748
|
+
-moz-transform-origin: 0% 0%;
|
749
|
+
-ms-transform-origin: 0% 0%;
|
750
|
+
transform-origin: 0% 0%;
|
751
|
+
|
752
|
+
-webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
753
|
+
-moz-transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
754
|
+
-ms-transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
755
|
+
transform: translate3d(0, 100%, 0) rotateX(-90deg);
|
756
|
+
}
|
757
|
+
|
758
|
+
|
759
|
+
/*********************************************
|
760
|
+
* PAGE TRANSITION
|
761
|
+
*********************************************/
|
762
|
+
|
763
|
+
.reveal.page .slides {
|
764
|
+
margin-top: -350px;
|
765
|
+
|
766
|
+
-webkit-perspective-origin: 50% 50%;
|
767
|
+
-moz-perspective-origin: 50% 50%;
|
768
|
+
-ms-perspective-origin: 50% 50%;
|
769
|
+
perspective-origin: 50% 50%;
|
770
|
+
|
771
|
+
-webkit-perspective: 3000px;
|
772
|
+
-moz-perspective: 3000px;
|
773
|
+
-ms-perspective: 3000px;
|
774
|
+
perspective: 3000px;
|
775
|
+
}
|
776
|
+
|
777
|
+
.reveal.page .slides section {
|
778
|
+
padding: 30px;
|
779
|
+
|
780
|
+
-webkit-box-sizing: border-box;
|
781
|
+
-moz-box-sizing: border-box;
|
782
|
+
box-sizing: border-box;
|
783
|
+
}
|
784
|
+
.reveal.page .slides section.past {
|
785
|
+
z-index: 12;
|
786
|
+
}
|
787
|
+
.reveal.page .slides section:not(.stack):before {
|
788
|
+
content: '';
|
789
|
+
position: absolute;
|
790
|
+
display: block;
|
791
|
+
width: 100%;
|
792
|
+
height: 100%;
|
793
|
+
left: 0;
|
794
|
+
top: 0;
|
795
|
+
background: #232628;
|
796
|
+
|
797
|
+
-webkit-transform: translateZ( -20px );
|
798
|
+
-moz-transform: translateZ( -20px );
|
799
|
+
-ms-transform: translateZ( -20px );
|
800
|
+
-o-transform: translateZ( -20px );
|
801
|
+
transform: translateZ( -20px );
|
802
|
+
}
|
803
|
+
.reveal.page .slides section:not(.stack):after {
|
804
|
+
content: '';
|
805
|
+
position: absolute;
|
806
|
+
display: block;
|
807
|
+
width: 90%;
|
808
|
+
height: 30px;
|
809
|
+
left: 5%;
|
810
|
+
bottom: 0;
|
811
|
+
background: none;
|
812
|
+
z-index: 1;
|
813
|
+
|
814
|
+
border-radius: 4px;
|
815
|
+
box-shadow: 0px 95px 25px rgba(0,0,0,0.2);
|
816
|
+
|
817
|
+
-webkit-transform: translateZ(-90px) rotateX( 65deg );
|
818
|
+
}
|
819
|
+
|
820
|
+
.reveal.page .slides>section.stack {
|
821
|
+
padding: 0;
|
822
|
+
background: none;
|
823
|
+
}
|
824
|
+
|
825
|
+
.reveal.page .slides>section.past {
|
826
|
+
-webkit-transform-origin: 0% 0%;
|
827
|
+
-moz-transform-origin: 0% 0%;
|
828
|
+
-ms-transform-origin: 0% 0%;
|
829
|
+
transform-origin: 0% 0%;
|
830
|
+
|
831
|
+
-webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
832
|
+
-moz-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
833
|
+
-ms-transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
834
|
+
transform: translate3d(-40%, 0, 0) rotateY(-80deg);
|
835
|
+
}
|
836
|
+
|
837
|
+
.reveal.page .slides>section.future {
|
838
|
+
-webkit-transform-origin: 100% 0%;
|
839
|
+
-moz-transform-origin: 100% 0%;
|
840
|
+
-ms-transform-origin: 100% 0%;
|
841
|
+
transform-origin: 100% 0%;
|
842
|
+
|
843
|
+
-webkit-transform: translate3d(0, 0, 0);
|
844
|
+
-moz-transform: translate3d(0, 0, 0);
|
845
|
+
-ms-transform: translate3d(0, 0, 0);
|
846
|
+
transform: translate3d(0, 0, 0);
|
847
|
+
}
|
848
|
+
|
849
|
+
.reveal.page .slides>section>section.past {
|
850
|
+
-webkit-transform-origin: 0% 0%;
|
851
|
+
-moz-transform-origin: 0% 0%;
|
852
|
+
-ms-transform-origin: 0% 0%;
|
853
|
+
transform-origin: 0% 0%;
|
854
|
+
|
855
|
+
-webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);
|
856
|
+
-moz-transform: translate3d(0, -40%, 0) rotateX(80deg);
|
857
|
+
-ms-transform: translate3d(0, -40%, 0) rotateX(80deg);
|
858
|
+
transform: translate3d(0, -40%, 0) rotateX(80deg);
|
859
|
+
}
|
860
|
+
|
861
|
+
.reveal.page .slides>section>section.future {
|
862
|
+
-webkit-transform-origin: 0% 100%;
|
863
|
+
-moz-transform-origin: 0% 100%;
|
864
|
+
-ms-transform-origin: 0% 100%;
|
865
|
+
transform-origin: 0% 100%;
|
866
|
+
|
867
|
+
-webkit-transform: translate3d(0, 0, 0);
|
868
|
+
-moz-transform: translate3d(0, 0, 0);
|
869
|
+
-ms-transform: translate3d(0, 0, 0);
|
870
|
+
transform: translate3d(0, 0, 0);
|
871
|
+
}
|
872
|
+
|
873
|
+
|
874
|
+
/*********************************************
|
875
|
+
* NEON THEME
|
876
|
+
*********************************************/
|
877
|
+
|
878
|
+
.theme-neon .reveal a,
|
879
|
+
.theme-neon .reveal a:hover,
|
880
|
+
.theme-neon .reveal .controls a.enabled {
|
881
|
+
color: #5de048;
|
882
|
+
}
|
883
|
+
|
884
|
+
.theme-neon .reveal .progress span,
|
885
|
+
.theme-neon .reveal .roll span:after {
|
886
|
+
background: #5de048;
|
887
|
+
}
|
888
|
+
|
889
|
+
.theme-neon .reveal a.image:hover img {
|
890
|
+
border-color: #5de048;
|
891
|
+
}
|
892
|
+
|
893
|
+
|
894
|
+
/*********************************************
|
895
|
+
* BEIGE THEME
|
896
|
+
*********************************************/
|
897
|
+
|
898
|
+
.theme-beige body {
|
899
|
+
color: #333;
|
900
|
+
|
901
|
+
background: #f7f3de;
|
902
|
+
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(247,242,211,1) 100%);
|
903
|
+
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(247,242,211,1)));
|
904
|
+
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
|
905
|
+
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
|
906
|
+
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
|
907
|
+
background: radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
|
908
|
+
}
|
909
|
+
|
910
|
+
.theme-beige .reveal h1,
|
911
|
+
.theme-beige .reveal h2,
|
912
|
+
.theme-beige .reveal h3,
|
913
|
+
.theme-beige .reveal h4,
|
914
|
+
.theme-beige .reveal h5,
|
915
|
+
.theme-beige .reveal h6 {
|
916
|
+
color: #333;
|
917
|
+
text-shadow: none;
|
918
|
+
}
|
919
|
+
|
920
|
+
.theme-beige .reveal a,
|
921
|
+
.theme-beige .reveal a:hover,
|
922
|
+
.theme-beige .reveal .controls a.enabled {
|
923
|
+
color: #8b743d;
|
924
|
+
}
|
925
|
+
|
926
|
+
.theme-beige .reveal .progress span,
|
927
|
+
.theme-beige .reveal .roll span:after {
|
928
|
+
background: #8b743d;
|
929
|
+
}
|
930
|
+
|
931
|
+
.theme-beige .reveal a.image:hover img {
|
932
|
+
border-color: #8b743d;
|
933
|
+
}
|
934
|
+
|
935
|
+
|
936
|
+
/*********************************************
|
937
|
+
* OVERVIEW
|
938
|
+
*********************************************/
|
939
|
+
|
940
|
+
.reveal.overview .slides {
|
941
|
+
-webkit-perspective: 700px;
|
942
|
+
-moz-perspective: 700px;
|
943
|
+
-ms-perspective: 700px;
|
944
|
+
perspective: 700px;
|
945
|
+
}
|
946
|
+
|
947
|
+
.reveal.overview .slides section {
|
948
|
+
padding: 20px 0;
|
949
|
+
opacity: 1;
|
950
|
+
cursor: pointer;
|
951
|
+
background: rgba(0,0,0,0.1);
|
952
|
+
}
|
953
|
+
.reveal.overview .slides section .fragment {
|
954
|
+
opacity: 1;
|
955
|
+
}
|
956
|
+
.reveal.overview .slides section:after,
|
957
|
+
.reveal.overview .slides section:before {
|
958
|
+
display: none !important;
|
959
|
+
}
|
960
|
+
.reveal.overview .slides section>section {
|
961
|
+
opacity: 1;
|
962
|
+
cursor: pointer;
|
963
|
+
}
|
964
|
+
.reveal.overview .slides section:hover {
|
965
|
+
background: rgba(0,0,0,0.3);
|
966
|
+
}
|
967
|
+
|
968
|
+
.reveal.overview .slides section.present {
|
969
|
+
background: rgba(0,0,0,0.3);
|
970
|
+
}
|
971
|
+
.reveal.overview .slides>section.stack {
|
972
|
+
background: none;
|
973
|
+
padding: 0;
|
974
|
+
}
|
975
|
+
|
976
|
+
|
977
|
+
/*********************************************
|
978
|
+
* FALLBACK
|
979
|
+
*********************************************/
|
980
|
+
|
981
|
+
.no-transforms {
|
982
|
+
overflow-y: auto;
|
983
|
+
}
|
984
|
+
|
985
|
+
.no-transforms .slides section {
|
986
|
+
-webkit-transform: none;
|
987
|
+
-moz-transform: none;
|
988
|
+
-ms-transform: none;
|
989
|
+
transform: none;
|
990
|
+
|
991
|
+
display: block!important;
|
992
|
+
opacity: 1!important;
|
993
|
+
position: relative!important;
|
994
|
+
}
|
995
|
+
|
996
|
+
|
997
|
+
/*********************************************
|
998
|
+
* DEFAULT STATES
|
999
|
+
*********************************************/
|
1000
|
+
|
1001
|
+
.state-background {
|
1002
|
+
position: absolute;
|
1003
|
+
width: 100%;
|
1004
|
+
height: 100%;
|
1005
|
+
background: rgba( 0, 0, 0, 0 );
|
1006
|
+
|
1007
|
+
-webkit-transition: background 800ms ease;
|
1008
|
+
-moz-transition: background 800ms ease;
|
1009
|
+
-ms-transition: background 800ms ease;
|
1010
|
+
-o-transition: background 800ms ease;
|
1011
|
+
transition: background 800ms ease;
|
1012
|
+
}
|
1013
|
+
.alert .state-background {
|
1014
|
+
background: rgba( 200, 50, 30, 0.6 );
|
1015
|
+
}
|
1016
|
+
.soothe .state-background {
|
1017
|
+
background: rgba( 50, 200, 90, 0.4 );
|
1018
|
+
}
|
1019
|
+
.blackout .state-background {
|
1020
|
+
background: rgba( 0, 0, 0, 0.6 );
|
1021
|
+
}
|
1022
|
+
|
1023
|
+
/*********************************************
|
1024
|
+
* SPEAKER NOTES
|
1025
|
+
*********************************************/
|
1026
|
+
|
1027
|
+
.reveal aside.notes {
|
1028
|
+
display: none;
|
1029
|
+
}
|