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,1481 @@
|
|
1
|
+
/* line 17, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
2
|
+
html, body, div, span, applet, object, iframe,
|
3
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
4
|
+
a, abbr, acronym, address, big, cite, code,
|
5
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
6
|
+
small, strike, strong, sub, sup, tt, var,
|
7
|
+
b, u, i, center,
|
8
|
+
dl, dt, dd, ol, ul, li,
|
9
|
+
fieldset, form, label, legend,
|
10
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
11
|
+
article, aside, canvas, details, embed,
|
12
|
+
figure, figcaption, footer, header, hgroup,
|
13
|
+
menu, nav, output, ruby, section, summary,
|
14
|
+
time, mark, audio, video {
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
border: 0;
|
18
|
+
font-size: 100%;
|
19
|
+
font: inherit;
|
20
|
+
vertical-align: baseline;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* line 20, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
24
|
+
body {
|
25
|
+
line-height: 1;
|
26
|
+
}
|
27
|
+
|
28
|
+
/* line 22, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
29
|
+
ol, ul {
|
30
|
+
list-style: none;
|
31
|
+
}
|
32
|
+
|
33
|
+
/* line 24, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
34
|
+
table {
|
35
|
+
border-collapse: collapse;
|
36
|
+
border-spacing: 0;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* line 26, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
40
|
+
caption, th, td {
|
41
|
+
text-align: left;
|
42
|
+
font-weight: normal;
|
43
|
+
vertical-align: middle;
|
44
|
+
}
|
45
|
+
|
46
|
+
/* line 28, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
47
|
+
q, blockquote {
|
48
|
+
quotes: none;
|
49
|
+
}
|
50
|
+
/* line 101, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
51
|
+
q:before, q:after, blockquote:before, blockquote:after {
|
52
|
+
content: "";
|
53
|
+
content: none;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* line 30, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
57
|
+
a img {
|
58
|
+
border: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* line 114, ../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
62
|
+
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
|
63
|
+
display: block;
|
64
|
+
}
|
65
|
+
|
66
|
+
/**
|
67
|
+
* Base SlideDeck Styles
|
68
|
+
*/
|
69
|
+
/* line 48, ../scss/_base.scss */
|
70
|
+
html {
|
71
|
+
height: 100%;
|
72
|
+
overflow: hidden;
|
73
|
+
}
|
74
|
+
|
75
|
+
/* line 53, ../scss/_base.scss */
|
76
|
+
body {
|
77
|
+
margin: 0;
|
78
|
+
padding: 0;
|
79
|
+
opacity: 0;
|
80
|
+
height: 100%;
|
81
|
+
min-height: 740px;
|
82
|
+
width: 100%;
|
83
|
+
overflow: hidden;
|
84
|
+
color: #fff;
|
85
|
+
-webkit-font-smoothing: antialiased;
|
86
|
+
-moz-font-smoothing: antialiased;
|
87
|
+
-ms-font-smoothing: antialiased;
|
88
|
+
-o-font-smoothing: antialiased;
|
89
|
+
-webkit-transition: opacity 800ms ease-in 100ms;
|
90
|
+
-moz-transition: opacity 800ms ease-in 100ms;
|
91
|
+
-ms-transition: opacity 800ms ease-in 100ms;
|
92
|
+
-o-transition: opacity 800ms ease-in 100ms;
|
93
|
+
transition: opacity 800ms ease-in 100ms;
|
94
|
+
}
|
95
|
+
/* line 69, ../scss/_base.scss */
|
96
|
+
body.loaded {
|
97
|
+
opacity: 1 !important;
|
98
|
+
}
|
99
|
+
|
100
|
+
/* line 74, ../scss/_base.scss */
|
101
|
+
input, button {
|
102
|
+
vertical-align: middle;
|
103
|
+
}
|
104
|
+
|
105
|
+
/* line 78, ../scss/_base.scss */
|
106
|
+
slides > slide[hidden] {
|
107
|
+
display: none !important;
|
108
|
+
}
|
109
|
+
|
110
|
+
/* line 82, ../scss/_base.scss */
|
111
|
+
slides {
|
112
|
+
width: 100%;
|
113
|
+
height: 100%;
|
114
|
+
position: absolute;
|
115
|
+
left: 0;
|
116
|
+
top: 0;
|
117
|
+
-webkit-transform: translate3d(0, 0, 0);
|
118
|
+
-moz-transform: translate3d(0, 0, 0);
|
119
|
+
-ms-transform: translate3d(0, 0, 0);
|
120
|
+
-o-transform: translate3d(0, 0, 0);
|
121
|
+
transform: translate3d(0, 0, 0);
|
122
|
+
-webkit-perspective: 1000;
|
123
|
+
perspective: 1000;
|
124
|
+
-webkit-transform-style: preserve-3d;
|
125
|
+
transform-style: preserve-3d;
|
126
|
+
-webkit-transition: opacity 800ms ease-in 100ms;
|
127
|
+
-moz-transition: opacity 800ms ease-in 100ms;
|
128
|
+
-ms-transition: opacity 800ms ease-in 100ms;
|
129
|
+
-o-transition: opacity 800ms ease-in 100ms;
|
130
|
+
transition: opacity 800ms ease-in 100ms;
|
131
|
+
}
|
132
|
+
|
133
|
+
/* line 94, ../scss/_base.scss */
|
134
|
+
slides > slide {
|
135
|
+
display: block;
|
136
|
+
position: absolute;
|
137
|
+
overflow: hidden;
|
138
|
+
left: 50%;
|
139
|
+
top: 50%;
|
140
|
+
-webkit-box-sizing: border-box;
|
141
|
+
-moz-box-sizing: border-box;
|
142
|
+
box-sizing: border-box;
|
143
|
+
}
|
144
|
+
|
145
|
+
/* Slide styles */
|
146
|
+
/*article.fill iframe {
|
147
|
+
position: absolute;
|
148
|
+
left: 0;
|
149
|
+
top: 0;
|
150
|
+
width: 100%;
|
151
|
+
height: 100%;
|
152
|
+
|
153
|
+
border: 0;
|
154
|
+
margin: 0;
|
155
|
+
|
156
|
+
@include border-radius(10px);
|
157
|
+
|
158
|
+
z-index: -1;
|
159
|
+
}
|
160
|
+
|
161
|
+
slide.fill {
|
162
|
+
background-repeat: no-repeat;
|
163
|
+
@include background-size(cover);
|
164
|
+
}
|
165
|
+
|
166
|
+
slide.fill img {
|
167
|
+
position: absolute;
|
168
|
+
left: 0;
|
169
|
+
top: 0;
|
170
|
+
min-width: 100%;
|
171
|
+
min-height: 100%;
|
172
|
+
|
173
|
+
z-index: -1;
|
174
|
+
}
|
175
|
+
*/
|
176
|
+
/**
|
177
|
+
* Theme Styles
|
178
|
+
*/
|
179
|
+
/* line 58, ../scss/default.scss */
|
180
|
+
::selection {
|
181
|
+
color: white;
|
182
|
+
background-color: #ffd14d;
|
183
|
+
text-shadow: none;
|
184
|
+
}
|
185
|
+
|
186
|
+
/* line 64, ../scss/default.scss */
|
187
|
+
::-webkit-scrollbar {
|
188
|
+
height: 16px;
|
189
|
+
overflow: visible;
|
190
|
+
width: 16px;
|
191
|
+
}
|
192
|
+
|
193
|
+
/* line 69, ../scss/default.scss */
|
194
|
+
::-webkit-scrollbar-thumb {
|
195
|
+
background-color: rgba(0, 0, 0, 0.1);
|
196
|
+
background-clip: padding-box;
|
197
|
+
border: solid transparent;
|
198
|
+
min-height: 28px;
|
199
|
+
padding: 100px 0 0;
|
200
|
+
-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
|
201
|
+
-moz-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
|
202
|
+
box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
|
203
|
+
border-width: 1px 1px 1px 6px;
|
204
|
+
}
|
205
|
+
|
206
|
+
/* line 78, ../scss/default.scss */
|
207
|
+
::-webkit-scrollbar-thumb:hover {
|
208
|
+
background-color: rgba(0, 0, 0, 0.5);
|
209
|
+
}
|
210
|
+
|
211
|
+
/* line 81, ../scss/default.scss */
|
212
|
+
::-webkit-scrollbar-button {
|
213
|
+
height: 0;
|
214
|
+
width: 0;
|
215
|
+
}
|
216
|
+
|
217
|
+
/* line 85, ../scss/default.scss */
|
218
|
+
::-webkit-scrollbar-track {
|
219
|
+
background-clip: padding-box;
|
220
|
+
border: solid transparent;
|
221
|
+
border-width: 0 0 0 4px;
|
222
|
+
}
|
223
|
+
|
224
|
+
/* line 90, ../scss/default.scss */
|
225
|
+
::-webkit-scrollbar-corner {
|
226
|
+
background: transparent;
|
227
|
+
}
|
228
|
+
|
229
|
+
/* line 94, ../scss/default.scss */
|
230
|
+
body {
|
231
|
+
background: black;
|
232
|
+
}
|
233
|
+
|
234
|
+
/* line 98, ../scss/default.scss */
|
235
|
+
slides > slide {
|
236
|
+
display: none;
|
237
|
+
font-family: 'Open Sans', Arial, sans-serif;
|
238
|
+
font-size: 26px;
|
239
|
+
color: #797979;
|
240
|
+
width: 900px;
|
241
|
+
height: 700px;
|
242
|
+
margin-left: -450px;
|
243
|
+
margin-top: -350px;
|
244
|
+
padding: 40px 60px;
|
245
|
+
-webkit-border-radius: 5px;
|
246
|
+
-moz-border-radius: 5px;
|
247
|
+
-ms-border-radius: 5px;
|
248
|
+
-o-border-radius: 5px;
|
249
|
+
border-radius: 5px;
|
250
|
+
-webkit-transition: all 0.6s ease-in-out;
|
251
|
+
-moz-transition: all 0.6s ease-in-out;
|
252
|
+
-ms-transition: all 0.6s ease-in-out;
|
253
|
+
-o-transition: all 0.6s ease-in-out;
|
254
|
+
transition: all 0.6s ease-in-out;
|
255
|
+
}
|
256
|
+
/* line 119, ../scss/default.scss */
|
257
|
+
slides > slide.far-past {
|
258
|
+
display: none;
|
259
|
+
}
|
260
|
+
/* line 126, ../scss/default.scss */
|
261
|
+
slides > slide.past {
|
262
|
+
display: block;
|
263
|
+
opacity: 0;
|
264
|
+
}
|
265
|
+
/* line 133, ../scss/default.scss */
|
266
|
+
slides > slide.current {
|
267
|
+
display: block;
|
268
|
+
opacity: 1;
|
269
|
+
}
|
270
|
+
/* line 139, ../scss/default.scss */
|
271
|
+
slides > slide.current .auto-fadein {
|
272
|
+
opacity: 1;
|
273
|
+
}
|
274
|
+
/* line 143, ../scss/default.scss */
|
275
|
+
slides > slide.current .gdbar {
|
276
|
+
-webkit-background-size: 100% 100%;
|
277
|
+
-moz-background-size: 100% 100%;
|
278
|
+
-o-background-size: 100% 100%;
|
279
|
+
background-size: 100% 100%;
|
280
|
+
}
|
281
|
+
/* line 148, ../scss/default.scss */
|
282
|
+
slides > slide.next {
|
283
|
+
display: block;
|
284
|
+
opacity: 0;
|
285
|
+
pointer-events: none;
|
286
|
+
}
|
287
|
+
/* line 156, ../scss/default.scss */
|
288
|
+
slides > slide.far-next {
|
289
|
+
display: none;
|
290
|
+
}
|
291
|
+
/* line 163, ../scss/default.scss */
|
292
|
+
slides > slide.dark {
|
293
|
+
background: #515151 !important;
|
294
|
+
}
|
295
|
+
/* line 183, ../scss/default.scss */
|
296
|
+
slides > slide:not(.nobackground):after {
|
297
|
+
font-size: 12pt;
|
298
|
+
content: attr(data-slide-num) "/" attr(data-total-slides);
|
299
|
+
position: absolute;
|
300
|
+
bottom: 20px;
|
301
|
+
right: 60px;
|
302
|
+
line-height: 1.9;
|
303
|
+
}
|
304
|
+
/* line 194, ../scss/default.scss */
|
305
|
+
slides > slide.title-slide:after {
|
306
|
+
content: '';
|
307
|
+
background: url(../images/io2012_logo.png) no-repeat 100% 50%;
|
308
|
+
-webkit-background-size: contain;
|
309
|
+
-moz-background-size: contain;
|
310
|
+
-o-background-size: contain;
|
311
|
+
background-size: contain;
|
312
|
+
position: absolute;
|
313
|
+
bottom: 40px;
|
314
|
+
right: 40px;
|
315
|
+
width: 100%;
|
316
|
+
height: 60px;
|
317
|
+
}
|
318
|
+
/* line 206, ../scss/default.scss */
|
319
|
+
slides > slide.backdrop {
|
320
|
+
z-index: -10;
|
321
|
+
display: block !important;
|
322
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(85%, #ffffff), color-stop(100%, #e6e6e6));
|
323
|
+
background: -webkit-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
324
|
+
background: -moz-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
325
|
+
background: -o-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
326
|
+
background: -ms-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
327
|
+
background: linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
328
|
+
background-color: white;
|
329
|
+
}
|
330
|
+
/* line 211, ../scss/default.scss */
|
331
|
+
slides > slide.backdrop:after, slides > slide.backdrop:before {
|
332
|
+
display: none;
|
333
|
+
}
|
334
|
+
/* line 216, ../scss/default.scss */
|
335
|
+
slides > slide > hgroup + article {
|
336
|
+
margin-top: 45px;
|
337
|
+
}
|
338
|
+
/* line 220, ../scss/default.scss */
|
339
|
+
slides > slide > hgroup + article.flexbox.vcenter, slides > slide > hgroup + article.flexbox.vleft, slides > slide > hgroup + article.flexbox.vright {
|
340
|
+
height: 80%;
|
341
|
+
}
|
342
|
+
/* line 225, ../scss/default.scss */
|
343
|
+
slides > slide > hgroup + article p {
|
344
|
+
margin-bottom: 1em;
|
345
|
+
}
|
346
|
+
/* line 230, ../scss/default.scss */
|
347
|
+
slides > slide > article:only-child {
|
348
|
+
height: 100%;
|
349
|
+
}
|
350
|
+
/* line 233, ../scss/default.scss */
|
351
|
+
slides > slide > article:only-child > iframe {
|
352
|
+
height: 98%;
|
353
|
+
}
|
354
|
+
|
355
|
+
/* line 239, ../scss/default.scss */
|
356
|
+
slides.layout-faux-widescreen > slide {
|
357
|
+
padding: 40px 160px;
|
358
|
+
}
|
359
|
+
|
360
|
+
/* line 248, ../scss/default.scss */
|
361
|
+
slides.layout-widescreen > slide,
|
362
|
+
slides.layout-faux-widescreen > slide {
|
363
|
+
margin-left: -550px;
|
364
|
+
width: 1100px;
|
365
|
+
}
|
366
|
+
/* line 253, ../scss/default.scss */
|
367
|
+
slides.layout-widescreen > slide.far-past,
|
368
|
+
slides.layout-faux-widescreen > slide.far-past {
|
369
|
+
display: block;
|
370
|
+
display: none;
|
371
|
+
-webkit-transform: translate(-2260px);
|
372
|
+
-moz-transform: translate(-2260px);
|
373
|
+
-ms-transform: translate(-2260px);
|
374
|
+
-o-transform: translate(-2260px);
|
375
|
+
transform: translate(-2260px);
|
376
|
+
-webkit-transform: translate3d(-2260px, 0, 0);
|
377
|
+
-moz-transform: translate3d(-2260px, 0, 0);
|
378
|
+
-ms-transform: translate3d(-2260px, 0, 0);
|
379
|
+
-o-transform: translate3d(-2260px, 0, 0);
|
380
|
+
transform: translate3d(-2260px, 0, 0);
|
381
|
+
}
|
382
|
+
/* line 260, ../scss/default.scss */
|
383
|
+
slides.layout-widescreen > slide.past,
|
384
|
+
slides.layout-faux-widescreen > slide.past {
|
385
|
+
display: block;
|
386
|
+
opacity: 0;
|
387
|
+
}
|
388
|
+
/* line 267, ../scss/default.scss */
|
389
|
+
slides.layout-widescreen > slide.current,
|
390
|
+
slides.layout-faux-widescreen > slide.current {
|
391
|
+
display: block;
|
392
|
+
opacity: 1;
|
393
|
+
}
|
394
|
+
/* line 274, ../scss/default.scss */
|
395
|
+
slides.layout-widescreen > slide.next,
|
396
|
+
slides.layout-faux-widescreen > slide.next {
|
397
|
+
display: block;
|
398
|
+
opacity: 0;
|
399
|
+
pointer-events: none;
|
400
|
+
}
|
401
|
+
/* line 282, ../scss/default.scss */
|
402
|
+
slides.layout-widescreen > slide.far-next,
|
403
|
+
slides.layout-faux-widescreen > slide.far-next {
|
404
|
+
display: block;
|
405
|
+
display: none;
|
406
|
+
-webkit-transform: translate(2260px);
|
407
|
+
-moz-transform: translate(2260px);
|
408
|
+
-ms-transform: translate(2260px);
|
409
|
+
-o-transform: translate(2260px);
|
410
|
+
transform: translate(2260px);
|
411
|
+
-webkit-transform: translate3d(2260px, 0, 0);
|
412
|
+
-moz-transform: translate3d(2260px, 0, 0);
|
413
|
+
-ms-transform: translate3d(2260px, 0, 0);
|
414
|
+
-o-transform: translate3d(2260px, 0, 0);
|
415
|
+
transform: translate3d(2260px, 0, 0);
|
416
|
+
}
|
417
|
+
/* line 289, ../scss/default.scss */
|
418
|
+
slides.layout-widescreen #prev-slide-area,
|
419
|
+
slides.layout-faux-widescreen #prev-slide-area {
|
420
|
+
margin-left: -650px;
|
421
|
+
}
|
422
|
+
/* line 293, ../scss/default.scss */
|
423
|
+
slides.layout-widescreen #next-slide-area,
|
424
|
+
slides.layout-faux-widescreen #next-slide-area {
|
425
|
+
margin-left: 550px;
|
426
|
+
}
|
427
|
+
|
428
|
+
/* line 298, ../scss/default.scss */
|
429
|
+
b {
|
430
|
+
font-weight: 600;
|
431
|
+
}
|
432
|
+
|
433
|
+
/* line 302, ../scss/default.scss */
|
434
|
+
a {
|
435
|
+
color: #2a7cdf;
|
436
|
+
text-decoration: none;
|
437
|
+
border-bottom: 1px solid rgba(42, 124, 223, 0.5);
|
438
|
+
}
|
439
|
+
/* line 307, ../scss/default.scss */
|
440
|
+
a:hover {
|
441
|
+
color: black !important;
|
442
|
+
}
|
443
|
+
|
444
|
+
/* line 312, ../scss/default.scss */
|
445
|
+
h1, h2, h3 {
|
446
|
+
font-weight: 600;
|
447
|
+
}
|
448
|
+
|
449
|
+
/* line 316, ../scss/default.scss */
|
450
|
+
h2 {
|
451
|
+
font-size: 45px;
|
452
|
+
line-height: 45px;
|
453
|
+
letter-spacing: -2px;
|
454
|
+
color: #515151;
|
455
|
+
}
|
456
|
+
|
457
|
+
/* line 323, ../scss/default.scss */
|
458
|
+
h3 {
|
459
|
+
font-size: 30px;
|
460
|
+
letter-spacing: -1px;
|
461
|
+
line-height: 2;
|
462
|
+
font-weight: inherit;
|
463
|
+
color: #797979;
|
464
|
+
}
|
465
|
+
|
466
|
+
/* line 331, ../scss/default.scss */
|
467
|
+
ul {
|
468
|
+
margin-left: 1.2em;
|
469
|
+
margin-bottom: 1em;
|
470
|
+
position: relative;
|
471
|
+
}
|
472
|
+
/* line 336, ../scss/default.scss */
|
473
|
+
ul li {
|
474
|
+
margin-bottom: 0.5em;
|
475
|
+
}
|
476
|
+
/* line 339, ../scss/default.scss */
|
477
|
+
ul li ul {
|
478
|
+
margin-left: 2em;
|
479
|
+
margin-bottom: 0;
|
480
|
+
}
|
481
|
+
/* line 343, ../scss/default.scss */
|
482
|
+
ul li ul li:before {
|
483
|
+
content: '-';
|
484
|
+
font-weight: 600;
|
485
|
+
}
|
486
|
+
/* line 350, ../scss/default.scss */
|
487
|
+
ul > li:before {
|
488
|
+
content: '·';
|
489
|
+
margin-left: -1em;
|
490
|
+
position: absolute;
|
491
|
+
font-weight: 600;
|
492
|
+
}
|
493
|
+
/* line 357, ../scss/default.scss */
|
494
|
+
ul ul {
|
495
|
+
margin-top: .5em;
|
496
|
+
}
|
497
|
+
|
498
|
+
/* line 364, ../scss/default.scss */
|
499
|
+
.highlight-code slide.current pre > * {
|
500
|
+
opacity: 0.25;
|
501
|
+
-webkit-transition: opacity 0.5s ease-in;
|
502
|
+
-moz-transition: opacity 0.5s ease-in;
|
503
|
+
-ms-transition: opacity 0.5s ease-in;
|
504
|
+
-o-transition: opacity 0.5s ease-in;
|
505
|
+
transition: opacity 0.5s ease-in;
|
506
|
+
}
|
507
|
+
/* line 368, ../scss/default.scss */
|
508
|
+
.highlight-code slide.current b {
|
509
|
+
opacity: 1;
|
510
|
+
}
|
511
|
+
|
512
|
+
/* line 373, ../scss/default.scss */
|
513
|
+
pre {
|
514
|
+
font-family: 'Inconsolata', 'Courier New', monospace;
|
515
|
+
font-size: 20px;
|
516
|
+
line-height: 28px;
|
517
|
+
padding: 10px 0 10px 60px;
|
518
|
+
letter-spacing: -1px;
|
519
|
+
margin-bottom: 20px;
|
520
|
+
width: 106%;
|
521
|
+
left: -60px;
|
522
|
+
position: relative;
|
523
|
+
-webkit-box-sizing: border-box;
|
524
|
+
-moz-box-sizing: border-box;
|
525
|
+
box-sizing: border-box;
|
526
|
+
/*overflow: hidden;*/
|
527
|
+
}
|
528
|
+
/* line 387, ../scss/default.scss */
|
529
|
+
pre[data-lang]:after {
|
530
|
+
content: attr(data-lang);
|
531
|
+
background-color: #a9a9a9;
|
532
|
+
right: 0;
|
533
|
+
top: 0;
|
534
|
+
position: absolute;
|
535
|
+
font-size: 16pt;
|
536
|
+
color: white;
|
537
|
+
padding: 2px 25px;
|
538
|
+
text-transform: uppercase;
|
539
|
+
}
|
540
|
+
|
541
|
+
/* line 400, ../scss/default.scss */
|
542
|
+
pre[data-lang="go"] {
|
543
|
+
color: #333;
|
544
|
+
}
|
545
|
+
|
546
|
+
/* line 404, ../scss/default.scss */
|
547
|
+
code {
|
548
|
+
font-size: 95%;
|
549
|
+
font-family: 'Inconsolata', 'Courier New', monospace;
|
550
|
+
color: black;
|
551
|
+
}
|
552
|
+
|
553
|
+
/* line 410, ../scss/default.scss */
|
554
|
+
iframe {
|
555
|
+
width: 100%;
|
556
|
+
height: 530px;
|
557
|
+
background: white;
|
558
|
+
border: 1px solid #e6e6e6;
|
559
|
+
-webkit-box-sizing: border-box;
|
560
|
+
-moz-box-sizing: border-box;
|
561
|
+
box-sizing: border-box;
|
562
|
+
}
|
563
|
+
|
564
|
+
/* line 418, ../scss/default.scss */
|
565
|
+
dt {
|
566
|
+
font-weight: bold;
|
567
|
+
}
|
568
|
+
|
569
|
+
/* line 422, ../scss/default.scss */
|
570
|
+
button {
|
571
|
+
display: inline-block;
|
572
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, #f9f9f9), color-stop(70%, #e3e3e3));
|
573
|
+
background: -webkit-linear-gradient(#f9f9f9 40%, #e3e3e3 70%);
|
574
|
+
background: -moz-linear-gradient(#f9f9f9 40%, #e3e3e3 70%);
|
575
|
+
background: -o-linear-gradient(#f9f9f9 40%, #e3e3e3 70%);
|
576
|
+
background: -ms-linear-gradient(#f9f9f9 40%, #e3e3e3 70%);
|
577
|
+
background: linear-gradient(#f9f9f9 40%, #e3e3e3 70%);
|
578
|
+
border: 1px solid #a9a9a9;
|
579
|
+
-webkit-border-radius: 3px;
|
580
|
+
-moz-border-radius: 3px;
|
581
|
+
-ms-border-radius: 3px;
|
582
|
+
-o-border-radius: 3px;
|
583
|
+
border-radius: 3px;
|
584
|
+
padding: 5px 8px;
|
585
|
+
outline: none;
|
586
|
+
white-space: nowrap;
|
587
|
+
-webkit-user-select: none;
|
588
|
+
-moz-user-select: none;
|
589
|
+
user-select: none;
|
590
|
+
cursor: pointer;
|
591
|
+
text-shadow: 1px 1px white;
|
592
|
+
font-size: 10pt;
|
593
|
+
}
|
594
|
+
|
595
|
+
/* line 436, ../scss/default.scss */
|
596
|
+
button:not(:disabled):hover {
|
597
|
+
border-color: #515151;
|
598
|
+
}
|
599
|
+
|
600
|
+
/* line 440, ../scss/default.scss */
|
601
|
+
button:not(:disabled):active {
|
602
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, #e3e3e3), color-stop(70%, #f9f9f9));
|
603
|
+
background: -webkit-linear-gradient(#e3e3e3 40%, #f9f9f9 70%);
|
604
|
+
background: -moz-linear-gradient(#e3e3e3 40%, #f9f9f9 70%);
|
605
|
+
background: -o-linear-gradient(#e3e3e3 40%, #f9f9f9 70%);
|
606
|
+
background: -ms-linear-gradient(#e3e3e3 40%, #f9f9f9 70%);
|
607
|
+
background: linear-gradient(#e3e3e3 40%, #f9f9f9 70%);
|
608
|
+
}
|
609
|
+
|
610
|
+
/* line 444, ../scss/default.scss */
|
611
|
+
:disabled {
|
612
|
+
color: #a9a9a9;
|
613
|
+
}
|
614
|
+
|
615
|
+
/* line 448, ../scss/default.scss */
|
616
|
+
.blue {
|
617
|
+
color: #4387fd;
|
618
|
+
}
|
619
|
+
|
620
|
+
/* line 451, ../scss/default.scss */
|
621
|
+
.blue2 {
|
622
|
+
color: #3c8ef3;
|
623
|
+
}
|
624
|
+
|
625
|
+
/* line 454, ../scss/default.scss */
|
626
|
+
.blue3 {
|
627
|
+
color: #2a7cdf;
|
628
|
+
}
|
629
|
+
|
630
|
+
/* line 457, ../scss/default.scss */
|
631
|
+
.yellow {
|
632
|
+
color: #ffd14d;
|
633
|
+
}
|
634
|
+
|
635
|
+
/* line 460, ../scss/default.scss */
|
636
|
+
.yellow2 {
|
637
|
+
color: #f9cc46;
|
638
|
+
}
|
639
|
+
|
640
|
+
/* line 463, ../scss/default.scss */
|
641
|
+
.yellow3 {
|
642
|
+
color: #f6c000;
|
643
|
+
}
|
644
|
+
|
645
|
+
/* line 466, ../scss/default.scss */
|
646
|
+
.green {
|
647
|
+
color: #0da861;
|
648
|
+
}
|
649
|
+
|
650
|
+
/* line 469, ../scss/default.scss */
|
651
|
+
.green2 {
|
652
|
+
color: #00a86d;
|
653
|
+
}
|
654
|
+
|
655
|
+
/* line 472, ../scss/default.scss */
|
656
|
+
.green3 {
|
657
|
+
color: #009f5d;
|
658
|
+
}
|
659
|
+
|
660
|
+
/* line 475, ../scss/default.scss */
|
661
|
+
.red {
|
662
|
+
color: #f44a3f;
|
663
|
+
}
|
664
|
+
|
665
|
+
/* line 478, ../scss/default.scss */
|
666
|
+
.red2 {
|
667
|
+
color: #e0543e;
|
668
|
+
}
|
669
|
+
|
670
|
+
/* line 481, ../scss/default.scss */
|
671
|
+
.red3 {
|
672
|
+
color: #d94d3a;
|
673
|
+
}
|
674
|
+
|
675
|
+
/* line 484, ../scss/default.scss */
|
676
|
+
.gray {
|
677
|
+
color: #e6e6e6;
|
678
|
+
}
|
679
|
+
|
680
|
+
/* line 487, ../scss/default.scss */
|
681
|
+
.gray2 {
|
682
|
+
color: #a9a9a9;
|
683
|
+
}
|
684
|
+
|
685
|
+
/* line 490, ../scss/default.scss */
|
686
|
+
.gray3 {
|
687
|
+
color: #797979;
|
688
|
+
}
|
689
|
+
|
690
|
+
/* line 493, ../scss/default.scss */
|
691
|
+
.gray4 {
|
692
|
+
color: #515151;
|
693
|
+
}
|
694
|
+
|
695
|
+
/* line 497, ../scss/default.scss */
|
696
|
+
.white {
|
697
|
+
color: white !important;
|
698
|
+
}
|
699
|
+
|
700
|
+
/* line 500, ../scss/default.scss */
|
701
|
+
.black {
|
702
|
+
color: black !important;
|
703
|
+
}
|
704
|
+
|
705
|
+
/* line 504, ../scss/default.scss */
|
706
|
+
.columns-2 {
|
707
|
+
-webkit-column-count: 2;
|
708
|
+
-moz-column-count: 2;
|
709
|
+
-o-column-count: 2;
|
710
|
+
column-count: 2;
|
711
|
+
}
|
712
|
+
|
713
|
+
/* line 508, ../scss/default.scss */
|
714
|
+
table {
|
715
|
+
width: 100%;
|
716
|
+
border-collapse: -moz-initial;
|
717
|
+
border-collapse: initial;
|
718
|
+
border-spacing: 2px;
|
719
|
+
border-bottom: 1px solid #797979;
|
720
|
+
}
|
721
|
+
/* line 515, ../scss/default.scss */
|
722
|
+
table tr > td:first-child, table th {
|
723
|
+
font-weight: 600;
|
724
|
+
color: #515151;
|
725
|
+
}
|
726
|
+
/* line 520, ../scss/default.scss */
|
727
|
+
table tr:nth-child(odd) {
|
728
|
+
background-color: #e6e6e6;
|
729
|
+
}
|
730
|
+
/* line 524, ../scss/default.scss */
|
731
|
+
table th {
|
732
|
+
color: white;
|
733
|
+
font-size: 18px;
|
734
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, #4387fd), color-stop(80%, #2a7cdf)) no-repeat;
|
735
|
+
background: -webkit-linear-gradient(top, #4387fd 40%, #2a7cdf 80%) no-repeat;
|
736
|
+
background: -moz-linear-gradient(top, #4387fd 40%, #2a7cdf 80%) no-repeat;
|
737
|
+
background: -o-linear-gradient(top, #4387fd 40%, #2a7cdf 80%) no-repeat;
|
738
|
+
background: -ms-linear-gradient(top, #4387fd 40%, #2a7cdf 80%) no-repeat;
|
739
|
+
background: linear-gradient(top, #4387fd 40%, #2a7cdf 80%) no-repeat;
|
740
|
+
}
|
741
|
+
/* line 530, ../scss/default.scss */
|
742
|
+
table td, table th {
|
743
|
+
font-size: 18px;
|
744
|
+
padding: 1em 0.5em;
|
745
|
+
}
|
746
|
+
/* line 535, ../scss/default.scss */
|
747
|
+
table td.highlight {
|
748
|
+
color: #515151;
|
749
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, #ffd14d), color-stop(80%, #f6c000)) no-repeat;
|
750
|
+
background: -webkit-linear-gradient(top, #ffd14d 40%, #f6c000 80%) no-repeat;
|
751
|
+
background: -moz-linear-gradient(top, #ffd14d 40%, #f6c000 80%) no-repeat;
|
752
|
+
background: -o-linear-gradient(top, #ffd14d 40%, #f6c000 80%) no-repeat;
|
753
|
+
background: -ms-linear-gradient(top, #ffd14d 40%, #f6c000 80%) no-repeat;
|
754
|
+
background: linear-gradient(top, #ffd14d 40%, #f6c000 80%) no-repeat;
|
755
|
+
}
|
756
|
+
/* line 540, ../scss/default.scss */
|
757
|
+
table.rows {
|
758
|
+
border-bottom: none;
|
759
|
+
border-right: 1px solid #797979;
|
760
|
+
}
|
761
|
+
|
762
|
+
/* line 546, ../scss/default.scss */
|
763
|
+
q {
|
764
|
+
font-size: 45px;
|
765
|
+
line-height: 72px;
|
766
|
+
}
|
767
|
+
/* line 550, ../scss/default.scss */
|
768
|
+
q:before {
|
769
|
+
content: '“';
|
770
|
+
position: absolute;
|
771
|
+
margin-left: -0.5em;
|
772
|
+
}
|
773
|
+
/* line 555, ../scss/default.scss */
|
774
|
+
q:after {
|
775
|
+
content: '”';
|
776
|
+
position: absolute;
|
777
|
+
margin-left: 0.1em;
|
778
|
+
}
|
779
|
+
|
780
|
+
/* line 562, ../scss/default.scss */
|
781
|
+
slide.fill {
|
782
|
+
background-repeat: no-repeat;
|
783
|
+
-webkit-border-radius: 5px;
|
784
|
+
-moz-border-radius: 5px;
|
785
|
+
-ms-border-radius: 5px;
|
786
|
+
-o-border-radius: 5px;
|
787
|
+
border-radius: 5px;
|
788
|
+
-webkit-background-size: cover;
|
789
|
+
-moz-background-size: cover;
|
790
|
+
-o-background-size: cover;
|
791
|
+
background-size: cover;
|
792
|
+
}
|
793
|
+
|
794
|
+
/* Size variants */
|
795
|
+
/* line 571, ../scss/default.scss */
|
796
|
+
article.smaller p, article.smaller ul {
|
797
|
+
font-size: 20px;
|
798
|
+
line-height: 24px;
|
799
|
+
letter-spacing: 0;
|
800
|
+
}
|
801
|
+
/* line 577, ../scss/default.scss */
|
802
|
+
article.smaller table td, article.smaller table th {
|
803
|
+
font-size: 14px;
|
804
|
+
}
|
805
|
+
/* line 581, ../scss/default.scss */
|
806
|
+
article.smaller pre {
|
807
|
+
font-size: 15px;
|
808
|
+
line-height: 20px;
|
809
|
+
letter-spacing: 0;
|
810
|
+
}
|
811
|
+
/* line 586, ../scss/default.scss */
|
812
|
+
article.smaller q {
|
813
|
+
font-size: 40px;
|
814
|
+
line-height: 48px;
|
815
|
+
}
|
816
|
+
/* line 590, ../scss/default.scss */
|
817
|
+
article.smaller q:before, article.smaller q:after {
|
818
|
+
font-size: 60px;
|
819
|
+
}
|
820
|
+
|
821
|
+
/* Builds */
|
822
|
+
/* line 599, ../scss/default.scss */
|
823
|
+
.build > * {
|
824
|
+
-webkit-transition: opacity 0.5s ease-in-out 0.2s;
|
825
|
+
-moz-transition: opacity 0.5s ease-in-out 0.2s;
|
826
|
+
-ms-transition: opacity 0.5s ease-in-out 0.2s;
|
827
|
+
-o-transition: opacity 0.5s ease-in-out 0.2s;
|
828
|
+
transition: opacity 0.5s ease-in-out 0.2s;
|
829
|
+
}
|
830
|
+
/* line 603, ../scss/default.scss */
|
831
|
+
.build .to-build {
|
832
|
+
opacity: 0;
|
833
|
+
}
|
834
|
+
/* line 607, ../scss/default.scss */
|
835
|
+
.build .build-fade {
|
836
|
+
opacity: 0.3;
|
837
|
+
}
|
838
|
+
/* line 610, ../scss/default.scss */
|
839
|
+
.build .build-fade:hover {
|
840
|
+
opacity: 1.0;
|
841
|
+
}
|
842
|
+
|
843
|
+
/* line 617, ../scss/default.scss */
|
844
|
+
.popup .next .build .to-build {
|
845
|
+
opacity: 1;
|
846
|
+
}
|
847
|
+
/* line 621, ../scss/default.scss */
|
848
|
+
.popup .next .build .build-fade {
|
849
|
+
opacity: 1;
|
850
|
+
}
|
851
|
+
|
852
|
+
/* Pretty print */
|
853
|
+
/* line 629, ../scss/default.scss */
|
854
|
+
.prettyprint .str,
|
855
|
+
.prettyprint .atv {
|
856
|
+
/* a markup attribute value */
|
857
|
+
color: #009f5d;
|
858
|
+
}
|
859
|
+
|
860
|
+
/* line 633, ../scss/default.scss */
|
861
|
+
.prettyprint .kwd,
|
862
|
+
.prettyprint .tag {
|
863
|
+
/* a markup tag name */
|
864
|
+
color: #0066cc;
|
865
|
+
}
|
866
|
+
|
867
|
+
/* line 636, ../scss/default.scss */
|
868
|
+
.prettyprint .com {
|
869
|
+
/* a comment */
|
870
|
+
color: #797979;
|
871
|
+
font-style: italic;
|
872
|
+
}
|
873
|
+
|
874
|
+
/* line 640, ../scss/default.scss */
|
875
|
+
.prettyprint .lit {
|
876
|
+
/* a literal value */
|
877
|
+
color: #7f0000;
|
878
|
+
}
|
879
|
+
|
880
|
+
/* line 645, ../scss/default.scss */
|
881
|
+
.prettyprint .pun,
|
882
|
+
.prettyprint .opn,
|
883
|
+
.prettyprint .clo {
|
884
|
+
color: #515151;
|
885
|
+
}
|
886
|
+
|
887
|
+
/* line 651, ../scss/default.scss */
|
888
|
+
.prettyprint .typ,
|
889
|
+
.prettyprint .atn,
|
890
|
+
.prettyprint .dec,
|
891
|
+
.prettyprint .var {
|
892
|
+
/* a declaration; a variable name */
|
893
|
+
color: #d94d3a;
|
894
|
+
}
|
895
|
+
|
896
|
+
/* line 654, ../scss/default.scss */
|
897
|
+
.prettyprint .pln {
|
898
|
+
color: #515151;
|
899
|
+
}
|
900
|
+
|
901
|
+
/* line 658, ../scss/default.scss */
|
902
|
+
.note {
|
903
|
+
position: absolute;
|
904
|
+
z-index: 100;
|
905
|
+
width: 100%;
|
906
|
+
height: 100%;
|
907
|
+
top: 0;
|
908
|
+
left: 0;
|
909
|
+
padding: 1em;
|
910
|
+
background: rgba(0, 0, 0, 0.3);
|
911
|
+
opacity: 0;
|
912
|
+
pointer-events: none;
|
913
|
+
display: -webkit-box !important;
|
914
|
+
display: -moz-box !important;
|
915
|
+
display: -ms-box !important;
|
916
|
+
display: -o-box !important;
|
917
|
+
display: box !important;
|
918
|
+
-webkit-box-orient: vertical;
|
919
|
+
-moz-box-orient: vertical;
|
920
|
+
-ms-box-orient: vertical;
|
921
|
+
box-orient: vertical;
|
922
|
+
-webkit-box-align: center;
|
923
|
+
-moz-box-align: center;
|
924
|
+
-ms-box-align: center;
|
925
|
+
box-align: center;
|
926
|
+
-webkit-box-pack: center;
|
927
|
+
-moz-box-pack: center;
|
928
|
+
-ms-box-pack: center;
|
929
|
+
box-pack: center;
|
930
|
+
-webkit-border-radius: 5px;
|
931
|
+
-moz-border-radius: 5px;
|
932
|
+
-ms-border-radius: 5px;
|
933
|
+
-o-border-radius: 5px;
|
934
|
+
border-radius: 5px;
|
935
|
+
-webkit-box-sizing: border-box;
|
936
|
+
-moz-box-sizing: border-box;
|
937
|
+
box-sizing: border-box;
|
938
|
+
-webkit-transform: translateY(350px);
|
939
|
+
-moz-transform: translateY(350px);
|
940
|
+
-ms-transform: translateY(350px);
|
941
|
+
-o-transform: translateY(350px);
|
942
|
+
transform: translateY(350px);
|
943
|
+
-webkit-transition: all 0.4s ease-in-out;
|
944
|
+
-moz-transition: all 0.4s ease-in-out;
|
945
|
+
-ms-transition: all 0.4s ease-in-out;
|
946
|
+
-o-transition: all 0.4s ease-in-out;
|
947
|
+
transition: all 0.4s ease-in-out;
|
948
|
+
}
|
949
|
+
/* line 676, ../scss/default.scss */
|
950
|
+
.note > section {
|
951
|
+
background: #fff;
|
952
|
+
-webkit-border-radius: 5px;
|
953
|
+
-moz-border-radius: 5px;
|
954
|
+
-ms-border-radius: 5px;
|
955
|
+
-o-border-radius: 5px;
|
956
|
+
border-radius: 5px;
|
957
|
+
-webkit-box-shadow: 0 0 10px #797979;
|
958
|
+
-moz-box-shadow: 0 0 10px #797979;
|
959
|
+
box-shadow: 0 0 10px #797979;
|
960
|
+
width: 60%;
|
961
|
+
padding: 2em;
|
962
|
+
}
|
963
|
+
|
964
|
+
/* line 693, ../scss/default.scss */
|
965
|
+
.with-notes.popup slides.layout-widescreen slide.next,
|
966
|
+
.with-notes.popup slides.layout-faux-widescreen slide.next {
|
967
|
+
-webkit-transform: translate3d(690px, 80px, 0) scale(0.35);
|
968
|
+
-moz-transform: translate3d(690px, 80px, 0) scale(0.35);
|
969
|
+
-ms-transform: translate3d(690px, 80px, 0) scale(0.35);
|
970
|
+
-o-transform: translate3d(690px, 80px, 0) scale(0.35);
|
971
|
+
transform: translate3d(690px, 80px, 0) scale(0.35);
|
972
|
+
}
|
973
|
+
/* line 696, ../scss/default.scss */
|
974
|
+
.with-notes.popup slides.layout-widescreen slide .note,
|
975
|
+
.with-notes.popup slides.layout-faux-widescreen slide .note {
|
976
|
+
-webkit-transform: translate3d(300px, 800px, 0) scale(1.5);
|
977
|
+
-moz-transform: translate3d(300px, 800px, 0) scale(1.5);
|
978
|
+
-ms-transform: translate3d(300px, 800px, 0) scale(1.5);
|
979
|
+
-o-transform: translate3d(300px, 800px, 0) scale(1.5);
|
980
|
+
transform: translate3d(300px, 800px, 0) scale(1.5);
|
981
|
+
}
|
982
|
+
/* line 702, ../scss/default.scss */
|
983
|
+
.with-notes.popup slide {
|
984
|
+
overflow: visible;
|
985
|
+
background: white;
|
986
|
+
-webkit-transition: none;
|
987
|
+
-moz-transition: none;
|
988
|
+
-ms-transition: none;
|
989
|
+
-o-transition: none;
|
990
|
+
transition: none;
|
991
|
+
pointer-events: none;
|
992
|
+
-webkit-transform-origin: 0 0;
|
993
|
+
-moz-transform-origin: 0 0;
|
994
|
+
-ms-transform-origin: 0 0;
|
995
|
+
-o-transform-origin: 0 0;
|
996
|
+
transform-origin: 0 0;
|
997
|
+
}
|
998
|
+
/* line 709, ../scss/default.scss */
|
999
|
+
.with-notes.popup slide:not(.backdrop) {
|
1000
|
+
-webkit-transform: scale(0.6) translate3d(0.5em, 0.5em, 0);
|
1001
|
+
-moz-transform: scale(0.6) translate3d(0.5em, 0.5em, 0);
|
1002
|
+
-ms-transform: scale(0.6) translate3d(0.5em, 0.5em, 0);
|
1003
|
+
-o-transform: scale(0.6) translate3d(0.5em, 0.5em, 0);
|
1004
|
+
transform: scale(0.6) translate3d(0.5em, 0.5em, 0);
|
1005
|
+
-webkit-box-shadow: 0 0 10px #797979;
|
1006
|
+
-moz-box-shadow: 0 0 10px #797979;
|
1007
|
+
box-shadow: 0 0 10px #797979;
|
1008
|
+
}
|
1009
|
+
/* line 714, ../scss/default.scss */
|
1010
|
+
.with-notes.popup slide.backdrop {
|
1011
|
+
background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 600, color-stop(0%, #b1dfff), color-stop(100%, #4387fd));
|
1012
|
+
background-image: -webkit-radial-gradient(50% 50%, #b1dfff 0%, #4387fd 600px);
|
1013
|
+
background-image: -moz-radial-gradient(50% 50%, #b1dfff 0%, #4387fd 600px);
|
1014
|
+
background-image: -o-radial-gradient(50% 50%, #b1dfff 0%, #4387fd 600px);
|
1015
|
+
background-image: -ms-radial-gradient(50% 50%, #b1dfff 0%, #4387fd 600px);
|
1016
|
+
background-image: radial-gradient(50% 50%, #b1dfff 0%, #4387fd 600px);
|
1017
|
+
}
|
1018
|
+
/* line 720, ../scss/default.scss */
|
1019
|
+
.with-notes.popup slide.next {
|
1020
|
+
-webkit-transform: translate3d(570px, 80px, 0) scale(0.35);
|
1021
|
+
-moz-transform: translate3d(570px, 80px, 0) scale(0.35);
|
1022
|
+
-ms-transform: translate3d(570px, 80px, 0) scale(0.35);
|
1023
|
+
-o-transform: translate3d(570px, 80px, 0) scale(0.35);
|
1024
|
+
transform: translate3d(570px, 80px, 0) scale(0.35);
|
1025
|
+
opacity: 1 !important;
|
1026
|
+
}
|
1027
|
+
/* line 724, ../scss/default.scss */
|
1028
|
+
.with-notes.popup slide.next .note {
|
1029
|
+
display: none !important;
|
1030
|
+
}
|
1031
|
+
/* line 730, ../scss/default.scss */
|
1032
|
+
.with-notes.popup .note {
|
1033
|
+
width: 109%;
|
1034
|
+
height: 260px;
|
1035
|
+
background: #e6e6e6;
|
1036
|
+
padding: 0;
|
1037
|
+
-webkit-box-shadow: 0 0 10px #797979;
|
1038
|
+
-moz-box-shadow: 0 0 10px #797979;
|
1039
|
+
box-shadow: 0 0 10px #797979;
|
1040
|
+
-webkit-transform: translate3d(250px, 800px, 0) scale(1.5);
|
1041
|
+
-moz-transform: translate3d(250px, 800px, 0) scale(1.5);
|
1042
|
+
-ms-transform: translate3d(250px, 800px, 0) scale(1.5);
|
1043
|
+
-o-transform: translate3d(250px, 800px, 0) scale(1.5);
|
1044
|
+
transform: translate3d(250px, 800px, 0) scale(1.5);
|
1045
|
+
-webkit-transition: opacity 400ms ease-in-out;
|
1046
|
+
-moz-transition: opacity 400ms ease-in-out;
|
1047
|
+
-ms-transition: opacity 400ms ease-in-out;
|
1048
|
+
-o-transition: opacity 400ms ease-in-out;
|
1049
|
+
transition: opacity 400ms ease-in-out;
|
1050
|
+
}
|
1051
|
+
/* line 741, ../scss/default.scss */
|
1052
|
+
.with-notes.popup .note > section {
|
1053
|
+
background: #fff;
|
1054
|
+
-webkit-border-radius: 5px;
|
1055
|
+
-moz-border-radius: 5px;
|
1056
|
+
-ms-border-radius: 5px;
|
1057
|
+
-o-border-radius: 5px;
|
1058
|
+
border-radius: 5px;
|
1059
|
+
height: 100%;
|
1060
|
+
width: 100%;
|
1061
|
+
-webkit-box-sizing: border-box;
|
1062
|
+
-moz-box-sizing: border-box;
|
1063
|
+
box-sizing: border-box;
|
1064
|
+
-webkit-box-shadow: none;
|
1065
|
+
-moz-box-shadow: none;
|
1066
|
+
box-shadow: none;
|
1067
|
+
overflow: auto;
|
1068
|
+
padding: 1em;
|
1069
|
+
}
|
1070
|
+
/* line 754, ../scss/default.scss */
|
1071
|
+
.with-notes .note {
|
1072
|
+
opacity: 1;
|
1073
|
+
-webkit-transform: translateY(0);
|
1074
|
+
-moz-transform: translateY(0);
|
1075
|
+
-ms-transform: translateY(0);
|
1076
|
+
-o-transform: translateY(0);
|
1077
|
+
transform: translateY(0);
|
1078
|
+
pointer-events: auto;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
/* line 761, ../scss/default.scss */
|
1082
|
+
.source {
|
1083
|
+
font-size: 14px;
|
1084
|
+
color: #a9a9a9;
|
1085
|
+
position: absolute;
|
1086
|
+
bottom: 70px;
|
1087
|
+
left: 60px;
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
/* line 769, ../scss/default.scss */
|
1091
|
+
.centered {
|
1092
|
+
text-align: center;
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
/* line 773, ../scss/default.scss */
|
1096
|
+
.reflect {
|
1097
|
+
-webkit-box-reflect: below 3px -webkit-linear-gradient(rgba(255, 255, 255, 0) 85%, white 150%);
|
1098
|
+
-moz-box-reflect: below 3px -moz-linear-gradient(rgba(255, 255, 255, 0) 85%, white 150%);
|
1099
|
+
-o-box-reflect: below 3px -o-linear-gradient(rgba(255, 255, 255, 0) 85%, white 150%);
|
1100
|
+
-ms-box-reflect: below 3px -ms-linear-gradient(rgba(255, 255, 255, 0) 85%, white 150%);
|
1101
|
+
box-reflect: below 3px linear-gradient(rgba(255, 255, 255, 0) 85%, #ffffff 150%);
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
/* line 781, ../scss/default.scss */
|
1105
|
+
.flexbox {
|
1106
|
+
display: -webkit-box !important;
|
1107
|
+
display: -moz-box !important;
|
1108
|
+
display: -ms-box !important;
|
1109
|
+
display: -o-box !important;
|
1110
|
+
display: box !important;
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
/* line 785, ../scss/default.scss */
|
1114
|
+
.flexbox.vcenter {
|
1115
|
+
-webkit-box-orient: vertical;
|
1116
|
+
-moz-box-orient: vertical;
|
1117
|
+
-ms-box-orient: vertical;
|
1118
|
+
box-orient: vertical;
|
1119
|
+
-webkit-box-align: center;
|
1120
|
+
-moz-box-align: center;
|
1121
|
+
-ms-box-align: center;
|
1122
|
+
box-align: center;
|
1123
|
+
-webkit-box-pack: center;
|
1124
|
+
-moz-box-pack: center;
|
1125
|
+
-ms-box-pack: center;
|
1126
|
+
box-pack: center;
|
1127
|
+
height: 100%;
|
1128
|
+
width: 100%;
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
/* line 791, ../scss/default.scss */
|
1132
|
+
.flexbox.vleft {
|
1133
|
+
-webkit-box-orient: vertical;
|
1134
|
+
-moz-box-orient: vertical;
|
1135
|
+
-ms-box-orient: vertical;
|
1136
|
+
box-orient: vertical;
|
1137
|
+
-webkit-box-align: left;
|
1138
|
+
-moz-box-align: left;
|
1139
|
+
-ms-box-align: left;
|
1140
|
+
box-align: left;
|
1141
|
+
-webkit-box-pack: center;
|
1142
|
+
-moz-box-pack: center;
|
1143
|
+
-ms-box-pack: center;
|
1144
|
+
box-pack: center;
|
1145
|
+
height: 100%;
|
1146
|
+
width: 100%;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
/* line 797, ../scss/default.scss */
|
1150
|
+
.flexbox.vright {
|
1151
|
+
-webkit-box-orient: vertical;
|
1152
|
+
-moz-box-orient: vertical;
|
1153
|
+
-ms-box-orient: vertical;
|
1154
|
+
box-orient: vertical;
|
1155
|
+
-webkit-box-align: end;
|
1156
|
+
-moz-box-align: end;
|
1157
|
+
-ms-box-align: end;
|
1158
|
+
box-align: end;
|
1159
|
+
-webkit-box-pack: center;
|
1160
|
+
-moz-box-pack: center;
|
1161
|
+
-ms-box-pack: center;
|
1162
|
+
box-pack: center;
|
1163
|
+
height: 100%;
|
1164
|
+
width: 100%;
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
/* line 803, ../scss/default.scss */
|
1168
|
+
.auto-fadein {
|
1169
|
+
-webkit-transition: opacity 0.6s ease-in 1s;
|
1170
|
+
-moz-transition: opacity 0.6s ease-in 1s;
|
1171
|
+
-ms-transition: opacity 0.6s ease-in 1s;
|
1172
|
+
-o-transition: opacity 0.6s ease-in 1s;
|
1173
|
+
transition: opacity 0.6s ease-in 1s;
|
1174
|
+
opacity: 0;
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
/* Clickable/tappable areas */
|
1178
|
+
/* line 809, ../scss/default.scss */
|
1179
|
+
.slide-area {
|
1180
|
+
z-index: 1000;
|
1181
|
+
position: absolute;
|
1182
|
+
left: 0;
|
1183
|
+
top: 0;
|
1184
|
+
width: 100px;
|
1185
|
+
height: 700px;
|
1186
|
+
left: 50%;
|
1187
|
+
top: 50%;
|
1188
|
+
cursor: pointer;
|
1189
|
+
margin-top: -350px;
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
/* line 826, ../scss/default.scss */
|
1193
|
+
#prev-slide-area {
|
1194
|
+
margin-left: -550px;
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
/* line 831, ../scss/default.scss */
|
1198
|
+
#next-slide-area {
|
1199
|
+
margin-left: 450px;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
/* ===== SLIDE CONTENT ===== */
|
1203
|
+
/* line 839, ../scss/default.scss */
|
1204
|
+
.logoslide img {
|
1205
|
+
width: 383px;
|
1206
|
+
height: 92px;
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
/* line 845, ../scss/default.scss */
|
1210
|
+
.segue {
|
1211
|
+
padding: 60px 120px;
|
1212
|
+
}
|
1213
|
+
/* line 848, ../scss/default.scss */
|
1214
|
+
.segue h2 {
|
1215
|
+
color: #e6e6e6;
|
1216
|
+
font-size: 60px;
|
1217
|
+
}
|
1218
|
+
/* line 852, ../scss/default.scss */
|
1219
|
+
.segue h3 {
|
1220
|
+
color: #e6e6e6;
|
1221
|
+
line-height: 2.8;
|
1222
|
+
}
|
1223
|
+
/* line 856, ../scss/default.scss */
|
1224
|
+
.segue hgroup {
|
1225
|
+
position: absolute;
|
1226
|
+
bottom: 225px;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
/* line 862, ../scss/default.scss */
|
1230
|
+
.thank-you-slide {
|
1231
|
+
background: #4387fd !important;
|
1232
|
+
color: white;
|
1233
|
+
}
|
1234
|
+
/* line 866, ../scss/default.scss */
|
1235
|
+
.thank-you-slide h2 {
|
1236
|
+
font-size: 60px;
|
1237
|
+
color: inherit;
|
1238
|
+
}
|
1239
|
+
/* line 871, ../scss/default.scss */
|
1240
|
+
.thank-you-slide article > p {
|
1241
|
+
margin-top: 2em;
|
1242
|
+
font-size: 20pt;
|
1243
|
+
}
|
1244
|
+
/* line 876, ../scss/default.scss */
|
1245
|
+
.thank-you-slide > p {
|
1246
|
+
position: absolute;
|
1247
|
+
bottom: 80px;
|
1248
|
+
font-size: 24pt;
|
1249
|
+
line-height: 1.3;
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
/* line 884, ../scss/default.scss */
|
1253
|
+
aside.gdbar {
|
1254
|
+
height: 97px;
|
1255
|
+
width: 215px;
|
1256
|
+
position: absolute;
|
1257
|
+
left: -1px;
|
1258
|
+
top: 125px;
|
1259
|
+
-webkit-border-radius: 0 10px 10px 0;
|
1260
|
+
-moz-border-radius: 0 10px 10px 0;
|
1261
|
+
-ms-border-radius: 0 10px 10px 0;
|
1262
|
+
-o-border-radius: 0 10px 10px 0;
|
1263
|
+
border-radius: 0 10px 10px 0;
|
1264
|
+
background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e6e6e6), color-stop(100%, #e6e6e6)) no-repeat;
|
1265
|
+
background: -webkit-linear-gradient(left, #e6e6e6, #e6e6e6) no-repeat;
|
1266
|
+
background: -moz-linear-gradient(left, #e6e6e6, #e6e6e6) no-repeat;
|
1267
|
+
background: -o-linear-gradient(left, #e6e6e6, #e6e6e6) no-repeat;
|
1268
|
+
background: -ms-linear-gradient(left, #e6e6e6, #e6e6e6) no-repeat;
|
1269
|
+
background: linear-gradient(left, #e6e6e6, #e6e6e6) no-repeat;
|
1270
|
+
-webkit-background-size: 0% 100%;
|
1271
|
+
-moz-background-size: 0% 100%;
|
1272
|
+
-o-background-size: 0% 100%;
|
1273
|
+
background-size: 0% 100%;
|
1274
|
+
-webkit-transition: all 0.5s ease-out 0.5s;
|
1275
|
+
-moz-transition: all 0.5s ease-out 0.5s;
|
1276
|
+
-ms-transition: all 0.5s ease-out 0.5s;
|
1277
|
+
-o-transition: all 0.5s ease-out 0.5s;
|
1278
|
+
transition: all 0.5s ease-out 0.5s;
|
1279
|
+
/* Better to transition only on background-size, but not sure how to do that with the mixin. */
|
1280
|
+
}
|
1281
|
+
/* line 895, ../scss/default.scss */
|
1282
|
+
aside.gdbar.right {
|
1283
|
+
right: 0;
|
1284
|
+
left: -moz-initial;
|
1285
|
+
left: initial;
|
1286
|
+
top: 254px;
|
1287
|
+
/* 96 is height of gray icon bar */
|
1288
|
+
-webkit-transform: rotateZ(180deg);
|
1289
|
+
-moz-transform: rotateZ(180deg);
|
1290
|
+
-ms-transform: rotateZ(180deg);
|
1291
|
+
-o-transform: rotateZ(180deg);
|
1292
|
+
transform: rotateZ(180deg);
|
1293
|
+
}
|
1294
|
+
/* line 902, ../scss/default.scss */
|
1295
|
+
aside.gdbar.right img {
|
1296
|
+
-webkit-transform: rotateZ(180deg);
|
1297
|
+
-moz-transform: rotateZ(180deg);
|
1298
|
+
-ms-transform: rotateZ(180deg);
|
1299
|
+
-o-transform: rotateZ(180deg);
|
1300
|
+
transform: rotateZ(180deg);
|
1301
|
+
}
|
1302
|
+
/* line 907, ../scss/default.scss */
|
1303
|
+
aside.gdbar.bottom {
|
1304
|
+
top: -moz-initial;
|
1305
|
+
top: initial;
|
1306
|
+
bottom: 60px;
|
1307
|
+
}
|
1308
|
+
/* line 913, ../scss/default.scss */
|
1309
|
+
aside.gdbar img {
|
1310
|
+
width: 85px;
|
1311
|
+
height: 85px;
|
1312
|
+
position: absolute;
|
1313
|
+
right: 0;
|
1314
|
+
margin: 8px 15px;
|
1315
|
+
}
|
1316
|
+
|
1317
|
+
/* line 924, ../scss/default.scss */
|
1318
|
+
.title-slide hgroup {
|
1319
|
+
bottom: 100px;
|
1320
|
+
}
|
1321
|
+
/* line 927, ../scss/default.scss */
|
1322
|
+
.title-slide hgroup h1 {
|
1323
|
+
font-size: 65px;
|
1324
|
+
line-height: 1.4;
|
1325
|
+
letter-spacing: -3px;
|
1326
|
+
color: #515151;
|
1327
|
+
}
|
1328
|
+
/* line 934, ../scss/default.scss */
|
1329
|
+
.title-slide hgroup h2 {
|
1330
|
+
font-size: 34px;
|
1331
|
+
color: #a9a9a9;
|
1332
|
+
font-weight: inherit;
|
1333
|
+
}
|
1334
|
+
/* line 940, ../scss/default.scss */
|
1335
|
+
.title-slide hgroup p {
|
1336
|
+
font-size: 20px;
|
1337
|
+
color: #797979;
|
1338
|
+
line-height: 1.3;
|
1339
|
+
margin-top: 2em;
|
1340
|
+
}
|
1341
|
+
|
1342
|
+
/* line 949, ../scss/default.scss */
|
1343
|
+
.quote {
|
1344
|
+
color: #e6e6e6;
|
1345
|
+
}
|
1346
|
+
/* line 952, ../scss/default.scss */
|
1347
|
+
.quote .author {
|
1348
|
+
font-size: 24px;
|
1349
|
+
position: absolute;
|
1350
|
+
bottom: 80px;
|
1351
|
+
line-height: 1.4;
|
1352
|
+
}
|
1353
|
+
|
1354
|
+
/* line 961, ../scss/default.scss */
|
1355
|
+
[data-config-contact] a {
|
1356
|
+
color: white;
|
1357
|
+
border-bottom: none;
|
1358
|
+
}
|
1359
|
+
/* line 965, ../scss/default.scss */
|
1360
|
+
[data-config-contact] span {
|
1361
|
+
width: 115px;
|
1362
|
+
display: inline-block;
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
/* line 974, ../scss/default.scss */
|
1366
|
+
.overview.popup .note {
|
1367
|
+
display: none !important;
|
1368
|
+
}
|
1369
|
+
/* line 980, ../scss/default.scss */
|
1370
|
+
.overview slides slide {
|
1371
|
+
display: block;
|
1372
|
+
cursor: pointer;
|
1373
|
+
opacity: 0.5;
|
1374
|
+
pointer-events: auto !important;
|
1375
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(85%, #ffffff), color-stop(100%, #e6e6e6));
|
1376
|
+
background: -webkit-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1377
|
+
background: -moz-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1378
|
+
background: -o-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1379
|
+
background: -ms-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1380
|
+
background: linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1381
|
+
background-color: white;
|
1382
|
+
}
|
1383
|
+
/* line 981, ../scss/default.scss */
|
1384
|
+
.overview slides slide.backdrop {
|
1385
|
+
display: none !important;
|
1386
|
+
}
|
1387
|
+
/* line 996, ../scss/default.scss */
|
1388
|
+
.overview slides slide.far-past, .overview slides slide.past, .overview slides slide.next, .overview slides slide.far-next, .overview slides slide.far-past {
|
1389
|
+
opacity: 0.5;
|
1390
|
+
display: block;
|
1391
|
+
}
|
1392
|
+
/* line 1001, ../scss/default.scss */
|
1393
|
+
.overview slides slide.current {
|
1394
|
+
opacity: 1;
|
1395
|
+
}
|
1396
|
+
/* line 1007, ../scss/default.scss */
|
1397
|
+
.overview .slide-area {
|
1398
|
+
display: none;
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
@media print {
|
1402
|
+
/* line 1014, ../scss/default.scss */
|
1403
|
+
slides slide {
|
1404
|
+
display: block !important;
|
1405
|
+
position: relative;
|
1406
|
+
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(85%, #ffffff), color-stop(100%, #e6e6e6));
|
1407
|
+
background: -webkit-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1408
|
+
background: -moz-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1409
|
+
background: -o-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1410
|
+
background: -ms-linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1411
|
+
background: linear-gradient(#ffffff, #ffffff 85%, #e6e6e6);
|
1412
|
+
background-color: white;
|
1413
|
+
-webkit-transform: none !important;
|
1414
|
+
-moz-transform: none !important;
|
1415
|
+
-ms-transform: none !important;
|
1416
|
+
-o-transform: none !important;
|
1417
|
+
transform: none !important;
|
1418
|
+
width: 100%;
|
1419
|
+
height: 100%;
|
1420
|
+
page-break-after: always;
|
1421
|
+
top: auto !important;
|
1422
|
+
left: auto !important;
|
1423
|
+
margin-top: 0 !important;
|
1424
|
+
margin-left: 0 !important;
|
1425
|
+
opacity: 1 !important;
|
1426
|
+
color: #555;
|
1427
|
+
}
|
1428
|
+
/* line 1034, ../scss/default.scss */
|
1429
|
+
slides slide.far-past, slides slide.past, slides slide.next, slides slide.far-next, slides slide.far-past, slides slide.current {
|
1430
|
+
opacity: 1 !important;
|
1431
|
+
display: block !important;
|
1432
|
+
}
|
1433
|
+
/* line 1040, ../scss/default.scss */
|
1434
|
+
slides slide .build > * {
|
1435
|
+
-webkit-transition: none;
|
1436
|
+
-moz-transition: none;
|
1437
|
+
-ms-transition: none;
|
1438
|
+
-o-transition: none;
|
1439
|
+
transition: none;
|
1440
|
+
}
|
1441
|
+
/* line 1045, ../scss/default.scss */
|
1442
|
+
slides slide .build .to-build,
|
1443
|
+
slides slide .build .build-fade {
|
1444
|
+
opacity: 1;
|
1445
|
+
}
|
1446
|
+
/* line 1050, ../scss/default.scss */
|
1447
|
+
slides slide .auto-fadein {
|
1448
|
+
opacity: 1 !important;
|
1449
|
+
}
|
1450
|
+
/* line 1054, ../scss/default.scss */
|
1451
|
+
slides slide.backdrop {
|
1452
|
+
display: none !important;
|
1453
|
+
}
|
1454
|
+
/* line 1058, ../scss/default.scss */
|
1455
|
+
slides slide table.rows {
|
1456
|
+
border-right: 0;
|
1457
|
+
}
|
1458
|
+
/* line 1063, ../scss/default.scss */
|
1459
|
+
slides slide[hidden] {
|
1460
|
+
display: none !important;
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
/* line 1068, ../scss/default.scss */
|
1464
|
+
.slide-area {
|
1465
|
+
display: none;
|
1466
|
+
}
|
1467
|
+
|
1468
|
+
/* line 1072, ../scss/default.scss */
|
1469
|
+
.reflect {
|
1470
|
+
-webkit-box-reflect: none;
|
1471
|
+
-moz-box-reflect: none;
|
1472
|
+
-o-box-reflect: none;
|
1473
|
+
-ms-box-reflect: none;
|
1474
|
+
box-reflect: none;
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
/* line 1080, ../scss/default.scss */
|
1478
|
+
pre, code {
|
1479
|
+
font-family: monospace !important;
|
1480
|
+
}
|
1481
|
+
}
|