hyla 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +8 -8
  2. data/Rakefile +6 -2
  3. data/bin/hyla +3 -2
  4. data/lib/hyla/commands/generate.rb +43 -41
  5. data/lib/hyla/configuration.rb +1 -1
  6. data/lib/hyla/project.rb +1 -1
  7. data/lib/resources/assets/revealjs-redhat/image/collapsed.png +0 -0
  8. data/lib/resources/assets/revealjs-redhat/image/expanded.png +0 -0
  9. data/lib/resources/assets/revealjs-redhat/lib/css/conference.css +663 -0
  10. data/lib/resources/assets/revealjs-redhat/lib/css/font-awesome-4.3.0.css +2886 -1098
  11. data/lib/resources/assets/revealjs-redhat/lib/css/gpe.css +746 -180
  12. data/lib/resources/assets/revealjs-redhat/lib/css/print/pdf.css +32 -65
  13. data/lib/resources/assets/revealjs-redhat/lib/css/theme-output.css +1509 -395
  14. data/lib/resources/assets/revealjs-redhat/lib/css/theme-v2-liberation.css +4332 -1366
  15. data/lib/resources/assets/revealjs-redhat/lib/css/theme-v2-overpass.css +4320 -1364
  16. data/lib/resources/assets/revealjs-redhat/lib/js/debug/gpe.js +8 -8
  17. data/lib/resources/assets/revealjs-redhat/lib/js/debug/reveal.js +129 -91
  18. data/lib/resources/assets/revealjs-redhat/lib/js/gpe.min.js +3 -3
  19. data/lib/resources/assets/revealjs-redhat/lib/js/reveal.min.js +18 -13
  20. data/lib/resources/assets/revealjs/css/theme/conference-redhat.css +14 -6
  21. data/lib/resources/assets/revealjs/css/theme/old-gpe.css +670 -181
  22. data/lib/resources/assets/revealjs/js/{reveal.js → debug/reveal.js} +1619 -492
  23. data/lib/resources/assets/revealjs/js/reveal.min.js +342 -9
  24. data/lib/resources/assets/revealjs/lib/css/font-awesome-4.3.0.css +2886 -1098
  25. data/lib/resources/assets/sass/conference.scss +589 -0
  26. data/lib/resources/assets/sass/new-gpe.scss +79 -0
  27. data/lib/resources/backends/slim/revealjs-redhat/block_paragraph.html.slim +18 -6
  28. data/lib/resources/backends/slim/revealjs-redhat/block_ulist.html.slim +25 -9
  29. data/lib/resources/backends/slim/revealjs/document.html.slim +1 -1
  30. data/lib/templates/course/audio.txt +2 -2
  31. data/lib/templates/course/cover.txt +19 -7
  32. data/lib/templates/course/footer.txt +1 -3
  33. data/lib/templates/course/index.txt +2 -2
  34. data/lib/templates/course/labinstructions.txt +1 -3
  35. data/lib/templates/course/objectives.txt +1 -12
  36. data/lib/templates/course/summary.txt +1 -8
  37. metadata +7 -3
@@ -16,9 +16,6 @@
16
16
  }
17
17
 
18
18
  body {
19
- font-size: 18pt;
20
- width: 297mm;
21
- height: 229mm;
22
19
  margin: 0 auto !important;
23
20
  border: 0;
24
21
  padding: 0;
@@ -32,16 +29,13 @@ html {
32
29
  overflow: visible;
33
30
  }
34
31
 
35
- @page {
36
- size: letter landscape;
37
- margin: 0;
38
- }
39
-
40
32
  /* SECTION 2: Remove any elements not needed in print.
41
33
  This would include navigation, ads, sidebars, etc. */
42
34
  .nestedarrow,
43
- .controls,
35
+ .reveal .controls,
44
36
  .reveal .progress,
37
+ .reveal .slide-number,
38
+ .reveal .playback,
45
39
  .reveal.overview,
46
40
  .fork-reveal,
47
41
  .share-reveal,
@@ -52,7 +46,7 @@ html {
52
46
  /* SECTION 3: Set body font face, size, and color.
53
47
  Consider using a serif font for readability. */
54
48
  body, p, td, li, div {
55
- font-size: 18pt;
49
+
56
50
  }
57
51
 
58
52
  /* SECTION 4: Set heading font face, sizes, and color.
@@ -62,22 +56,13 @@ h1,h2,h3,h4,h5,h6 {
62
56
  text-shadow: 0 0 0 #000 !important;
63
57
  }
64
58
 
65
- /* SECTION 5: Make hyperlinks more usable.
66
- Ensure links are underlined, and consider appending
67
- the URL to the end of the link for usability. */
68
- a:link,
69
- a:visited {
70
- font-weight: normal;
71
- text-decoration: underline;
72
- }
73
-
74
59
  .reveal pre code {
75
60
  overflow: hidden !important;
76
- font-family: monospace !important;
61
+ font-family: Courier, 'Courier New', monospace !important;
77
62
  }
78
63
 
79
64
 
80
- /* SECTION 6: more reveal.js specific additions by @skypanther */
65
+ /* SECTION 5: more reveal.js specific additions by @skypanther */
81
66
  ul, ol, div, p {
82
67
  visibility: visible;
83
68
  position: static;
@@ -105,47 +90,41 @@ ul, ol, div, p {
105
90
  overflow: visible;
106
91
  display: block;
107
92
 
108
- text-align: center;
109
-
110
93
  -webkit-perspective: none;
111
- -moz-perspective: none;
112
- -ms-perspective: none;
113
- perspective: none;
94
+ -moz-perspective: none;
95
+ -ms-perspective: none;
96
+ perspective: none;
114
97
 
115
98
  -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
116
- -moz-perspective-origin: 50% 50%;
117
- -ms-perspective-origin: 50% 50%;
118
- perspective-origin: 50% 50%;
99
+ -moz-perspective-origin: 50% 50%;
100
+ -ms-perspective-origin: 50% 50%;
101
+ perspective-origin: 50% 50%;
119
102
  }
120
103
  .reveal .slides section {
121
-
122
104
  page-break-after: always !important;
123
105
 
124
106
  visibility: visible !important;
125
107
  position: relative !important;
126
- width: 100% !important;
127
- height: 229mm !important;
128
- min-height: 229mm !important;
129
108
  display: block !important;
130
- overflow: hidden !important;
109
+ position: relative !important;
131
110
 
132
- left: 0 !important;
133
- top: 0 !important;
134
111
  margin: 0 !important;
135
- padding: 2cm 2cm 0 2cm !important;
112
+ padding: 0 !important;
136
113
  box-sizing: border-box !important;
114
+ min-height: 1px;
115
+ height: 90%;
137
116
 
138
117
  opacity: 1 !important;
139
118
 
140
119
  -webkit-transform-style: flat !important;
141
- -moz-transform-style: flat !important;
142
- -ms-transform-style: flat !important;
143
- transform-style: flat !important;
120
+ -moz-transform-style: flat !important;
121
+ -ms-transform-style: flat !important;
122
+ transform-style: flat !important;
144
123
 
145
124
  -webkit-transform: none !important;
146
- -moz-transform: none !important;
147
- -ms-transform: none !important;
148
- transform: none !important;
125
+ -moz-transform: none !important;
126
+ -ms-transform: none !important;
127
+ transform: none !important;
149
128
  }
150
129
  .reveal section.stack {
151
130
  margin: 0 !important;
@@ -154,37 +133,25 @@ ul, ol, div, p {
154
133
  height: auto !important;
155
134
  min-height: auto !important;
156
135
  }
157
- .reveal .absolute-element {
158
- margin-left: 2.2cm;
159
- margin-top: 1.8cm;
136
+ .reveal img {
137
+ box-shadow: none;
160
138
  }
161
- .reveal section .fragment {
162
- opacity: 1 !important;
163
- visibility: visible !important;
164
-
165
- -webkit-transform: none !important;
166
- -moz-transform: none !important;
167
- -ms-transform: none !important;
168
- transform: none !important;
139
+ .reveal .roll {
140
+ overflow: visible;
141
+ line-height: 1em;
169
142
  }
143
+
144
+ /* Slide backgrounds are placed inside of their slide when exporting to PDF */
170
145
  .reveal section .slide-background {
146
+ display: block !important;
171
147
  position: absolute;
172
148
  top: 0;
173
149
  left: 0;
174
150
  width: 100%;
175
- z-index: 0;
151
+ z-index: -1;
176
152
  }
153
+ /* All elements should be above the slide-background */
177
154
  .reveal section>* {
178
155
  position: relative;
179
156
  z-index: 1;
180
157
  }
181
- .reveal img {
182
- box-shadow: none;
183
- }
184
- .reveal .roll {
185
- overflow: visible;
186
- line-height: 1em;
187
- }
188
- .reveal small a {
189
- font-size: 16pt !important;
190
- }
@@ -1,399 +1,1513 @@
1
- .reveal .slide-background { background: #f3f4f4; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; }
2
-
3
- .reveal .has-dark-background, .reveal .light-foreground, .reveal section.background-shade-dark, .reveal section.light-foreground { color: #fff; }
4
-
5
- .reveal .has-dark-background .product path, .reveal .light-foreground .product path, .reveal section.background-shade-dark .product path, .reveal section.light-foreground .product path { fill: #ffffff !important; }
6
-
7
- .reveal .has-dark-background .icon.stroked path, .reveal .light-foreground .icon.stroked path, .reveal section.background-shade-dark .icon.stroked path, .reveal section.light-foreground .icon.stroked path { stroke: #ffffff !important; }
8
-
9
- .reveal .has-dark-background .redhat-product-logotype path, .reveal .light-foreground .redhat-product-logotype path, .reveal section.background-shade-dark .redhat-product-logotype path, .reveal section.light-foreground .redhat-product-logotype path { fill: #ffffff; }
10
-
11
- .reveal .has-dark-background text.logotext, .reveal .light-foreground text.logotext, .reveal section.background-shade-dark text.logotext, .reveal section.light-foreground text.logotext, .reveal .has-dark-background .logotext text, .reveal .light-foreground .logotext text, .reveal section.background-shade-dark .logotext text, .reveal section.light-foreground .logotext text, .reveal .has-dark-background path.logotext, .reveal .light-foreground path.logotext, .reveal section.background-shade-dark path.logotext, .reveal section.light-foreground path.logotext, .reveal .has-dark-background path.logotype, .reveal .light-foreground path.logotype, .reveal section.background-shade-dark path.logotype, .reveal section.light-foreground path.logotype, .reveal .has-dark-background .logotext path, .reveal .light-foreground .logotext path, .reveal section.background-shade-dark .logotext path, .reveal section.light-foreground .logotext path { fill: #fff !important; }
12
-
13
- .reveal .has-dark-background .redhat-logo .logotext, .reveal .light-foreground .redhat-logo .logotext, .reveal section.background-shade-dark .redhat-logo .logotext, .reveal section.light-foreground .redhat-logo .logotext { fill: #ffffff !important; }
14
-
15
- .reveal .has-light-background { color: #222222; }
16
-
17
- .reveal .has-light-background path { fill: currentcolor; }
18
-
19
- .reveal .has-light-background .icon.stroked path { stroke: currentcolor; }
20
-
21
- .reveal .has-light-background .redhat-logo .logotext { fill: #000000 !important; }
22
-
23
- .reveal .dark-foreground, .reveal section.background-shade-light, .reveal section.dark-foreground { color: #000; }
24
-
25
- .reveal .dark-foreground .redhat-product-logotype path, .reveal section.background-shade-light .redhat-product-logotype path, .reveal section.dark-foreground .redhat-product-logotype path { fill: #000000; }
26
-
27
- .reveal .dark-foreground text.logotext, .reveal section.background-shade-light text.logotext, .reveal section.dark-foreground text.logotext, .reveal .dark-foreground .logotext text, .reveal section.background-shade-light .logotext text, .reveal section.dark-foreground .logotext text, .reveal .dark-foreground path.logotext, .reveal section.background-shade-light path.logotext, .reveal section.dark-foreground path.logotext, .reveal .dark-foreground path.logotype, .reveal section.background-shade-light path.logotype, .reveal section.dark-foreground path.logotype, .reveal .dark-foreground .logotext path, .reveal section.background-shade-light .logotext path, .reveal section.dark-foreground .logotext path, .reveal .dark-foreground .product, .reveal section.background-shade-light .product, .reveal section.dark-foreground .product { fill: #currentcolor !important; }
28
-
29
- .reveal .dark-foreground .redhat-logo .logotext, .reveal section.background-shade-light .redhat-logo .logotext, .reveal section.dark-foreground .redhat-logo .logotext { fill: currentcolor !important; }
30
-
31
- .reveal svg path { fill: currentcolor; }
32
-
33
- .reveal .slide-background.background-shade-dark:before { content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; background-color: rgba(40, 40, 40, 0.8); }
34
-
35
- .reveal .slide-background.background-shade-light:before { content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.8); }
1
+ /* line 1, ../theme-output.scss */
2
+ .reveal .slide-background {
3
+ background: #f3f4f4;
4
+ background-size: cover;
5
+ background-position: 50% 50%;
6
+ background-repeat: no-repeat;
7
+ }
8
+
9
+ /* line 8, ../theme-output.scss */
10
+ .reveal .has-dark-background,
11
+ .reveal .light-foreground,
12
+ .reveal section.background-shade-dark,
13
+ .reveal section.light-foreground {
14
+ color: #fff;
15
+ }
16
+
17
+ /* line 15, ../theme-output.scss */
18
+ .reveal .has-dark-background .product path,
19
+ .reveal .light-foreground .product path,
20
+ .reveal section.background-shade-dark .product path,
21
+ .reveal section.light-foreground .product path {
22
+ fill: #ffffff !important;
23
+ }
24
+
25
+ /* line 22, ../theme-output.scss */
26
+ .reveal .has-dark-background .icon.stroked path,
27
+ .reveal .light-foreground .icon.stroked path,
28
+ .reveal section.background-shade-dark .icon.stroked path,
29
+ .reveal section.light-foreground .icon.stroked path {
30
+ stroke: #ffffff !important;
31
+ }
32
+
33
+ /* line 29, ../theme-output.scss */
34
+ .reveal .has-dark-background .redhat-product-logotype path,
35
+ .reveal .light-foreground .redhat-product-logotype path,
36
+ .reveal section.background-shade-dark .redhat-product-logotype path,
37
+ .reveal section.light-foreground .redhat-product-logotype path {
38
+ fill: #ffffff;
39
+ }
40
+
41
+ /* line 36, ../theme-output.scss */
42
+ .reveal .has-dark-background text.logotext,
43
+ .reveal .light-foreground text.logotext,
44
+ .reveal section.background-shade-dark text.logotext,
45
+ .reveal section.light-foreground text.logotext,
46
+ .reveal .has-dark-background .logotext text,
47
+ .reveal .light-foreground .logotext text,
48
+ .reveal section.background-shade-dark .logotext text,
49
+ .reveal section.light-foreground .logotext text,
50
+ .reveal .has-dark-background path.logotext,
51
+ .reveal .light-foreground path.logotext,
52
+ .reveal section.background-shade-dark path.logotext,
53
+ .reveal section.light-foreground path.logotext,
54
+ .reveal .has-dark-background path.logotype,
55
+ .reveal .light-foreground path.logotype,
56
+ .reveal section.background-shade-dark path.logotype,
57
+ .reveal section.light-foreground path.logotype,
58
+ .reveal .has-dark-background .logotext path,
59
+ .reveal .light-foreground .logotext path,
60
+ .reveal section.background-shade-dark .logotext path,
61
+ .reveal section.light-foreground .logotext path {
62
+ fill: #fff !important;
63
+ }
64
+
65
+ /* line 59, ../theme-output.scss */
66
+ .reveal .has-dark-background .redhat-logo .logotext,
67
+ .reveal .light-foreground .redhat-logo .logotext,
68
+ .reveal section.background-shade-dark .redhat-logo .logotext,
69
+ .reveal section.light-foreground .redhat-logo .logotext {
70
+ fill: #ffffff !important;
71
+ }
72
+
73
+ /* line 66, ../theme-output.scss */
74
+ .reveal .has-light-background {
75
+ color: #222222;
76
+ }
77
+
78
+ /* line 70, ../theme-output.scss */
79
+ .reveal .has-light-background path {
80
+ fill: currentcolor;
81
+ }
82
+
83
+ /* line 74, ../theme-output.scss */
84
+ .reveal .has-light-background .icon.stroked path {
85
+ stroke: currentcolor;
86
+ }
87
+
88
+ /* line 78, ../theme-output.scss */
89
+ .reveal .has-light-background .redhat-logo .logotext {
90
+ fill: #000000 !important;
91
+ }
92
+
93
+ /* line 82, ../theme-output.scss */
94
+ .reveal .dark-foreground,
95
+ .reveal section.background-shade-light,
96
+ .reveal section.dark-foreground {
97
+ color: #000;
98
+ }
99
+
100
+ /* line 88, ../theme-output.scss */
101
+ .reveal .dark-foreground .redhat-product-logotype path,
102
+ .reveal section.background-shade-light .redhat-product-logotype path,
103
+ .reveal section.dark-foreground .redhat-product-logotype path {
104
+ fill: #000000;
105
+ }
106
+
107
+ /* line 94, ../theme-output.scss */
108
+ .reveal .dark-foreground text.logotext,
109
+ .reveal section.background-shade-light text.logotext,
110
+ .reveal section.dark-foreground text.logotext,
111
+ .reveal .dark-foreground .logotext text,
112
+ .reveal section.background-shade-light .logotext text,
113
+ .reveal section.dark-foreground .logotext text,
114
+ .reveal .dark-foreground path.logotext,
115
+ .reveal section.background-shade-light path.logotext,
116
+ .reveal section.dark-foreground path.logotext,
117
+ .reveal .dark-foreground path.logotype,
118
+ .reveal section.background-shade-light path.logotype,
119
+ .reveal section.dark-foreground path.logotype,
120
+ .reveal .dark-foreground .logotext path,
121
+ .reveal section.background-shade-light .logotext path,
122
+ .reveal section.dark-foreground .logotext path,
123
+ .reveal .dark-foreground .product,
124
+ .reveal section.background-shade-light .product,
125
+ .reveal section.dark-foreground .product {
126
+ fill: #currentcolor !important;
127
+ }
128
+
129
+ /* line 115, ../theme-output.scss */
130
+ .reveal .dark-foreground .redhat-logo .logotext,
131
+ .reveal section.background-shade-light .redhat-logo .logotext,
132
+ .reveal section.dark-foreground .redhat-logo .logotext {
133
+ fill: currentcolor !important;
134
+ }
135
+
136
+ /* line 121, ../theme-output.scss */
137
+ .reveal svg path {
138
+ fill: currentcolor;
139
+ }
140
+
141
+ /* line 125, ../theme-output.scss */
142
+ .reveal .slide-background.background-shade-dark:before {
143
+ content: "";
144
+ display: block;
145
+ position: absolute;
146
+ top: 0;
147
+ bottom: 0;
148
+ left: 0;
149
+ right: 0;
150
+ width: 100%;
151
+ height: 100%;
152
+ background-color: rgba(40, 40, 40, 0.8);
153
+ }
154
+
155
+ /* line 138, ../theme-output.scss */
156
+ .reveal .slide-background.background-shade-light:before {
157
+ content: "";
158
+ display: block;
159
+ position: absolute;
160
+ top: 0;
161
+ bottom: 0;
162
+ left: 0;
163
+ right: 0;
164
+ width: 100%;
165
+ height: 100%;
166
+ background-color: rgba(255, 255, 255, 0.8);
167
+ }
36
168
 
37
169
  /* Change Letter Spacing from .061em to -0.02em */
38
- .reveal .slides > section { text-align: left; letter-spacing: -0.02em; }
39
-
40
- .reveal .slides > section h1 { line-height: 1em; font-weight: 700; letter-spacing: .04em; font-size: 3em; }
170
+ /* line 152, ../theme-output.scss */
171
+ .reveal .slides > section {
172
+ text-align: left;
173
+ letter-spacing: -0.02em;
174
+ }
175
+
176
+ /* line 157, ../theme-output.scss */
177
+ .reveal .slides > section h1 {
178
+ line-height: 1em;
179
+ font-weight: 700;
180
+ letter-spacing: .04em;
181
+ font-size: 3em;
182
+ }
41
183
 
42
184
  /* Change Font Size & letter spacing */
43
- .reveal .slides > section h2 { font-size: 2em; font-weight: 300; letter-spacing: .02em; line-height: 1.15em; }
44
-
45
- .reveal .slides > section h3 { font-weight: 700; font-size: 1em; letter-spacing: .05em; line-height: 1.25em; }
46
-
47
- .reveal .slides > section p { margin-bottom: .5em; }
48
-
49
- .reveal .slides > section blockquote { font-style: normal; box-shadow: none; }
50
-
51
- .reveal .progress { /* position: ;*/ background-color: transparent; }
52
-
53
- .reveal .progress span { background-color: #5e6a71; /* opacity: .;*/ }
54
-
55
- .reveal .absolute-element svg { position: absolute; top: 0; left: 0; right: 0; width: 100% !important; height: 100% !important; }
56
-
57
- .reveal .icon.stroked { width: 282px; height: 282px; }
58
-
59
- .reveal .icon.stroked.icon-arrow path { stroke-width: 4px !important; }
60
-
61
- .reveal .icon.stroked path { fill: none; stroke-width: 1.5px; transition-delay: .5s !important; stroke-dashoffset: 0; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; stroke: #5e6a71; }
62
-
63
- .reveal .icon.stroked path.long { stroke-dasharray: 420, 420; transition: 2.5s all ease; }
64
-
65
- .reveal .icon.stroked path.longer { stroke-dasharray: 512, 512; transition: 2.5s all ease; }
66
-
67
- .reveal .icon.stroked path.short { stroke-dasharray: 90, 90; transition: 5s all ease; }
68
-
69
- .reveal .icon.stroked path.shortest { stroke-dasharray: 5, 5; transition: 2s all ease; }
70
-
71
- .reveal .icon.stroked path.round { stroke-linecap: round; stroke-linejoin: round; }
72
-
73
- .reveal .icon.stroked path.virtual { transition: .5s all ease; stroke-dasharray: 1.1, 3; stroke-linecap: round; }
74
-
75
- .reveal .icon.stroked path.dashed { stroke-dasharray: 3, 3; }
76
-
77
- .reveal .icon.stroked path.hand { stroke-linecap: round; }
78
-
79
- .reveal .present path.virtual { -webkit-animation: virtual-outline 60s infinite linear; -moz-animation: virtual-outline 60s infinite linear; animation: virtual-outline 60s infinite linear; }
80
-
81
- @-webkit-keyframes virtual-outline { 0% { stroke-dashoffset: 0; }
82
- 100% { stroke-dashoffset: 512; } }
83
- @-moz-keyframes virtual-outline { 0% { stroke-dashoffset: 0; }
84
- 100% { stroke-dashoffset: 512; } }
85
- @keyframes virtual-outline { 0% { stroke-dashoffset: 0; }
86
- 100% { stroke-dashoffset: 512; } }
87
- .reveal a { box-shadow: 0 0.066666em; }
88
-
89
- .reveal.overview section.present { border: 12px solid white !important; box-shadow: 0 0 0 10px #ffffff, inset 0 0 0 6px rgba(0, 0, 0, 0.2); }
90
-
91
- .reveal .rh-pattern { width: 256px; height: 256px; }
92
-
93
- .reveal .rh-pattern path { transition: all .5s ease; }
94
-
95
- .reveal .future .rh-pattern path { stroke-dasharray: 0, 85 !important; }
96
-
97
- .reveal .present .rh-pattern path { stroke-dasharray: 80, 0 !important; }
98
-
99
- .reveal div[data-block-type="snippet"] > .sl-block-content > svg, .reveal div[data-block-type="snippet"] .icon, .reveal div[data-block-type="snippet"] .product { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; }
100
-
101
- .reveal div[data-block-type="snippet"] .icon { top: -15%; right: -15%; bottom: -15%; left: -15%; width: 130%; height: 130%; }
102
-
103
- .reveal div[data-block-type="snippet"] { min-width: 60px !important; min-height: 40px !important; }
104
-
105
- .reveal div[data-block-type="text"] { font-size: 20px; }
106
-
107
- .reveal .triangle-element, .reveal .triangle-element * { user-select: none; }
108
-
109
- .reveal .has-light-background .closing-logo.logotype path { fill: #000000 !important; }
110
-
111
- @-webkit-keyframes closing-animation { 0% { -webkit-transform: scale(4) translate(40%); transform: scale(4) translate(40%); opacity: 0; }
112
- 80% { -webkit-transform: scale(1) translate(30%); transform: scale(1) translate(30%); } }
113
- @-moz-keyframes closing-animation { 0% { -webkit-transform: scale(4) translate(40%); transform: scale(4) translate(40%); opacity: 0; }
114
- 80% { -webkit-transform: scale(1) translate(30%); transform: scale(1) translate(30%); } }
115
- @-ms-keyframes closing-animation { 0% { -webkit-transform: scale(4) translate(40%); transform: scale(4) translate(40%); opacity: 0; }
116
- 80% { -webkit-transform: scale(1) translate(30%); transform: scale(1) translate(30%); } }
117
- @-o-keyframes closing-animation { 0% { -webkit-transform: scale(4) translate(40%); transform: scale(4) translate(40%); opacity: 0; }
118
- 80% { -webkit-transform: scale(1) translate(30%); transform: scale(1) translate(30%); } }
119
- @keyframes closing-animation { 0% { -webkit-transform: scale(4) translate(40%); transform: scale(4) translate(40%); opacity: 0; }
120
- 80% { -webkit-transform: scale(1) translate(30%); transform: scale(1) translate(30%); } }
121
- .reveal .present .closing-logo.icon { -webkit-animation: closing-animation 1.5s 1; -moz-animation: closing-animation 1.5s 1; -o-animation: closing-animation 1.5s 1; animation: closing-animation 1.5s 1; }
122
-
123
- .reveal .present .closing-logo.logotype { -webkit-animation: closing-text-animation 1.8s 1; -moz-animation: closing-text-animation 1.8s 1; -o-animation: closing-text-animation 1.8s 1; animation: closing-text-animation 1.8s 1; }
124
-
125
- @-webkit-keyframes closing-text-animation { 0% { opacity: 0; -webkit-transform: translate(-10%); transform: translate(-10%); }
126
- 70% { -webkit-transform: translate(-10%); transform: translate(-10%); opacity: 0; }
127
- 100% { transform: none; opacity: 1; -webkit-transform: none; } }
128
- @-moz-keyframes closing-text-animation { 0% { opacity: 0; -webkit-transform: translate(-10%); transform: translate(-10%); }
129
- 70% { -webkit-transform: translate(-10%); transform: translate(-10%); opacity: 0; }
130
- 100% { transform: none; opacity: 1; -webkit-transform: none; } }
131
- @-ms-keyframes closing-text-animation { 0% { opacity: 0; -webkit-transform: translate(-10%); transform: translate(-10%); }
132
- 70% { -webkit-transform: translate(-10%); transform: translate(-10%); opacity: 0; }
133
- 100% { transform: none; opacity: 1; -webkit-transform: none; } }
134
- @-o-keyframes closing-text-animation { 0% { opacity: 0; -webkit-transform: translate(-10%); transform: translate(-10%); }
135
- 70% { -webkit-transform: translate(-10%); transform: translate(-10%); opacity: 0; }
136
- 100% { transform: none; opacity: 1; -webkit-transform: none; } }
137
- @keyframes closing-text-animation { 0% { opacity: 0; -webkit-transform: translate(-10%); transform: translate(-10%); }
138
- 70% { -webkit-transform: translate(-10%); transform: translate(-10%); opacity: 0; }
139
- 100% { transform: none; opacity: 1; -webkit-transform: none; } }
140
- .reveal .brand-pattern-paths path, .reveal .pattern-path { stroke-width: 1; fill: none; }
141
-
142
- .reveal .brand-pattern-paths path { fill: none !important; }
143
-
144
- .reveal pattern { patterntransform: scale(2) !important; }
145
-
146
- .reveal pattern.normal use { stroke: #5e6a71; fill: none; }
147
-
148
- .reveal pattern.light use { stroke: #fff !important; fill: none; }
149
-
150
- .reveal pattern.dark use { stroke: #000 !important; fill: none; }
151
-
152
- .reveal .brand-pattern { min-width: 40px; min-height: 40px; position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; }
153
-
154
- .reveal .brand-pattern path, .reveal .brand-pattern rect { width: 100% !important; height: 100%; }
155
-
156
- .reveal .brand-pattern.corporate { fill: url(#pattern-corporate); }
157
-
158
- .reveal .brand-pattern.storage { fill: url(#pattern-storage); }
159
-
160
- .reveal .brand-pattern.infrastructure { fill: url(#pattern-infrastructure); }
161
-
162
- .reveal .brand-pattern.cloud-infrastructure { fill: url(#pattern-cloud-infrastructure); }
163
-
164
- .reveal .brand-pattern.development { fill: url(#pattern-development); }
165
-
166
- .reveal .brand-pattern.business-process { fill: url(#pattern-business-process); }
167
-
168
- .reveal .brand-pattern.cloud-development { fill: url(#pattern-cloud-development); }
169
-
170
- .reveal .brand-pattern.development { fill: url(#pattern-development); }
171
-
172
- .reveal .brand-pattern.business-process { fill: url(#pattern-business-process); }
173
-
174
- .reveal .brand-pattern.cloud-development { fill: url(#pattern-cloud-development); }
175
-
176
- .reveal .brand-pattern.services { fill: url(#pattern-services); }
177
-
178
- .reveal .brand-pattern.partners { fill: url(#pattern-partners); }
179
-
180
- .reveal .brand-pattern.community { fill: url(#pattern-community); }
181
-
182
- .reveal #pattern-corporate-2 use { stroke: #dd0000; }
183
-
184
- .reveal #pattern-corporate use { stroke: #cc0000; }
185
-
186
- .reveal #pattern-storage use { stroke: #ec7a08; }
187
-
188
- .reveal #pattern-infrastructure-path { stroke: #0088ce; }
189
-
190
- .reveal #pattern-cloud-infrastructure use { stroke: #0088ce; }
191
-
192
- .reveal #pattern-development use { stroke: #3f9c35; }
193
-
194
- .reveal #pattern-cloud-development use { stroke: #3f9c35; }
195
-
196
- .reveal #pattern-business-process use { stroke: #3f9c35; }
197
-
198
- .reveal #pattern-partners use { stroke: #005172; }
199
-
200
- .reveal #pattern-services use { stroke: #5e6a71; }
201
-
202
- .reveal section, .reveal .slide-background { -webkit-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; }
203
-
204
- .reveal .slides > section.transition-slide, .reveal .slides > section.transition-slide + section.future, .reveal .slides > section.transition-slide + section.present, .reveal .backgrounds > .slide-background.transition-slide, .reveal .backgrounds > .slide-background.transition-slide + .slide-background.future, .reveal .backgrounds > .slide-background.transition-slide + .slide-background.present { transition: all 1s ease !important; }
205
-
206
- .reveal .backgrounds > .slide-background.transition-slide { opacity: 1; }
207
-
208
- .reveal .backgrounds > .slide-background.transition-slide.past { z-index: 99; -webkit-transform: translate(-100%, 0); -ms-transform: translate(-100%, 0); transform: translate(-100%, 0); }
209
-
210
- .reveal .backgrounds > .slide-background.transition-slide.future, .reveal .backgrounds > .slide-background.transition-slide.present + .slide-background.future { -webkit-transform: translate(100%, 0); -ms-transform: translate(100%, 0); transform: translate(100%, 0); }
211
-
212
- .reveal .slides > section.transition-slide.past { z-index: 99; -webkit-transform: translate(-150%, 0); -ms-transform: translate(-150%, 0); transform: translate(-150%, 0); }
213
-
214
- .reveal .slides > section.transition-slide.future, .reveal .slides > section.transition-slide.future + section { -webkit-transform: translate(150%, 0); -ms-transform: translate(150%, 0); transform: translate(150%, 0); }
215
-
216
- .reveal .slides > section.transition-slide-up, .reveal .slides > section.transition-slide-up + section.future, .reveal .slides > section.transition-slide-up + section.present, .reveal .backgrounds > .slide-background.transition-slide-up, .reveal .backgrounds > .slide-background.transition-slide-up + .slide-background.future .backgrounds > .slide-background.transition-slide-up + .slide-background.present { transition: all 1s ease !important; }
217
-
218
- .reveal .backgrounds > .slide-background.transition-slide-up { opacity: 1; }
219
-
220
- .reveal .backgrounds > .slide-background.transition-slide-up.past { z-index: 99; -webkit-transform: translate(0, -100%); -ms-transform: translate(0, -100%); transform: translate(0, -100%); }
221
-
222
- .reveal .backgrounds > .slide-background.transition-slide-up.future, .reveal .backgrounds > .slide-background.transition-slide-up.present + .slide-background.future { -webkit-transform: translate(0, 100%); -ms-transform: translate(0, 100%); transform: translate(0, 100%); }
223
-
224
- .reveal .slides > section.transition-slide-up.past { z-index: 99; -webkit-transform: translate(0, -150%); -ms-transform: translate(0, -150%); transform: translate(0, -150%); }
225
-
226
- .reveal .slides > section.transition-slide-up.future, .reveal .slides > section.transition-slide-up.present + section { -webkit-transform: translate(0, 150%); -ms-transform: translate(0, 150%); transform: translate(0, 150%); }
227
-
228
- .reveal .slides > section.transition-zoom-in, .reveal .slides > section.transition-zoom-in + section.future, .reveal .slides > section.transition-zoom-in + section.present, .reveal .backgrounds > .slide-background.transition-zoom-in, .reveal .backgrounds > .slide-background.transition-zoom-in + .slide-background.future .backgrounds > .slide-background.transition-zoom-in + .slide-background.present { -webkit-transition: all 1s ease !important; -moz-transition: all 1s ease !important; transition: all 1s ease !important; }
229
-
230
- .reveal .backgrounds > .slide-background.transition-zoom-in.past { opacity: 0 !important; -webkit-transform: scale(1.5); -ms-transform: scale(0.1 0.5); transform: scale(1.5); }
231
-
232
- .reveal .backgrounds > .slide-background.transition-zoom-in.future, .reveal .backgrounds > .slide-background.transition-zoom-in.present + .slide-background.future { opacity: 0 !important; -webkit-transform: scale(0.01); -ms-transform: scale(0.01); transform: scale(0.01); }
233
-
234
- .reveal.past { z-index: -1; opacity: 0 !important; }
235
-
236
- .reveal.present + .slide-background.future { z-index: 99; }
237
-
238
- .reveal .slides > section.transition-zoom-in.past { z-index: 99; -webkit-transform: scale(1.5); -ms-transform: scale(1.5); transform: scale(1.5); }
239
-
240
- .reveal .slides > section.transition-zoom-in.future { -webkit-transform: scale(0.1); -ms-transform: scale(0.1); transform: scale(0.1); }
241
-
242
- @-webkit-keyframes icon-animation-long { 0% { stroke-dashoffset: 420; stroke-width: .5px; } }
243
- @-moz-keyframes icon-animation-long { 0% { stroke-dashoffset: 420; stroke-width: .5px; } }
244
- @-ms-keyframes icon-animation-long { 0% { stroke-dashoffset: 420; stroke-width: .5px; } }
245
- @keyframes icon-animation-long { 0% { stroke-dashoffset: 420; stroke-width: .5px; } }
246
- @-webkit-keyframes icon-animation-short { 0% { stroke-dashoffset: 90; } }
247
- @-moz-keyframes icon-animation-short { 0% { stroke-dashoffset: 90; } }
248
- @-ms-keyframes icon-animation-short { 0% { stroke-dashoffset: 90; } }
249
- @keyframes icon-animation-short { 0% { stroke-dashoffset: 90; } }
250
- .reveal .present .animate.icon.stroked path, .reveal .present .animate .icon.stroked path, .reveal .fragment .icon.stroked path { animation: 0; -moz-animation: 0; -webkit-animation: 0; display: none; }
251
-
252
- .reveal .present .animate.icon.stroked path.long, .reveal .present .animate .icon.stroked path.long, .reveal .fragment.visible .icon.stroked path.long { display: block; stroke-width: 2px; -webkit-animation: icon-animation-long 3.5s 0.5s 1; -moz-animation: icon-animation-long 3.5s 0.5s 1; animation: icon-animation-long 3.5s 0.5s 1; }
253
-
254
- .reveal .present .animate.icon.stroked path.short, .reveal .present .animate .icon.stroked path.short, .reveal .fragment.visible .icon.stroked path.short { display: block; -webkit-animation: icon-animation-short 3.5s 0.5s 1 !important; -moz-animation: icon-animation-short 3.5s 0.5s 1 !important; animation: icon-animation-short 3.5s 0.5s 1 !important; }
255
-
256
- .reveal .triangle-element { transition: all 0.4s cubic-bezier(0.21, 0.9, 0.55, 1) 5s; }
257
-
258
- .reveal:hover .triangle-element { transition: all 1s cubic-bezier(0.21, 0.9, 0.55, 1.16) 0s !important; top: 100% !important; left: 100% !important; opacity: 0.95; }
259
-
260
- .reveal .has-dark-background .only-dark { display: none; }
261
-
262
- .reveal .has-light-background .only-light { display: none; }
263
-
264
- .reveal .thinner .icon.stroked path { stroke-width: 1px !important; }
265
-
266
- .reveal .thinnest .icon.stroked path { stroke-width: 0.05em !important; }
267
-
268
- .reveal .thicker .icon.stroked path { stroke-width: 3px !important; }
269
-
270
- .reveal .thickest .icon.stroked path { stroke-width: 4px !important; }
271
-
272
- .reveal .angle { -ms-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
273
-
274
- .reveal .skewed { transition: all 1s cubic-bezier(0.13, 0.81, 0.08, 1); -moz-transform: skew(-45deg, 0); -ms-transform: skew(-45deg, 0); -webkit-transform: skew(-45deg, 0); transform: skew(-45deg, 0); }
275
-
276
- .reveal .future .skewed { margin-left: -800%; opacity: 0; }
277
-
278
- .reveal .past .skewed { margin-left: 800%; opacity: 0; }
279
-
280
- .reveal .item-label, .reveal .item-box { letter-spacing: 0em; font-weight: 500; }
281
-
282
- .reveal .epic-content-box { height: 100%; width: 100%; position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
283
-
284
- .reveal .has-dark-background .epic-content-box { box-shadow: inset 0 0 0.51em rgba(0, 0, 0, 0.25), 0 0.05em 0.05em rgba(255, 255, 255, 0.1); background-color: rgba(0, 0, 0, 0.15); }
285
-
286
- .reveal .has-light-background .epic-content-box { box-shadow: inset 0 0 0.2em rgba(255, 255, 255, 0.5), 0 0.06666em 0.555em 0 rgba(0, 0, 0, 0.12); }
287
-
288
- .reveal .has-dark-background h1, .reveal .has-dark-background h2, .reveal .has-dark-background h3 { text-shadow: 0 0.05em 0.2em rgba(0, 0, 0, 0.2); }
289
-
290
- .reveal .controls { background-color: rgba(255, 255, 255, 0.2); border-radius: 50%; box-shadow: inset 0 0.2em 1em rgba(0, 0, 0, 0.2); bottom: 1%; right: 1%; }
291
-
292
- .reveal .controls { opacity: 0 !important; transition: all .5s ease 4.8s; transform: scale(0.4); }
293
-
294
- .reveal:hover .controls { transform: scale(1); opacity: 1 !important; transition: all .5s ease 0s; }
295
-
296
- .reveal .slides > section.present.in-3d-appear, .reveal .backgrounds > .slide-background.present.in-3d-appear { -moz-animation: slide-3d-appear 2s ease 1; -webkit-animation: slide-3d-appear 2s ease 1; animation: slide-3d-appear 2s ease 1; }
297
-
298
- @keyframes slide-3d-appear { 0% { transition-property: all; transition-duration: 1s; -webkit-transform: scale(2) rotateX(20deg); -moz-transform: scale(2) rotateX(20deg); -ms-transform: scale(2) rotateX(20deg); -o-transform: scale(2) rotateX(20deg); transform: scale(2) rotateX(20deg); transform-origin: top; } }
299
- @-moz-keyframes slide-3d-appear { 0% { transition-property: all; transition-duration: 1s; -webkit-transform: scale(2) rotateX(20deg); -moz-transform: scale(2) rotateX(20deg); -ms-transform: scale(2) rotateX(20deg); -o-transform: scale(2) rotateX(20deg); transform: scale(2) rotateX(20deg); transform-origin: top; } }
300
- @-webkit-keyframes slide-3d-appear { 0% { transition-property: all; transition-duration: 1s; -webkit-transform: scale(2) rotateX(20deg); -moz-transform: scale(2) rotateX(20deg); -ms-transform: scale(2) rotateX(20deg); -o-transform: scale(2) rotateX(20deg); transform: scale(2) rotateX(20deg); transform-origin: top; } }
301
- .reveal .backgrounds { transition-property: height; transition-duration: 1s; perspective: 1000px; transform-style: preserve-3d; }
302
-
303
- .reveal .complex-logo { min-height: 70px; min-width: 70px; width: 100%; }
304
-
305
- .reveal .complex-logo, .reveal .complex-logo svg, .reveal .complex-logo > div { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; }
306
-
307
- .reveal .complex-logo > div.line-icon, .reveal .complex-logo svg > div.line-icon, .reveal .complex-logo > div > div.line-icon, .reveal .complex-logo > div.logomark, .reveal .complex-logo svg > div.logomark, .reveal .complex-logo > div > div.logomark { transform-origin: 12% 50%; }
308
-
309
- .reveal .animated .complex-logo div { transition: all .5s ease; }
310
-
311
- .reveal .animated .complex-logo div.line-icon { transition-delay: 2s; }
312
-
313
- .reveal .animated .complex-logo div.line-icon path { transition: all 1s ease .52s; stroke-dasharray: 100, 10; }
314
-
315
- .reveal .animated .complex-logo div.event-name { transition-delay: 1s; }
316
-
317
- .reveal .animated .complex-logo div.location { transition-delay: 1.4s; }
318
-
319
- .reveal .future .animated .complex-logo > div { transition: none; }
320
-
321
- .reveal .future .animated .complex-logo > div.line-icon path { stroke-dasharray: 0, 100; transition: none; }
322
-
323
- .reveal .future .animated .complex-logo { /*.line-icon{transform:rotate(30deg); opacity:0;}*/ }
324
-
325
- .reveal .future .animated .complex-logo .logomark { transform: translate(0, -20%); }
326
-
327
- .reveal .future .animated .complex-logo .location { transform: translate(0, 0.5em); opacity: 0; }
328
-
329
- .reveal .future .animated .complex-logo .event-name { opacity: 0; transform: translate(-0.6em, 0); }
330
-
331
- .reveal svg path { fill: currentcolor; }
332
-
333
- .reveal .lowercase { text-transform: lowercase; }
334
-
335
- .reveal .pop-in.fragment { -webkit-transform: scale(0.2); -moz-transform: scale(0.2); -ms-transform: scale(0.2); -o-transform: scale(0.2); transform: scale(0.2); -webkit-transition: 2s ease 0.25s; -moz-transition: 2s ease 0.25s; -o-transition: 2s ease 0.25s; -ms-transition: 2s ease 0.25s; transition: 2s ease 0.25s; -webkit-animation-delay: 0.66s; -moz-animation-delay: 0.66s; -ms-animation-delay: 0.66s; -o-animation-delay: 0.66s; animation-delay: 0.66s; }
336
-
337
- .reveal .pop-in.fragment.visible { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); }
338
-
339
- .reveal .pop-in.fragment.current-fragment { color: #c22; }
340
-
341
- .reveal .grow-width { -webkit-transition: all 0.5s ease 0.2s; -moz-transition: all 0.5s ease 0.2s; -o-transition: all 0.5s ease 0.2s; -ms-transition: all 0.5s ease 0.2s; transition: all 0.5s ease 0.2s; }
342
-
343
- .reveal .future .grow-width { width: 0% !important; -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none; transition: none; }
344
-
345
- .reveal .stampit { -webkit-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s; -moz-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s; -o-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s; -ms-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s; transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s; }
346
-
347
- .reveal .future .stampit { -webkit-transform: rotate(-12deg) scale(2); -moz-transform: rotate(-12deg) scale(2); -ms-transform: rotate(-12deg) scale(2); -o-transform: rotate(-12deg) scale(2); transform: rotate(-12deg) scale(2); -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none; transition: none; opacity: 0; }
348
-
349
- .reveal .headshot img { border-radius: 50%; border: 4px solid #c00 !important; }
350
-
351
- .reveal .condensed { letter-spacing: 0.02em; }
352
-
353
- .reveal .condensed li { margin-bottom: 1em; }
354
-
355
- .reveal .has-light-background .sl-block .has-dark-background > svg.redhat-logo .logotext { fill: #ffffff !important; }
356
-
357
- .reveal .has-light-background .sl-block .reversed.redhat-logo .logotext, .reveal .has-light-background .sl-block .reversed .redhat-logo .logotext, .reveal .has-light-background .sl-block .has-dark-background > .redhat-logo .logotext { fill: #ffffff !important; }
358
-
359
- .reveal .has-dark-background .sl-block .reversed.redhat-logo .logotext, .reveal .has-dark-background .sl-block .reversed .redhat-logo .logotext, .reveal .has-dark-background .sl-block .has-light-background > .redhat-logo .logotext { fill: #000000 !important; }
360
-
361
- .reveal .has-dark-background .has-light-background .logo .only-dark path, .reveal .has-light-background .mono.redhat-logo path { fill: #000000 !important; }
362
-
363
- .reveal .has-dark-background .mono.redhat-logo path { fill: #ffffff; }
364
-
365
- .reveal .has-dark-background .logo .only-dark { display: block; }
366
-
367
- .reveal .has-light-background .logo .only-light { display: block; }
368
-
369
- .reveal .has-light-background .logo .only-dark { display: none; }
370
-
371
- .reveal .has-dark-background .logo .only-light { display: none; }
372
-
373
- .reveal .has-light-background .reversed svg path { fill: #ffffff !important; }
374
-
375
- .reveal .has-dark-background .reversed svg path { fill: currentcolor !important; }
376
-
377
- .reveal .has-dark-background .has-light-background .logo .only-light, .reveal .has-dark-background .reversed .logo .only-dark { display: block; }
378
-
379
- .reveal .has-light-background .has-dark-background .logo .only-dark, .reveal .has-light-background .logo .only-light { display: block; }
380
-
381
- .reveal .has-light-background .has-dark-background .redhat-logo .only-dark, .reveal .has-light-background .redhat-logo .only-light { fill: #ffffff !important; }
382
-
383
- .reveal .has-light-background .has-dark-background .logo .only-light, .reveal .has-light-background .logo .only-dark, .reveal .has-dark-background .has-light-background .logo .only-dark, .reveal .has-dark-background .logo .only-light { display: none; }
384
-
385
- .reveal .future .fade-up, .reveal .future .fade-down, .reveal .future .fade-left, .reveal .future .fade-right, .reveal .future .fade-zoom { -webkit-transition: none; transition: none; opacity: 0; filter: alpha(opacity=0); }
386
-
387
- .reveal .future .fade-up, .reveal .fade-up.fragment { -webkit-transform: translate(0, 2em); -ms-transform: translate(0, 2em); transform: translate(0, 2em); opacity: 0; filter: alpha(opacity=0); }
388
-
389
- .reveal .future .fade-down, .reveal .fade-down.fragment { -webkit-transform: translate(0, -2em); -ms-transform: translate(0, -2em); transform: translate(0, -2em); opacity: 0; filter: alpha(opacity=0); }
390
-
391
- .reveal .future .fade-left, .reveal .fade-left.fragment { -webkit-transform: translate(2em, 0); -ms-transform: translate(2em, 0); transform: translate(2em, 0); opacity: 0; filter: alpha(opacity=0); }
392
-
393
- .reveal .future .fade-right, .reveal .fade-right.fragment { -webkit-transform: translate(-2em, 0); -ms-transform: translate(-2em, 0); transform: translate(-2em, 0); opacity: 0; filter: alpha(opacity=0); }
394
-
395
- .reveal .future .fade-zoom, .reveal .fade-zoom.fragment { -webkit-transform: scale(0.1); -ms-transform: scale(0.1); transform: scale(0.1); opacity: 0; filter: alpha(opacity=0); }
396
-
397
- .reveal .present .fade-up, .reveal .present .fade-down, .reveal .present .fade-left, .reveal .present .fade-right, .reveal .present .fade-zoom { -webkit-transition: all .5s ease .5s; transition: all .5s ease .5s; opacity: 1; filter: alpha(opacity=100); }
398
-
399
- .reveal .present .fragment.visible.fade-up, .reveal .present .fragment.visible.fade-down, .reveal .present .fragment.visible.fade-left, .reveal .present .fragment.visible.fade-right, .reveal .present .fragment.visible.fade-zoom { -webkit-transform: none; -ms-transform: none; transform: none; opacity: 1; filter: alpha(opacity=100); }
185
+ /* line 165, ../theme-output.scss */
186
+ .reveal .slides > section h2 {
187
+ font-size: 2em;
188
+ font-weight: 300;
189
+ letter-spacing: .02em;
190
+ line-height: 1.15em;
191
+ }
192
+
193
+ /* line 172, ../theme-output.scss */
194
+ .reveal .slides > section h3 {
195
+ font-weight: 700;
196
+ font-size: 1em;
197
+ letter-spacing: .05em;
198
+ line-height: 1.25em;
199
+ }
200
+
201
+ /* line 179, ../theme-output.scss */
202
+ .reveal .slides > section p {
203
+ margin-bottom: .5em;
204
+ }
205
+
206
+ /* line 183, ../theme-output.scss */
207
+ .reveal .slides > section blockquote {
208
+ font-style: normal;
209
+ box-shadow: none;
210
+ }
211
+
212
+ /* line 188, ../theme-output.scss */
213
+ .reveal .progress {
214
+ /* position: ;*/
215
+ background-color: transparent;
216
+ }
217
+
218
+ /* line 193, ../theme-output.scss */
219
+ .reveal .progress span {
220
+ background-color: #5e6a71;
221
+ /* opacity: .;*/
222
+ }
223
+
224
+ /* line 198, ../theme-output.scss */
225
+ .reveal .absolute-element svg {
226
+ position: absolute;
227
+ top: 0;
228
+ left: 0;
229
+ right: 0;
230
+ width: 100% !important;
231
+ height: 100% !important;
232
+ }
233
+
234
+ /* line 207, ../theme-output.scss */
235
+ .reveal .icon.stroked {
236
+ width: 282px;
237
+ height: 282px;
238
+ }
239
+
240
+ /* line 212, ../theme-output.scss */
241
+ .reveal .icon.stroked.icon-arrow path {
242
+ stroke-width: 4px !important;
243
+ }
244
+
245
+ /* line 216, ../theme-output.scss */
246
+ .reveal .icon.stroked path {
247
+ fill: none;
248
+ stroke-width: 1.5px;
249
+ transition-delay: .5s !important;
250
+ stroke-dashoffset: 0;
251
+ stroke-width: 1.5;
252
+ stroke-linecap: round;
253
+ stroke-linejoin: round;
254
+ stroke: #5e6a71;
255
+ }
256
+
257
+ /* line 227, ../theme-output.scss */
258
+ .reveal .icon.stroked path.long {
259
+ stroke-dasharray: 420, 420;
260
+ transition: 2.5s all ease;
261
+ }
262
+
263
+ /* line 232, ../theme-output.scss */
264
+ .reveal .icon.stroked path.longer {
265
+ stroke-dasharray: 512, 512;
266
+ transition: 2.5s all ease;
267
+ }
268
+
269
+ /* line 237, ../theme-output.scss */
270
+ .reveal .icon.stroked path.short {
271
+ stroke-dasharray: 90, 90;
272
+ transition: 5s all ease;
273
+ }
274
+
275
+ /* line 242, ../theme-output.scss */
276
+ .reveal .icon.stroked path.shortest {
277
+ stroke-dasharray: 5, 5;
278
+ transition: 2s all ease;
279
+ }
280
+
281
+ /* line 247, ../theme-output.scss */
282
+ .reveal .icon.stroked path.round {
283
+ stroke-linecap: round;
284
+ stroke-linejoin: round;
285
+ }
286
+
287
+ /* line 252, ../theme-output.scss */
288
+ .reveal .icon.stroked path.virtual {
289
+ transition: .5s all ease;
290
+ stroke-dasharray: 1.1, 3;
291
+ stroke-linecap: round;
292
+ }
293
+
294
+ /* line 258, ../theme-output.scss */
295
+ .reveal .icon.stroked path.dashed {
296
+ stroke-dasharray: 3, 3;
297
+ }
298
+
299
+ /* line 262, ../theme-output.scss */
300
+ .reveal .icon.stroked path.hand {
301
+ stroke-linecap: round;
302
+ }
303
+
304
+ /* line 266, ../theme-output.scss */
305
+ .reveal .present path.virtual {
306
+ -webkit-animation: virtual-outline 60s infinite linear;
307
+ -moz-animation: virtual-outline 60s infinite linear;
308
+ animation: virtual-outline 60s infinite linear;
309
+ }
310
+
311
+ @-webkit-keyframes virtual-outline {
312
+ 0% {
313
+ stroke-dashoffset: 0;
314
+ }
315
+ 100% {
316
+ stroke-dashoffset: 512;
317
+ }
318
+ }
319
+ @-moz-keyframes virtual-outline {
320
+ 0% {
321
+ stroke-dashoffset: 0;
322
+ }
323
+ 100% {
324
+ stroke-dashoffset: 512;
325
+ }
326
+ }
327
+ @keyframes virtual-outline {
328
+ 0% {
329
+ stroke-dashoffset: 0;
330
+ }
331
+ 100% {
332
+ stroke-dashoffset: 512;
333
+ }
334
+ }
335
+ /* line 299, ../theme-output.scss */
336
+ .reveal a {
337
+ box-shadow: 0 0.066666em;
338
+ }
339
+
340
+ /* line 303, ../theme-output.scss */
341
+ .reveal.overview section.present {
342
+ border: 12px solid white !important;
343
+ box-shadow: 0 0 0 10px #ffffff, inset 0 0 0 6px rgba(0, 0, 0, 0.2);
344
+ }
345
+
346
+ /* line 308, ../theme-output.scss */
347
+ .reveal .rh-pattern {
348
+ width: 256px;
349
+ height: 256px;
350
+ }
351
+
352
+ /* line 313, ../theme-output.scss */
353
+ .reveal .rh-pattern path {
354
+ transition: all .5s ease;
355
+ }
356
+
357
+ /* line 317, ../theme-output.scss */
358
+ .reveal .future .rh-pattern path {
359
+ stroke-dasharray: 0, 85 !important;
360
+ }
361
+
362
+ /* line 321, ../theme-output.scss */
363
+ .reveal .present .rh-pattern path {
364
+ stroke-dasharray: 80, 0 !important;
365
+ }
366
+
367
+ /* line 325, ../theme-output.scss */
368
+ .reveal div[data-block-type="snippet"] > .sl-block-content > svg,
369
+ .reveal div[data-block-type="snippet"] .icon,
370
+ .reveal div[data-block-type="snippet"] .product {
371
+ position: absolute;
372
+ top: 0;
373
+ left: 0;
374
+ right: 0;
375
+ bottom: 0;
376
+ width: 100%;
377
+ height: 100%;
378
+ }
379
+
380
+ /* line 337, ../theme-output.scss */
381
+ .reveal div[data-block-type="snippet"] .icon {
382
+ top: -15%;
383
+ right: -15%;
384
+ bottom: -15%;
385
+ left: -15%;
386
+ width: 130%;
387
+ height: 130%;
388
+ }
389
+
390
+ /* line 346, ../theme-output.scss */
391
+ .reveal div[data-block-type="snippet"] {
392
+ min-width: 60px !important;
393
+ min-height: 40px !important;
394
+ }
395
+
396
+ /* line 351, ../theme-output.scss */
397
+ .reveal div[data-block-type="text"] {
398
+ font-size: 20px;
399
+ }
400
+
401
+ /* line 355, ../theme-output.scss */
402
+ .reveal .triangle-element,
403
+ .reveal .triangle-element * {
404
+ user-select: none;
405
+ }
406
+
407
+ /* line 360, ../theme-output.scss */
408
+ .reveal .has-light-background .closing-logo.logotype path {
409
+ fill: #000000 !important;
410
+ }
411
+
412
+ @-webkit-keyframes closing-animation {
413
+ 0% {
414
+ -webkit-transform: scale(4) translate(40%);
415
+ transform: scale(4) translate(40%);
416
+ opacity: 0;
417
+ }
418
+ 80% {
419
+ -webkit-transform: scale(1) translate(30%);
420
+ transform: scale(1) translate(30%);
421
+ }
422
+ }
423
+ @-moz-keyframes closing-animation {
424
+ 0% {
425
+ -webkit-transform: scale(4) translate(40%);
426
+ transform: scale(4) translate(40%);
427
+ opacity: 0;
428
+ }
429
+ 80% {
430
+ -webkit-transform: scale(1) translate(30%);
431
+ transform: scale(1) translate(30%);
432
+ }
433
+ }
434
+ @-ms-keyframes closing-animation {
435
+ 0% {
436
+ -webkit-transform: scale(4) translate(40%);
437
+ transform: scale(4) translate(40%);
438
+ opacity: 0;
439
+ }
440
+ 80% {
441
+ -webkit-transform: scale(1) translate(30%);
442
+ transform: scale(1) translate(30%);
443
+ }
444
+ }
445
+ @-o-keyframes closing-animation {
446
+ 0% {
447
+ -webkit-transform: scale(4) translate(40%);
448
+ transform: scale(4) translate(40%);
449
+ opacity: 0;
450
+ }
451
+ 80% {
452
+ -webkit-transform: scale(1) translate(30%);
453
+ transform: scale(1) translate(30%);
454
+ }
455
+ }
456
+ @keyframes closing-animation {
457
+ 0% {
458
+ -webkit-transform: scale(4) translate(40%);
459
+ transform: scale(4) translate(40%);
460
+ opacity: 0;
461
+ }
462
+ 80% {
463
+ -webkit-transform: scale(1) translate(30%);
464
+ transform: scale(1) translate(30%);
465
+ }
466
+ }
467
+ /* line 424, ../theme-output.scss */
468
+ .reveal .present .closing-logo.icon {
469
+ -webkit-animation: closing-animation 1.5s 1;
470
+ -moz-animation: closing-animation 1.5s 1;
471
+ -o-animation: closing-animation 1.5s 1;
472
+ animation: closing-animation 1.5s 1;
473
+ }
474
+
475
+ /* line 431, ../theme-output.scss */
476
+ .reveal .present .closing-logo.logotype {
477
+ -webkit-animation: closing-text-animation 1.8s 1;
478
+ -moz-animation: closing-text-animation 1.8s 1;
479
+ -o-animation: closing-text-animation 1.8s 1;
480
+ animation: closing-text-animation 1.8s 1;
481
+ }
482
+
483
+ @-webkit-keyframes closing-text-animation {
484
+ 0% {
485
+ opacity: 0;
486
+ -webkit-transform: translate(-10%);
487
+ transform: translate(-10%);
488
+ }
489
+ 70% {
490
+ -webkit-transform: translate(-10%);
491
+ transform: translate(-10%);
492
+ opacity: 0;
493
+ }
494
+ 100% {
495
+ transform: none;
496
+ opacity: 1;
497
+ -webkit-transform: none;
498
+ }
499
+ }
500
+ @-moz-keyframes closing-text-animation {
501
+ 0% {
502
+ opacity: 0;
503
+ -webkit-transform: translate(-10%);
504
+ transform: translate(-10%);
505
+ }
506
+ 70% {
507
+ -webkit-transform: translate(-10%);
508
+ transform: translate(-10%);
509
+ opacity: 0;
510
+ }
511
+ 100% {
512
+ transform: none;
513
+ opacity: 1;
514
+ -webkit-transform: none;
515
+ }
516
+ }
517
+ @-ms-keyframes closing-text-animation {
518
+ 0% {
519
+ opacity: 0;
520
+ -webkit-transform: translate(-10%);
521
+ transform: translate(-10%);
522
+ }
523
+ 70% {
524
+ -webkit-transform: translate(-10%);
525
+ transform: translate(-10%);
526
+ opacity: 0;
527
+ }
528
+ 100% {
529
+ transform: none;
530
+ opacity: 1;
531
+ -webkit-transform: none;
532
+ }
533
+ }
534
+ @-o-keyframes closing-text-animation {
535
+ 0% {
536
+ opacity: 0;
537
+ -webkit-transform: translate(-10%);
538
+ transform: translate(-10%);
539
+ }
540
+ 70% {
541
+ -webkit-transform: translate(-10%);
542
+ transform: translate(-10%);
543
+ opacity: 0;
544
+ }
545
+ 100% {
546
+ transform: none;
547
+ opacity: 1;
548
+ -webkit-transform: none;
549
+ }
550
+ }
551
+ @keyframes closing-text-animation {
552
+ 0% {
553
+ opacity: 0;
554
+ -webkit-transform: translate(-10%);
555
+ transform: translate(-10%);
556
+ }
557
+ 70% {
558
+ -webkit-transform: translate(-10%);
559
+ transform: translate(-10%);
560
+ opacity: 0;
561
+ }
562
+ 100% {
563
+ transform: none;
564
+ opacity: 1;
565
+ -webkit-transform: none;
566
+ }
567
+ }
568
+ /* line 528, ../theme-output.scss */
569
+ .reveal .brand-pattern-paths path,
570
+ .reveal .pattern-path {
571
+ stroke-width: 1;
572
+ fill: none;
573
+ }
574
+
575
+ /* line 534, ../theme-output.scss */
576
+ .reveal .brand-pattern-paths path {
577
+ fill: none !important;
578
+ }
579
+
580
+ /* line 538, ../theme-output.scss */
581
+ .reveal pattern {
582
+ patterntransform: scale(2) !important;
583
+ }
584
+
585
+ /* line 542, ../theme-output.scss */
586
+ .reveal pattern.normal use {
587
+ stroke: #5e6a71;
588
+ fill: none;
589
+ }
590
+
591
+ /* line 547, ../theme-output.scss */
592
+ .reveal pattern.light use {
593
+ stroke: #fff !important;
594
+ fill: none;
595
+ }
596
+
597
+ /* line 552, ../theme-output.scss */
598
+ .reveal pattern.dark use {
599
+ stroke: #000 !important;
600
+ fill: none;
601
+ }
602
+
603
+ /* line 557, ../theme-output.scss */
604
+ .reveal .brand-pattern {
605
+ min-width: 40px;
606
+ min-height: 40px;
607
+ position: absolute;
608
+ top: 0;
609
+ left: 0;
610
+ right: 0;
611
+ bottom: 0;
612
+ width: 100%;
613
+ height: 100%;
614
+ }
615
+
616
+ /* line 569, ../theme-output.scss */
617
+ .reveal .brand-pattern path,
618
+ .reveal .brand-pattern rect {
619
+ width: 100% !important;
620
+ height: 100%;
621
+ }
622
+
623
+ /* line 575, ../theme-output.scss */
624
+ .reveal .brand-pattern.corporate {
625
+ fill: url(#pattern-corporate);
626
+ }
627
+
628
+ /* line 579, ../theme-output.scss */
629
+ .reveal .brand-pattern.storage {
630
+ fill: url(#pattern-storage);
631
+ }
632
+
633
+ /* line 583, ../theme-output.scss */
634
+ .reveal .brand-pattern.infrastructure {
635
+ fill: url(#pattern-infrastructure);
636
+ }
637
+
638
+ /* line 587, ../theme-output.scss */
639
+ .reveal .brand-pattern.cloud-infrastructure {
640
+ fill: url(#pattern-cloud-infrastructure);
641
+ }
642
+
643
+ /* line 591, ../theme-output.scss */
644
+ .reveal .brand-pattern.development {
645
+ fill: url(#pattern-development);
646
+ }
647
+
648
+ /* line 595, ../theme-output.scss */
649
+ .reveal .brand-pattern.business-process {
650
+ fill: url(#pattern-business-process);
651
+ }
652
+
653
+ /* line 599, ../theme-output.scss */
654
+ .reveal .brand-pattern.cloud-development {
655
+ fill: url(#pattern-cloud-development);
656
+ }
657
+
658
+ /* line 603, ../theme-output.scss */
659
+ .reveal .brand-pattern.development {
660
+ fill: url(#pattern-development);
661
+ }
662
+
663
+ /* line 607, ../theme-output.scss */
664
+ .reveal .brand-pattern.business-process {
665
+ fill: url(#pattern-business-process);
666
+ }
667
+
668
+ /* line 611, ../theme-output.scss */
669
+ .reveal .brand-pattern.cloud-development {
670
+ fill: url(#pattern-cloud-development);
671
+ }
672
+
673
+ /* line 615, ../theme-output.scss */
674
+ .reveal .brand-pattern.services {
675
+ fill: url(#pattern-services);
676
+ }
677
+
678
+ /* line 619, ../theme-output.scss */
679
+ .reveal .brand-pattern.partners {
680
+ fill: url(#pattern-partners);
681
+ }
682
+
683
+ /* line 623, ../theme-output.scss */
684
+ .reveal .brand-pattern.community {
685
+ fill: url(#pattern-community);
686
+ }
687
+
688
+ /* line 627, ../theme-output.scss */
689
+ .reveal #pattern-corporate-2 use {
690
+ stroke: #dd0000;
691
+ }
692
+
693
+ /* line 631, ../theme-output.scss */
694
+ .reveal #pattern-corporate use {
695
+ stroke: #cc0000;
696
+ }
697
+
698
+ /* line 635, ../theme-output.scss */
699
+ .reveal #pattern-storage use {
700
+ stroke: #ec7a08;
701
+ }
702
+
703
+ /* line 639, ../theme-output.scss */
704
+ .reveal #pattern-infrastructure-path {
705
+ stroke: #0088ce;
706
+ }
707
+
708
+ /* line 643, ../theme-output.scss */
709
+ .reveal #pattern-cloud-infrastructure use {
710
+ stroke: #0088ce;
711
+ }
712
+
713
+ /* line 647, ../theme-output.scss */
714
+ .reveal #pattern-development use {
715
+ stroke: #3f9c35;
716
+ }
717
+
718
+ /* line 651, ../theme-output.scss */
719
+ .reveal #pattern-cloud-development use {
720
+ stroke: #3f9c35;
721
+ }
722
+
723
+ /* line 655, ../theme-output.scss */
724
+ .reveal #pattern-business-process use {
725
+ stroke: #3f9c35;
726
+ }
727
+
728
+ /* line 659, ../theme-output.scss */
729
+ .reveal #pattern-partners use {
730
+ stroke: #005172;
731
+ }
732
+
733
+ /* line 663, ../theme-output.scss */
734
+ .reveal #pattern-services use {
735
+ stroke: #5e6a71;
736
+ }
737
+
738
+ /* line 667, ../theme-output.scss */
739
+ .reveal section,
740
+ .reveal .slide-background {
741
+ -webkit-backface-visibility: hidden;
742
+ -ms-backface-visibility: hidden;
743
+ backface-visibility: hidden;
744
+ }
745
+
746
+ /* line 674, ../theme-output.scss */
747
+ .reveal .slides > section.transition-slide,
748
+ .reveal .slides > section.transition-slide + section.future,
749
+ .reveal .slides > section.transition-slide + section.present,
750
+ .reveal .backgrounds > .slide-background.transition-slide,
751
+ .reveal .backgrounds > .slide-background.transition-slide + .slide-background.future,
752
+ .reveal .backgrounds > .slide-background.transition-slide + .slide-background.present {
753
+ transition: all 1s ease !important;
754
+ }
755
+
756
+ /* line 683, ../theme-output.scss */
757
+ .reveal .backgrounds > .slide-background.transition-slide {
758
+ opacity: 1;
759
+ }
760
+
761
+ /* line 687, ../theme-output.scss */
762
+ .reveal .backgrounds > .slide-background.transition-slide.past {
763
+ z-index: 99;
764
+ -webkit-transform: translate(-100%, 0);
765
+ -ms-transform: translate(-100%, 0);
766
+ transform: translate(-100%, 0);
767
+ }
768
+
769
+ /* line 694, ../theme-output.scss */
770
+ .reveal .backgrounds > .slide-background.transition-slide.future,
771
+ .reveal .backgrounds > .slide-background.transition-slide.present + .slide-background.future {
772
+ -webkit-transform: translate(100%, 0);
773
+ -ms-transform: translate(100%, 0);
774
+ transform: translate(100%, 0);
775
+ }
776
+
777
+ /* line 701, ../theme-output.scss */
778
+ .reveal .slides > section.transition-slide.past {
779
+ z-index: 99;
780
+ -webkit-transform: translate(-150%, 0);
781
+ -ms-transform: translate(-150%, 0);
782
+ transform: translate(-150%, 0);
783
+ }
784
+
785
+ /* line 708, ../theme-output.scss */
786
+ .reveal .slides > section.transition-slide.future,
787
+ .reveal .slides > section.transition-slide.future + section {
788
+ -webkit-transform: translate(150%, 0);
789
+ -ms-transform: translate(150%, 0);
790
+ transform: translate(150%, 0);
791
+ }
792
+
793
+ /* line 715, ../theme-output.scss */
794
+ .reveal .slides > section.transition-slide-up,
795
+ .reveal .slides > section.transition-slide-up + section.future,
796
+ .reveal .slides > section.transition-slide-up + section.present,
797
+ .reveal .backgrounds > .slide-background.transition-slide-up,
798
+ .reveal .backgrounds > .slide-background.transition-slide-up + .slide-background.future .backgrounds > .slide-background.transition-slide-up + .slide-background.present {
799
+ transition: all 1s ease !important;
800
+ }
801
+
802
+ /* line 723, ../theme-output.scss */
803
+ .reveal .backgrounds > .slide-background.transition-slide-up {
804
+ opacity: 1;
805
+ }
806
+
807
+ /* line 727, ../theme-output.scss */
808
+ .reveal .backgrounds > .slide-background.transition-slide-up.past {
809
+ z-index: 99;
810
+ -webkit-transform: translate(0, -100%);
811
+ -ms-transform: translate(0, -100%);
812
+ transform: translate(0, -100%);
813
+ }
814
+
815
+ /* line 734, ../theme-output.scss */
816
+ .reveal .backgrounds > .slide-background.transition-slide-up.future,
817
+ .reveal .backgrounds > .slide-background.transition-slide-up.present + .slide-background.future {
818
+ -webkit-transform: translate(0, 100%);
819
+ -ms-transform: translate(0, 100%);
820
+ transform: translate(0, 100%);
821
+ }
822
+
823
+ /* line 741, ../theme-output.scss */
824
+ .reveal .slides > section.transition-slide-up.past {
825
+ z-index: 99;
826
+ -webkit-transform: translate(0, -150%);
827
+ -ms-transform: translate(0, -150%);
828
+ transform: translate(0, -150%);
829
+ }
830
+
831
+ /* line 748, ../theme-output.scss */
832
+ .reveal .slides > section.transition-slide-up.future,
833
+ .reveal .slides > section.transition-slide-up.present + section {
834
+ -webkit-transform: translate(0, 150%);
835
+ -ms-transform: translate(0, 150%);
836
+ transform: translate(0, 150%);
837
+ }
838
+
839
+ /* line 755, ../theme-output.scss */
840
+ .reveal .slides > section.transition-zoom-in,
841
+ .reveal .slides > section.transition-zoom-in + section.future,
842
+ .reveal .slides > section.transition-zoom-in + section.present,
843
+ .reveal .backgrounds > .slide-background.transition-zoom-in,
844
+ .reveal .backgrounds > .slide-background.transition-zoom-in + .slide-background.future .backgrounds > .slide-background.transition-zoom-in + .slide-background.present {
845
+ -webkit-transition: all 1s ease !important;
846
+ -moz-transition: all 1s ease !important;
847
+ transition: all 1s ease !important;
848
+ }
849
+
850
+ /* line 765, ../theme-output.scss */
851
+ .reveal .backgrounds > .slide-background.transition-zoom-in.past {
852
+ opacity: 0 !important;
853
+ -webkit-transform: scale(1.5);
854
+ -ms-transform: scale(0.1 0.5);
855
+ transform: scale(1.5);
856
+ }
857
+
858
+ /* line 772, ../theme-output.scss */
859
+ .reveal .backgrounds > .slide-background.transition-zoom-in.future,
860
+ .reveal .backgrounds > .slide-background.transition-zoom-in.present + .slide-background.future {
861
+ opacity: 0 !important;
862
+ -webkit-transform: scale(0.01);
863
+ -ms-transform: scale(0.01);
864
+ transform: scale(0.01);
865
+ }
866
+
867
+ /* line 780, ../theme-output.scss */
868
+ .reveal.past {
869
+ z-index: -1;
870
+ opacity: 0 !important;
871
+ }
872
+
873
+ /* line 785, ../theme-output.scss */
874
+ .reveal.present + .slide-background.future {
875
+ z-index: 99;
876
+ }
877
+
878
+ /* line 789, ../theme-output.scss */
879
+ .reveal .slides > section.transition-zoom-in.past {
880
+ z-index: 99;
881
+ -webkit-transform: scale(1.5);
882
+ -ms-transform: scale(1.5);
883
+ transform: scale(1.5);
884
+ }
885
+
886
+ /* line 796, ../theme-output.scss */
887
+ .reveal .slides > section.transition-zoom-in.future {
888
+ -webkit-transform: scale(0.1);
889
+ -ms-transform: scale(0.1);
890
+ transform: scale(0.1);
891
+ }
892
+
893
+ @-webkit-keyframes icon-animation-long {
894
+ 0% {
895
+ stroke-dashoffset: 420;
896
+ stroke-width: .5px;
897
+ }
898
+ }
899
+ @-moz-keyframes icon-animation-long {
900
+ 0% {
901
+ stroke-dashoffset: 420;
902
+ stroke-width: .5px;
903
+ }
904
+ }
905
+ @-ms-keyframes icon-animation-long {
906
+ 0% {
907
+ stroke-dashoffset: 420;
908
+ stroke-width: .5px;
909
+ }
910
+ }
911
+ @keyframes icon-animation-long {
912
+ 0% {
913
+ stroke-dashoffset: 420;
914
+ stroke-width: .5px;
915
+ }
916
+ }
917
+ @-webkit-keyframes icon-animation-short {
918
+ 0% {
919
+ stroke-dashoffset: 90;
920
+ }
921
+ }
922
+ @-moz-keyframes icon-animation-short {
923
+ 0% {
924
+ stroke-dashoffset: 90;
925
+ }
926
+ }
927
+ @-ms-keyframes icon-animation-short {
928
+ 0% {
929
+ stroke-dashoffset: 90;
930
+ }
931
+ }
932
+ @keyframes icon-animation-short {
933
+ 0% {
934
+ stroke-dashoffset: 90;
935
+ }
936
+ }
937
+ /* line 854, ../theme-output.scss */
938
+ .reveal .present .animate.icon.stroked path,
939
+ .reveal .present .animate .icon.stroked path,
940
+ .reveal .fragment .icon.stroked path {
941
+ animation: 0;
942
+ -moz-animation: 0;
943
+ -webkit-animation: 0;
944
+ display: none;
945
+ }
946
+
947
+ /* line 863, ../theme-output.scss */
948
+ .reveal .present .animate.icon.stroked path.long,
949
+ .reveal .present .animate .icon.stroked path.long,
950
+ .reveal .fragment.visible .icon.stroked path.long {
951
+ display: block;
952
+ stroke-width: 2px;
953
+ -webkit-animation: icon-animation-long 3.5s 0.5s 1;
954
+ -moz-animation: icon-animation-long 3.5s 0.5s 1;
955
+ animation: icon-animation-long 3.5s 0.5s 1;
956
+ }
957
+
958
+ /* line 873, ../theme-output.scss */
959
+ .reveal .present .animate.icon.stroked path.short,
960
+ .reveal .present .animate .icon.stroked path.short,
961
+ .reveal .fragment.visible .icon.stroked path.short {
962
+ display: block;
963
+ -webkit-animation: icon-animation-short 3.5s 0.5s 1 !important;
964
+ -moz-animation: icon-animation-short 3.5s 0.5s 1 !important;
965
+ animation: icon-animation-short 3.5s 0.5s 1 !important;
966
+ }
967
+
968
+ /* line 882, ../theme-output.scss */
969
+ .reveal .triangle-element {
970
+ transition: all 0.4s cubic-bezier(0.21, 0.9, 0.55, 1) 5s;
971
+ }
972
+
973
+ /* line 886, ../theme-output.scss */
974
+ .reveal:hover .triangle-element {
975
+ transition: all 1s cubic-bezier(0.21, 0.9, 0.55, 1.16) 0s !important;
976
+ top: 100% !important;
977
+ left: 100% !important;
978
+ opacity: 0.95;
979
+ }
980
+
981
+ /* line 893, ../theme-output.scss */
982
+ .reveal .has-dark-background .only-dark {
983
+ display: none;
984
+ }
985
+
986
+ /* line 897, ../theme-output.scss */
987
+ .reveal .has-light-background .only-light {
988
+ display: none;
989
+ }
990
+
991
+ /* line 901, ../theme-output.scss */
992
+ .reveal .thinner .icon.stroked path {
993
+ stroke-width: 1px !important;
994
+ }
995
+
996
+ /* line 905, ../theme-output.scss */
997
+ .reveal .thinnest .icon.stroked path {
998
+ stroke-width: 0.05em !important;
999
+ }
1000
+
1001
+ /* line 909, ../theme-output.scss */
1002
+ .reveal .thicker .icon.stroked path {
1003
+ stroke-width: 3px !important;
1004
+ }
1005
+
1006
+ /* line 913, ../theme-output.scss */
1007
+ .reveal .thickest .icon.stroked path {
1008
+ stroke-width: 4px !important;
1009
+ }
1010
+
1011
+ /* line 917, ../theme-output.scss */
1012
+ .reveal .angle {
1013
+ -ms-transform: rotate(-45deg);
1014
+ -moz-transform: rotate(-45deg);
1015
+ -webkit-transform: rotate(-45deg);
1016
+ transform: rotate(-45deg);
1017
+ }
1018
+
1019
+ /* line 924, ../theme-output.scss */
1020
+ .reveal .skewed {
1021
+ transition: all 1s cubic-bezier(0.13, 0.81, 0.08, 1);
1022
+ -moz-transform: skew(-45deg, 0);
1023
+ -ms-transform: skew(-45deg, 0);
1024
+ -webkit-transform: skew(-45deg, 0);
1025
+ transform: skew(-45deg, 0);
1026
+ }
1027
+
1028
+ /* line 932, ../theme-output.scss */
1029
+ .reveal .future .skewed {
1030
+ margin-left: -800%;
1031
+ opacity: 0;
1032
+ }
1033
+
1034
+ /* line 937, ../theme-output.scss */
1035
+ .reveal .past .skewed {
1036
+ margin-left: 800%;
1037
+ opacity: 0;
1038
+ }
1039
+
1040
+ /* line 942, ../theme-output.scss */
1041
+ .reveal .item-label,
1042
+ .reveal .item-box {
1043
+ letter-spacing: 0em;
1044
+ font-weight: 500;
1045
+ }
1046
+
1047
+ /* line 948, ../theme-output.scss */
1048
+ .reveal .epic-content-box {
1049
+ height: 100%;
1050
+ width: 100%;
1051
+ position: absolute;
1052
+ top: 0;
1053
+ right: 0;
1054
+ bottom: 0;
1055
+ left: 0;
1056
+ }
1057
+
1058
+ /* line 958, ../theme-output.scss */
1059
+ .reveal .has-dark-background .epic-content-box {
1060
+ box-shadow: inset 0 0 0.51em rgba(0, 0, 0, 0.25), 0 0.05em 0.05em rgba(255, 255, 255, 0.1);
1061
+ background-color: rgba(0, 0, 0, 0.15);
1062
+ }
1063
+
1064
+ /* line 963, ../theme-output.scss */
1065
+ .reveal .has-light-background .epic-content-box {
1066
+ box-shadow: inset 0 0 0.2em rgba(255, 255, 255, 0.5), 0 0.06666em 0.555em 0 rgba(0, 0, 0, 0.12);
1067
+ }
1068
+
1069
+ /* line 967, ../theme-output.scss */
1070
+ .reveal .has-dark-background h1,
1071
+ .reveal .has-dark-background h2,
1072
+ .reveal .has-dark-background h3 {
1073
+ text-shadow: 0 0.05em 0.2em rgba(0, 0, 0, 0.2);
1074
+ }
1075
+
1076
+ /* line 973, ../theme-output.scss */
1077
+ .reveal .controls {
1078
+ background-color: rgba(255, 255, 255, 0.2);
1079
+ border-radius: 50%;
1080
+ box-shadow: inset 0 0.2em 1em rgba(0, 0, 0, 0.2);
1081
+ bottom: 1%;
1082
+ right: 1%;
1083
+ }
1084
+
1085
+ /* line 981, ../theme-output.scss */
1086
+ .reveal .controls {
1087
+ opacity: 0 !important;
1088
+ transition: all .5s ease 4.8s;
1089
+ transform: scale(0.4);
1090
+ }
1091
+
1092
+ /* line 987, ../theme-output.scss */
1093
+ .reveal:hover .controls {
1094
+ transform: scale(1);
1095
+ opacity: 1 !important;
1096
+ transition: all .5s ease 0s;
1097
+ }
1098
+
1099
+ /* line 993, ../theme-output.scss */
1100
+ .reveal .slides > section.present.in-3d-appear,
1101
+ .reveal .backgrounds > .slide-background.present.in-3d-appear {
1102
+ -moz-animation: slide-3d-appear 2s ease 1;
1103
+ -webkit-animation: slide-3d-appear 2s ease 1;
1104
+ animation: slide-3d-appear 2s ease 1;
1105
+ }
1106
+
1107
+ @keyframes slide-3d-appear {
1108
+ 0% {
1109
+ transition-property: all;
1110
+ transition-duration: 1s;
1111
+ -webkit-transform: scale(2) rotateX(20deg);
1112
+ -moz-transform: scale(2) rotateX(20deg);
1113
+ -ms-transform: scale(2) rotateX(20deg);
1114
+ -o-transform: scale(2) rotateX(20deg);
1115
+ transform: scale(2) rotateX(20deg);
1116
+ transform-origin: top;
1117
+ }
1118
+ }
1119
+ @-moz-keyframes slide-3d-appear {
1120
+ 0% {
1121
+ transition-property: all;
1122
+ transition-duration: 1s;
1123
+ -webkit-transform: scale(2) rotateX(20deg);
1124
+ -moz-transform: scale(2) rotateX(20deg);
1125
+ -ms-transform: scale(2) rotateX(20deg);
1126
+ -o-transform: scale(2) rotateX(20deg);
1127
+ transform: scale(2) rotateX(20deg);
1128
+ transform-origin: top;
1129
+ }
1130
+ }
1131
+ @-webkit-keyframes slide-3d-appear {
1132
+ 0% {
1133
+ transition-property: all;
1134
+ transition-duration: 1s;
1135
+ -webkit-transform: scale(2) rotateX(20deg);
1136
+ -moz-transform: scale(2) rotateX(20deg);
1137
+ -ms-transform: scale(2) rotateX(20deg);
1138
+ -o-transform: scale(2) rotateX(20deg);
1139
+ transform: scale(2) rotateX(20deg);
1140
+ transform-origin: top;
1141
+ }
1142
+ }
1143
+ /* line 1039, ../theme-output.scss */
1144
+ .reveal .backgrounds {
1145
+ transition-property: height;
1146
+ transition-duration: 1s;
1147
+ perspective: 1000px;
1148
+ transform-style: preserve-3d;
1149
+ }
1150
+
1151
+ /* line 1046, ../theme-output.scss */
1152
+ .reveal .complex-logo {
1153
+ min-height: 70px;
1154
+ min-width: 70px;
1155
+ width: 100%;
1156
+ }
1157
+
1158
+ /* line 1052, ../theme-output.scss */
1159
+ .reveal .complex-logo,
1160
+ .reveal .complex-logo svg,
1161
+ .reveal .complex-logo > div {
1162
+ position: absolute;
1163
+ top: 0;
1164
+ right: 0;
1165
+ bottom: 0;
1166
+ left: 0;
1167
+ width: 100%;
1168
+ height: 100%;
1169
+ }
1170
+
1171
+ /* line 1064, ../theme-output.scss */
1172
+ .reveal .complex-logo > div.line-icon,
1173
+ .reveal .complex-logo svg > div.line-icon,
1174
+ .reveal .complex-logo > div > div.line-icon,
1175
+ .reveal .complex-logo > div.logomark,
1176
+ .reveal .complex-logo svg > div.logomark,
1177
+ .reveal .complex-logo > div > div.logomark {
1178
+ transform-origin: 12% 50%;
1179
+ }
1180
+
1181
+ /* line 1073, ../theme-output.scss */
1182
+ .reveal .animated .complex-logo div {
1183
+ transition: all .5s ease;
1184
+ }
1185
+
1186
+ /* line 1077, ../theme-output.scss */
1187
+ .reveal .animated .complex-logo div.line-icon {
1188
+ transition-delay: 2s;
1189
+ }
1190
+
1191
+ /* line 1081, ../theme-output.scss */
1192
+ .reveal .animated .complex-logo div.line-icon path {
1193
+ transition: all 1s ease .52s;
1194
+ stroke-dasharray: 100, 10;
1195
+ }
1196
+
1197
+ /* line 1086, ../theme-output.scss */
1198
+ .reveal .animated .complex-logo div.event-name {
1199
+ transition-delay: 1s;
1200
+ }
1201
+
1202
+ /* line 1090, ../theme-output.scss */
1203
+ .reveal .animated .complex-logo div.location {
1204
+ transition-delay: 1.4s;
1205
+ }
1206
+
1207
+ /* line 1094, ../theme-output.scss */
1208
+ .reveal .future .animated .complex-logo > div {
1209
+ transition: none;
1210
+ }
1211
+
1212
+ /* line 1098, ../theme-output.scss */
1213
+ .reveal .future .animated .complex-logo > div.line-icon path {
1214
+ stroke-dasharray: 0, 100;
1215
+ transition: none;
1216
+ }
1217
+
1218
+ /* line 1103, ../theme-output.scss */
1219
+ .reveal .future .animated .complex-logo {
1220
+ /*.line-icon{transform:rotate(30deg); opacity:0;}*/
1221
+ }
1222
+
1223
+ /* line 1108, ../theme-output.scss */
1224
+ .reveal .future .animated .complex-logo .logomark {
1225
+ transform: translate(0, -20%);
1226
+ }
1227
+
1228
+ /* line 1112, ../theme-output.scss */
1229
+ .reveal .future .animated .complex-logo .location {
1230
+ transform: translate(0, 0.5em);
1231
+ opacity: 0;
1232
+ }
1233
+
1234
+ /* line 1117, ../theme-output.scss */
1235
+ .reveal .future .animated .complex-logo .event-name {
1236
+ opacity: 0;
1237
+ transform: translate(-0.6em, 0);
1238
+ }
1239
+
1240
+ /* line 1122, ../theme-output.scss */
1241
+ .reveal svg path {
1242
+ fill: currentcolor;
1243
+ }
1244
+
1245
+ /* line 1126, ../theme-output.scss */
1246
+ .reveal .lowercase {
1247
+ text-transform: lowercase;
1248
+ }
1249
+
1250
+ /* line 1130, ../theme-output.scss */
1251
+ .reveal .pop-in.fragment {
1252
+ -webkit-transform: scale(0.2);
1253
+ -moz-transform: scale(0.2);
1254
+ -ms-transform: scale(0.2);
1255
+ -o-transform: scale(0.2);
1256
+ transform: scale(0.2);
1257
+ -webkit-transition: 2s ease 0.25s;
1258
+ -moz-transition: 2s ease 0.25s;
1259
+ -o-transition: 2s ease 0.25s;
1260
+ -ms-transition: 2s ease 0.25s;
1261
+ transition: 2s ease 0.25s;
1262
+ -webkit-animation-delay: 0.66s;
1263
+ -moz-animation-delay: 0.66s;
1264
+ -ms-animation-delay: 0.66s;
1265
+ -o-animation-delay: 0.66s;
1266
+ animation-delay: 0.66s;
1267
+ }
1268
+
1269
+ /* line 1148, ../theme-output.scss */
1270
+ .reveal .pop-in.fragment.visible {
1271
+ -webkit-transform: scale(1);
1272
+ -moz-transform: scale(1);
1273
+ -ms-transform: scale(1);
1274
+ -o-transform: scale(1);
1275
+ transform: scale(1);
1276
+ }
1277
+
1278
+ /* line 1156, ../theme-output.scss */
1279
+ .reveal .pop-in.fragment.current-fragment {
1280
+ color: #c22;
1281
+ }
1282
+
1283
+ /* line 1160, ../theme-output.scss */
1284
+ .reveal .grow-width {
1285
+ -webkit-transition: all 0.5s ease 0.2s;
1286
+ -moz-transition: all 0.5s ease 0.2s;
1287
+ -o-transition: all 0.5s ease 0.2s;
1288
+ -ms-transition: all 0.5s ease 0.2s;
1289
+ transition: all 0.5s ease 0.2s;
1290
+ }
1291
+
1292
+ /* line 1168, ../theme-output.scss */
1293
+ .reveal .future .grow-width {
1294
+ width: 0% !important;
1295
+ -webkit-transition: none;
1296
+ -moz-transition: none;
1297
+ -o-transition: none;
1298
+ -ms-transition: none;
1299
+ transition: none;
1300
+ }
1301
+
1302
+ /* line 1177, ../theme-output.scss */
1303
+ .reveal .stampit {
1304
+ -webkit-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s;
1305
+ -moz-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s;
1306
+ -o-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s;
1307
+ -ms-transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s;
1308
+ transition: all 1s cubic-bezier(0.79, 0.53, 0.46, 1.3) 1s;
1309
+ }
1310
+
1311
+ /* line 1185, ../theme-output.scss */
1312
+ .reveal .future .stampit {
1313
+ -webkit-transform: rotate(-12deg) scale(2);
1314
+ -moz-transform: rotate(-12deg) scale(2);
1315
+ -ms-transform: rotate(-12deg) scale(2);
1316
+ -o-transform: rotate(-12deg) scale(2);
1317
+ transform: rotate(-12deg) scale(2);
1318
+ -webkit-transition: none;
1319
+ -moz-transition: none;
1320
+ -o-transition: none;
1321
+ -ms-transition: none;
1322
+ transition: none;
1323
+ opacity: 0;
1324
+ }
1325
+
1326
+ /* line 1199, ../theme-output.scss */
1327
+ .reveal .headshot img {
1328
+ border-radius: 50%;
1329
+ border: 4px solid #c00 !important;
1330
+ }
1331
+
1332
+ /* line 1204, ../theme-output.scss */
1333
+ .reveal .condensed {
1334
+ letter-spacing: 0.02em;
1335
+ }
1336
+
1337
+ /* line 1208, ../theme-output.scss */
1338
+ .reveal .condensed li {
1339
+ margin-bottom: 1em;
1340
+ }
1341
+
1342
+ /* line 1212, ../theme-output.scss */
1343
+ .reveal .has-light-background .sl-block .has-dark-background > svg.redhat-logo .logotext {
1344
+ fill: #ffffff !important;
1345
+ }
1346
+
1347
+ /* line 1216, ../theme-output.scss */
1348
+ .reveal .has-light-background .sl-block .reversed.redhat-logo .logotext,
1349
+ .reveal .has-light-background .sl-block .reversed .redhat-logo .logotext,
1350
+ .reveal .has-light-background .sl-block .has-dark-background > .redhat-logo .logotext {
1351
+ fill: #ffffff !important;
1352
+ }
1353
+
1354
+ /* line 1222, ../theme-output.scss */
1355
+ .reveal .has-dark-background .sl-block .reversed.redhat-logo .logotext,
1356
+ .reveal .has-dark-background .sl-block .reversed .redhat-logo .logotext,
1357
+ .reveal .has-dark-background .sl-block .has-light-background > .redhat-logo .logotext {
1358
+ fill: #000000 !important;
1359
+ }
1360
+
1361
+ /* line 1228, ../theme-output.scss */
1362
+ .reveal .has-dark-background .has-light-background .logo .only-dark path,
1363
+ .reveal .has-light-background .mono.redhat-logo path {
1364
+ fill: #000000 !important;
1365
+ }
1366
+
1367
+ /* line 1233, ../theme-output.scss */
1368
+ .reveal .has-dark-background .mono.redhat-logo path {
1369
+ fill: #ffffff;
1370
+ }
1371
+
1372
+ /* line 1237, ../theme-output.scss */
1373
+ .reveal .has-dark-background .logo .only-dark {
1374
+ display: block;
1375
+ }
1376
+
1377
+ /* line 1241, ../theme-output.scss */
1378
+ .reveal .has-light-background .logo .only-light {
1379
+ display: block;
1380
+ }
1381
+
1382
+ /* line 1245, ../theme-output.scss */
1383
+ .reveal .has-light-background .logo .only-dark {
1384
+ display: none;
1385
+ }
1386
+
1387
+ /* line 1249, ../theme-output.scss */
1388
+ .reveal .has-dark-background .logo .only-light {
1389
+ display: none;
1390
+ }
1391
+
1392
+ /* line 1253, ../theme-output.scss */
1393
+ .reveal .has-light-background .reversed svg path {
1394
+ fill: #ffffff !important;
1395
+ }
1396
+
1397
+ /* line 1257, ../theme-output.scss */
1398
+ .reveal .has-dark-background .reversed svg path {
1399
+ fill: currentcolor !important;
1400
+ }
1401
+
1402
+ /* line 1261, ../theme-output.scss */
1403
+ .reveal .has-dark-background .has-light-background .logo .only-light,
1404
+ .reveal .has-dark-background .reversed .logo .only-dark {
1405
+ display: block;
1406
+ }
1407
+
1408
+ /* line 1266, ../theme-output.scss */
1409
+ .reveal .has-light-background .has-dark-background .logo .only-dark,
1410
+ .reveal .has-light-background .logo .only-light {
1411
+ display: block;
1412
+ }
1413
+
1414
+ /* line 1271, ../theme-output.scss */
1415
+ .reveal .has-light-background .has-dark-background .redhat-logo .only-dark,
1416
+ .reveal .has-light-background .redhat-logo .only-light {
1417
+ fill: #ffffff !important;
1418
+ }
1419
+
1420
+ /* line 1276, ../theme-output.scss */
1421
+ .reveal .has-light-background .has-dark-background .logo .only-light,
1422
+ .reveal .has-light-background .logo .only-dark,
1423
+ .reveal .has-dark-background .has-light-background .logo .only-dark,
1424
+ .reveal .has-dark-background .logo .only-light {
1425
+ display: none;
1426
+ }
1427
+
1428
+ /* line 1283, ../theme-output.scss */
1429
+ .reveal .future .fade-up,
1430
+ .reveal .future .fade-down,
1431
+ .reveal .future .fade-left,
1432
+ .reveal .future .fade-right,
1433
+ .reveal .future .fade-zoom {
1434
+ -webkit-transition: none;
1435
+ transition: none;
1436
+ opacity: 0;
1437
+ filter: alpha(opacity=0);
1438
+ }
1439
+
1440
+ /* line 1294, ../theme-output.scss */
1441
+ .reveal .future .fade-up,
1442
+ .reveal .fade-up.fragment {
1443
+ -webkit-transform: translate(0, 2em);
1444
+ -ms-transform: translate(0, 2em);
1445
+ transform: translate(0, 2em);
1446
+ opacity: 0;
1447
+ filter: alpha(opacity=0);
1448
+ }
1449
+
1450
+ /* line 1303, ../theme-output.scss */
1451
+ .reveal .future .fade-down,
1452
+ .reveal .fade-down.fragment {
1453
+ -webkit-transform: translate(0, -2em);
1454
+ -ms-transform: translate(0, -2em);
1455
+ transform: translate(0, -2em);
1456
+ opacity: 0;
1457
+ filter: alpha(opacity=0);
1458
+ }
1459
+
1460
+ /* line 1312, ../theme-output.scss */
1461
+ .reveal .future .fade-left,
1462
+ .reveal .fade-left.fragment {
1463
+ -webkit-transform: translate(2em, 0);
1464
+ -ms-transform: translate(2em, 0);
1465
+ transform: translate(2em, 0);
1466
+ opacity: 0;
1467
+ filter: alpha(opacity=0);
1468
+ }
1469
+
1470
+ /* line 1321, ../theme-output.scss */
1471
+ .reveal .future .fade-right,
1472
+ .reveal .fade-right.fragment {
1473
+ -webkit-transform: translate(-2em, 0);
1474
+ -ms-transform: translate(-2em, 0);
1475
+ transform: translate(-2em, 0);
1476
+ opacity: 0;
1477
+ filter: alpha(opacity=0);
1478
+ }
1479
+
1480
+ /* line 1330, ../theme-output.scss */
1481
+ .reveal .future .fade-zoom,
1482
+ .reveal .fade-zoom.fragment {
1483
+ -webkit-transform: scale(0.1);
1484
+ -ms-transform: scale(0.1);
1485
+ transform: scale(0.1);
1486
+ opacity: 0;
1487
+ filter: alpha(opacity=0);
1488
+ }
1489
+
1490
+ /* line 1339, ../theme-output.scss */
1491
+ .reveal .present .fade-up,
1492
+ .reveal .present .fade-down,
1493
+ .reveal .present .fade-left,
1494
+ .reveal .present .fade-right,
1495
+ .reveal .present .fade-zoom {
1496
+ -webkit-transition: all .5s ease .5s;
1497
+ transition: all .5s ease .5s;
1498
+ opacity: 1;
1499
+ filter: alpha(opacity=100);
1500
+ }
1501
+
1502
+ /* line 1350, ../theme-output.scss */
1503
+ .reveal .present .fragment.visible.fade-up,
1504
+ .reveal .present .fragment.visible.fade-down,
1505
+ .reveal .present .fragment.visible.fade-left,
1506
+ .reveal .present .fragment.visible.fade-right,
1507
+ .reveal .present .fragment.visible.fade-zoom {
1508
+ -webkit-transform: none;
1509
+ -ms-transform: none;
1510
+ transform: none;
1511
+ opacity: 1;
1512
+ filter: alpha(opacity=100);
1513
+ }