hyla 1.0.7 → 1.0.8
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 +8 -8
- data/Rakefile +6 -2
- data/bin/hyla +3 -2
- data/lib/hyla/commands/generate.rb +43 -41
- data/lib/hyla/configuration.rb +1 -1
- data/lib/hyla/project.rb +1 -1
- data/lib/resources/assets/revealjs-redhat/image/collapsed.png +0 -0
- data/lib/resources/assets/revealjs-redhat/image/expanded.png +0 -0
- data/lib/resources/assets/revealjs-redhat/lib/css/conference.css +663 -0
- data/lib/resources/assets/revealjs-redhat/lib/css/font-awesome-4.3.0.css +2886 -1098
- data/lib/resources/assets/revealjs-redhat/lib/css/gpe.css +746 -180
- data/lib/resources/assets/revealjs-redhat/lib/css/print/pdf.css +32 -65
- data/lib/resources/assets/revealjs-redhat/lib/css/theme-output.css +1509 -395
- data/lib/resources/assets/revealjs-redhat/lib/css/theme-v2-liberation.css +4332 -1366
- data/lib/resources/assets/revealjs-redhat/lib/css/theme-v2-overpass.css +4320 -1364
- data/lib/resources/assets/revealjs-redhat/lib/js/debug/gpe.js +8 -8
- data/lib/resources/assets/revealjs-redhat/lib/js/debug/reveal.js +129 -91
- data/lib/resources/assets/revealjs-redhat/lib/js/gpe.min.js +3 -3
- data/lib/resources/assets/revealjs-redhat/lib/js/reveal.min.js +18 -13
- data/lib/resources/assets/revealjs/css/theme/conference-redhat.css +14 -6
- data/lib/resources/assets/revealjs/css/theme/old-gpe.css +670 -181
- data/lib/resources/assets/revealjs/js/{reveal.js → debug/reveal.js} +1619 -492
- data/lib/resources/assets/revealjs/js/reveal.min.js +342 -9
- data/lib/resources/assets/revealjs/lib/css/font-awesome-4.3.0.css +2886 -1098
- data/lib/resources/assets/sass/conference.scss +589 -0
- data/lib/resources/assets/sass/new-gpe.scss +79 -0
- data/lib/resources/backends/slim/revealjs-redhat/block_paragraph.html.slim +18 -6
- data/lib/resources/backends/slim/revealjs-redhat/block_ulist.html.slim +25 -9
- data/lib/resources/backends/slim/revealjs/document.html.slim +1 -1
- data/lib/templates/course/audio.txt +2 -2
- data/lib/templates/course/cover.txt +19 -7
- data/lib/templates/course/footer.txt +1 -3
- data/lib/templates/course/index.txt +2 -2
- data/lib/templates/course/labinstructions.txt +1 -3
- data/lib/templates/course/objectives.txt +1 -12
- data/lib/templates/course/summary.txt +1 -8
- metadata +7 -3
@@ -9,28 +9,28 @@
|
|
9
9
|
*********************************************/
|
10
10
|
@font-face {
|
11
11
|
font-family: 'liberation';
|
12
|
-
src: url("../../lib/font/
|
12
|
+
src: url("../../lib/font/liberation/LiberationSans-Regular-webfont.ttf") format('truetype');
|
13
13
|
font-weight: normal;
|
14
14
|
font-style: normal;
|
15
15
|
}
|
16
16
|
|
17
17
|
@font-face {
|
18
18
|
font-family: 'liberation';
|
19
|
-
src: url("../../lib/font/
|
19
|
+
src: url("../../lib/font/liberation/LiberationSans-Bold-webfont.ttf") format('truetype');
|
20
20
|
font-weight: bold;
|
21
21
|
font-style: normal;
|
22
22
|
}
|
23
23
|
|
24
24
|
@font-face {
|
25
25
|
font-family: 'liberation';
|
26
|
-
src: url("../../lib/font/
|
26
|
+
src: url("../../lib/font/liberation/LiberationSans-BoldItalic-webfont.ttf") format('truetype');
|
27
27
|
font-weight: bold;
|
28
28
|
font-style: italic;
|
29
29
|
}
|
30
30
|
|
31
31
|
@font-face {
|
32
32
|
font-family: 'liberation';
|
33
|
-
src: url("../../lib/font/
|
33
|
+
src: url("../../lib/font/liberation/LiberationSans-Italic-webfont.ttf") format('truetype');
|
34
34
|
font-weight: normal;
|
35
35
|
font-style: italic;
|
36
36
|
}
|
@@ -303,7 +303,8 @@ body {
|
|
303
303
|
******************************************************/
|
304
304
|
table.tableblock, table.tableblock td {
|
305
305
|
border-style: solid;
|
306
|
-
border-color: rgb(183, 188, 190)
|
306
|
+
/*border-color: rgb(183, 188, 190);*/
|
307
|
+
border-color: white;
|
307
308
|
border-width: 0.99px;
|
308
309
|
border-collapse: collapse;
|
309
310
|
border-spacing: 0px;
|
@@ -330,7 +331,7 @@ table.tableblock:not(.noredheader) tr:first-child td {
|
|
330
331
|
}
|
331
332
|
|
332
333
|
table.tableblock.noredheader tr:first-child td {
|
333
|
-
background-color:
|
334
|
+
background-color: white;
|
334
335
|
}
|
335
336
|
|
336
337
|
table.tableblock tr:nth-child(even) {
|
@@ -374,6 +375,13 @@ li strong {
|
|
374
375
|
font-weight: bold;
|
375
376
|
}
|
376
377
|
|
378
|
+
/*************************************************************
|
379
|
+
* Increase Font size for Text displayed within the Cover page
|
380
|
+
* as title
|
381
|
+
*************************************************************/
|
382
|
+
section .paragraph p strong {
|
383
|
+
font-size: 50px;
|
384
|
+
}
|
377
385
|
/*********************************************************************************
|
378
386
|
* Trick to avoid to define [square] or [circle] for each item of an unordered list
|
379
387
|
* and solve issue that we have here as we have nested lists
|
@@ -1,196 +1,685 @@
|
|
1
|
-
/*
|
2
|
-
|
1
|
+
/*
|
2
|
+
* NOT USED ANYMORE - Using Compass Font-Face
|
3
|
+
* @import "compass/css3/font-face";
|
4
|
+
* @include font-face('Liberation Sans', font-files("liberationSans-Regular.ttf",
|
5
|
+
"liberationSans-Bold.ttf",
|
6
|
+
"liberationSans-Italic.ttf",
|
7
|
+
"liberationSans-BoldItalic.ttf"));
|
8
|
+
|
9
|
+
@include font-face('Overpass', font-files("Overpass_Regular.ttf",
|
10
|
+
"Overpass_Bold.ttf",
|
11
|
+
"Overpass_Light.ttf",
|
12
|
+
"Overpass_Regular.ttf"));
|
3
13
|
*/
|
4
|
-
/*
|
14
|
+
/*
|
15
|
+
* NOT USED ANYMORE - Import font Awesome Fonts using the gem installed
|
16
|
+
* @import "font-awesome-compass";
|
17
|
+
* @import "font-awesome";
|
5
18
|
*/
|
6
|
-
/*
|
19
|
+
/*
|
20
|
+
* @import url(http://red-hat-overpass-fonts.s3.amazonaws.com/overpass.css);
|
21
|
+
*/
|
7
22
|
/* $debug-configuration: true; */
|
8
|
-
@font-face {
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
23
|
+
@font-face {
|
24
|
+
font-family: 'Overpass';
|
25
|
+
src: local("Overpass"), url("../../lib/font/overpass/overpass_regular-web.eot?#iefix") format("eot"), url("../../lib/font/overpass/overpass_regular-web.woff") format("woff"), url("../../lib/font/overpass/overpass_regular-web.ttf") format("truetype"), url("../../lib/font/overpass/overpass_regular-web.svg#webfontLTZe4IYH") format("svg");
|
26
|
+
font-weight: normal;
|
27
|
+
font-style: normal;
|
28
|
+
}
|
29
|
+
@font-face {
|
30
|
+
font-family: 'Overpass';
|
31
|
+
src: local("Overpass Bold"), local("OverpassBold"), url("../../lib/font/overpass/overpass_bold-web.eot?#iefix") format("eot"), url("../../lib/font/overpass/overpass_bold-web.woff") format("woff"), url("../../lib/font/overpass/overpass_bold-web.ttf") format("truetype"), url("../../lib/font/overpass/overpass_bold-web.svg#webfontzAU82Ltw") format("svg");
|
32
|
+
font-weight: bold;
|
33
|
+
font-style: normal;
|
34
|
+
}
|
35
|
+
@font-face {
|
36
|
+
font-family: 'Liberation Sans';
|
37
|
+
src: local("Liberation"), url("../lib/font/liberation/LiberationSans-Regular-webfont.eot?#iefix") format("eot"), url("../lib/font/liberation/LiberationSans-Regular-webfont.woff") format("woff"), url("../lib/font/liberation/LiberationSans-Regular-webfont.ttf") format("truetype"), url("../lib/font/liberation/LiberationSans-Regular-webfont.svg#webfontLTZe4IYH") format("svg");
|
38
|
+
font-weight: normal;
|
39
|
+
font-style: normal;
|
40
|
+
}
|
41
|
+
@font-face {
|
42
|
+
font-family: 'Liberation Sans';
|
43
|
+
src: local("Liberation Bold"), local("LiberationBold"), url("../lib/font/liberation/LiberationSans-Bold-webfont.eot?#iefix") format("eot"), url("../lib/font/liberation/LiberationSans-Bold-webfont.woff") format("woff"), url("../lib/font/liberation/LiberationSans-Bold-webfont.ttf") format("truetype"), url("../lib/font/liberation/LiberationSans-Bold-webfont.svg#webfontzAU82Ltw") format("svg");
|
44
|
+
font-weight: bold;
|
45
|
+
font-style: normal;
|
46
|
+
}
|
47
|
+
@font-face {
|
48
|
+
font-family: 'Liberation Sans';
|
49
|
+
src: local("Liberation Italic"), local("LiberationItalic"), url("../lib/font/liberation/LiberationSans-Italic-webfont.eot?#iefix") format("eot"), url("../lib/font/liberation/LiberationSans-Italic-webfont.woff") format("woff"), url("../lib/font/liberation/LiberationSans-Italic-webfont.ttf") format("truetype"), url("../lib/font/liberation/LiberationSans-Italic-webfont.svg#webfontzAU82Ltw") format("svg");
|
50
|
+
font-weight: normal;
|
51
|
+
font-style: italic;
|
52
|
+
}
|
53
|
+
@font-face {
|
54
|
+
font-family: 'Liberation Sans';
|
55
|
+
src: local("Liberation Bold Italic"), local("LiberationBoldItalic"), url("../lib/font/liberation/LiberationSans-BoldItalic-webfont.eot?#iefix") format("eot"), url("../lib/font/liberation/LiberationSans-BoldItalic-webfont.woff") format("woff"), url("../lib/font/liberation/LiberationSans-BoldItalic-webfont.ttf") format("truetype"), url("../lib/font/liberation/LiberationSans-BoldItalic-webfont.svg#webfontzAU82Ltw") format("svg");
|
56
|
+
font-weight: bold;
|
57
|
+
font-style: italic;
|
58
|
+
}
|
59
|
+
/*
|
60
|
+
* We dont import the css content of font-awesome here
|
61
|
+
* as it will added to the HTML of the slideshow as a local/remote resource
|
62
|
+
* @import "font-awesome";
|
63
|
+
*/
|
15
64
|
/*$var-family-name: 'Liberation Sans';*/
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
.
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
.
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
65
|
+
/* line 40, ../old-gpe.scss */
|
66
|
+
body {
|
67
|
+
font-family: "Liberation Sans", "Overpass", "Open Sans", sans-serif;
|
68
|
+
}
|
69
|
+
|
70
|
+
/*********************************************
|
71
|
+
* ScrollBar
|
72
|
+
* Feb 24, ART: Changed the height of the scrollbar from 450 600
|
73
|
+
* Feb 24, ART: Changed the padding from 10 20 20 20 to 5 10 10 10
|
74
|
+
* Feb 24, ART: Changed the margin from 20px 0 0 to 5px 0 0
|
75
|
+
* Mar 02, CHM: Increase height from 600 to 670px
|
76
|
+
* Mar 06, CHM: Change overflow from scroll to auto
|
77
|
+
*********************************************/
|
78
|
+
/* line 52, ../old-gpe.scss */
|
79
|
+
.scrollbar {
|
80
|
+
border: 1px solid #eee;
|
81
|
+
height: 670px;
|
82
|
+
overflow: auto;
|
83
|
+
margin: 5px 0 0;
|
84
|
+
padding: 5px 10px 10px 10px;
|
85
|
+
}
|
86
|
+
|
87
|
+
/**************************************************************
|
88
|
+
* Style used to display the cover picture full screen
|
89
|
+
* Add this tag [.cover] before the picture of the cover page
|
90
|
+
* Mar 04 2015, CHM: Initial
|
91
|
+
**************************************************************/
|
92
|
+
/* line 65, ../old-gpe.scss */
|
93
|
+
.cover {
|
94
|
+
position: absolute;
|
95
|
+
top: 20px;
|
96
|
+
text-align: center;
|
97
|
+
}
|
98
|
+
|
99
|
+
/*********************************************
|
100
|
+
* Corporate Logo Header Image
|
101
|
+
* Feb 26, CHM: Changed the height from 80px to 0px
|
102
|
+
*********************************************/
|
103
|
+
/* line 75, ../old-gpe.scss */
|
104
|
+
.header {
|
105
|
+
position: absolute;
|
106
|
+
margin: 0 auto;
|
107
|
+
left: 0;
|
108
|
+
right: 0;
|
109
|
+
top: 0;
|
110
|
+
height: 0px;
|
111
|
+
font-family: "Liberation Sans", "Overpass", "Open Sans", sans-serif;
|
112
|
+
font-size: 20px;
|
113
|
+
text-align: center;
|
114
|
+
}
|
115
|
+
|
116
|
+
/*********************************************
|
117
|
+
* Copyright Footer
|
118
|
+
* Feb 24, ART: Changed to footer height from 80 to 40
|
119
|
+
*********************************************/
|
120
|
+
/* line 91, ../old-gpe.scss */
|
121
|
+
.footer {
|
122
|
+
position: absolute;
|
123
|
+
margin: 0 auto;
|
124
|
+
left: 0;
|
125
|
+
right: 0;
|
126
|
+
bottom: 0;
|
127
|
+
height: 40px;
|
128
|
+
font-family: "Liberation Sans", "Overpass", "Open Sans", sans-serif;
|
129
|
+
font-size: 20px;
|
130
|
+
text-align: center;
|
131
|
+
}
|
132
|
+
|
133
|
+
/*********************************************
|
134
|
+
* GLOBAL STYLES
|
135
|
+
* Feb 24, ART: added a border to the body, attempting to see how the margin is being used.
|
136
|
+
* Feb 24, ART: added a border to the reveal section, attempting to see how the margin is being used.
|
137
|
+
*********************************************/
|
138
|
+
/* line 108, ../old-gpe.scss */
|
139
|
+
body {
|
140
|
+
background: white;
|
141
|
+
background-color: white;
|
142
|
+
}
|
143
|
+
|
144
|
+
/* line 113, ../old-gpe.scss */
|
145
|
+
.reveal {
|
146
|
+
font-family: "Liberation Sans", "Overpass", "Open Sans", sans-serif;
|
147
|
+
font-size: 28px;
|
148
|
+
font-weight: normal;
|
149
|
+
letter-spacing: -0.02em;
|
150
|
+
color: black;
|
151
|
+
}
|
152
|
+
|
153
|
+
/* line 122, ../old-gpe.scss */
|
154
|
+
::selection {
|
155
|
+
color: white;
|
156
|
+
background: rgba(0, 0, 0, 0.99);
|
157
|
+
text-shadow: none;
|
158
|
+
}
|
159
|
+
|
160
|
+
/*********************************************
|
161
|
+
* TODO - To be verified if we use it or not
|
162
|
+
*******************************************/
|
163
|
+
/* line 131, ../old-gpe.scss */
|
164
|
+
.reveal section {
|
165
|
+
text-align: left;
|
166
|
+
}
|
167
|
+
|
168
|
+
/******************************************
|
169
|
+
* Fill screen to 100% & align text on left
|
170
|
+
* Feb 26, CHM : Add top: 370px to fill the screen to 100%
|
171
|
+
******************************************/
|
172
|
+
/* line 139, ../old-gpe.scss */
|
173
|
+
.reveal .slides {
|
174
|
+
text-align: left;
|
175
|
+
top: 370px;
|
176
|
+
}
|
177
|
+
|
178
|
+
/*********************************************
|
179
|
+
* HEADERS
|
180
|
+
*********************************************/
|
181
|
+
/* line 147, ../old-gpe.scss */
|
182
|
+
.reveal h1,
|
183
|
+
.reveal h2,
|
184
|
+
.reveal h3,
|
185
|
+
.reveal h4,
|
186
|
+
.reveal h5,
|
187
|
+
.reveal h6 {
|
188
|
+
margin: 0 0 20px 0;
|
189
|
+
color: #3E4349;
|
190
|
+
font-family: "Liberation Sans", "Overpass", "Open Sans", sans-serif;
|
191
|
+
line-height: 0.9em;
|
192
|
+
letter-spacing: 0.02em;
|
193
|
+
text-transform: none;
|
194
|
+
text-shadow: none;
|
195
|
+
}
|
196
|
+
|
197
|
+
/***************************************************
|
198
|
+
* Feb 26, ART: Font Size 2em and width: 900px added
|
199
|
+
**************************************************/
|
200
|
+
/* line 165, ../old-gpe.scss */
|
201
|
+
.reveal h1 {
|
202
|
+
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
|
203
|
+
font-size: 2em;
|
204
|
+
width: 900px;
|
205
|
+
}
|
206
|
+
|
207
|
+
/* line 171, ../old-gpe.scss */
|
208
|
+
.reveal h2 {
|
209
|
+
font-size: 2em;
|
210
|
+
}
|
211
|
+
|
212
|
+
/*********************************************
|
213
|
+
* LINKS
|
214
|
+
*********************************************/
|
215
|
+
/* line 178, ../old-gpe.scss */
|
216
|
+
.reveal a:not(.image) {
|
217
|
+
color: #a70000;
|
218
|
+
text-decoration: none;
|
219
|
+
-webkit-transition: color .15s ease;
|
220
|
+
-moz-transition: color .15s ease;
|
221
|
+
-ms-transition: color .15s ease;
|
222
|
+
-o-transition: color .15s ease;
|
223
|
+
transition: color .15s ease;
|
224
|
+
}
|
225
|
+
|
226
|
+
/* line 189, ../old-gpe.scss */
|
227
|
+
.reveal a:not(.image):hover {
|
228
|
+
color: #a70000;
|
229
|
+
text-shadow: none;
|
230
|
+
border: none;
|
231
|
+
}
|
232
|
+
|
233
|
+
/* line 195, ../old-gpe.scss */
|
234
|
+
.reveal .roll span:after {
|
235
|
+
color: #fff;
|
236
|
+
background: #a70000;
|
237
|
+
}
|
238
|
+
|
239
|
+
/*********************************************
|
240
|
+
* IMAGES
|
241
|
+
*********************************************/
|
242
|
+
/* line 203, ../old-gpe.scss */
|
243
|
+
.reveal section img {
|
244
|
+
margin: 15px 0px;
|
245
|
+
background: rgba(255, 255, 255, 0.12);
|
246
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
247
|
+
-webkit-transition: all .2s linear;
|
248
|
+
-moz-transition: all .2s linear;
|
249
|
+
-ms-transition: all .2s linear;
|
250
|
+
-o-transition: all .2s linear;
|
251
|
+
transition: all .2s linear;
|
252
|
+
}
|
253
|
+
|
254
|
+
/* line 214, ../old-gpe.scss */
|
255
|
+
.reveal a:hover img {
|
256
|
+
background: rgba(255, 255, 255, 0.2);
|
257
|
+
border-color: #a70000;
|
258
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
259
|
+
}
|
260
|
+
|
261
|
+
/*********************************************
|
262
|
+
* NAVIGATION CONTROLS
|
263
|
+
*********************************************/
|
264
|
+
/* line 223, ../old-gpe.scss */
|
265
|
+
.reveal .controls div.navigate-left,
|
266
|
+
.reveal .controls div.navigate-left.enabled {
|
267
|
+
border-right-color: #C1100C;
|
268
|
+
}
|
269
|
+
|
270
|
+
/* line 228, ../old-gpe.scss */
|
271
|
+
.reveal .controls div.navigate-right,
|
272
|
+
.reveal .controls div.navigate-right.enabled {
|
273
|
+
border-left-color: #C1100C;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* line 233, ../old-gpe.scss */
|
277
|
+
.reveal .controls div.navigate-up,
|
278
|
+
.reveal .controls div.navigate-up.enabled {
|
279
|
+
border-bottom-color: #C1100C;
|
280
|
+
}
|
281
|
+
|
282
|
+
/* line 238, ../old-gpe.scss */
|
283
|
+
.reveal .controls div.navigate-down,
|
284
|
+
.reveal .controls div.navigate-down.enabled {
|
285
|
+
border-top-color: #C1100C;
|
286
|
+
}
|
287
|
+
|
288
|
+
/* line 243, ../old-gpe.scss */
|
289
|
+
.reveal .controls div.navigate-left.enabled:hover {
|
290
|
+
border-right-color: #ef6f16;
|
291
|
+
}
|
292
|
+
|
293
|
+
/* line 247, ../old-gpe.scss */
|
294
|
+
.reveal .controls div.navigate-right.enabled:hover {
|
295
|
+
border-left-color: #ef6f16;
|
296
|
+
}
|
297
|
+
|
298
|
+
/* line 251, ../old-gpe.scss */
|
299
|
+
.reveal .controls div.navigate-up.enabled:hover {
|
300
|
+
border-bottom-color: #ef6f16;
|
301
|
+
}
|
302
|
+
|
303
|
+
/* line 255, ../old-gpe.scss */
|
304
|
+
.reveal .controls div.navigate-down.enabled:hover {
|
305
|
+
border-top-color: #ef6f16;
|
306
|
+
}
|
307
|
+
|
308
|
+
/*********************************************
|
309
|
+
* PROGRESS BAR
|
310
|
+
*********************************************/
|
311
|
+
/* line 262, ../old-gpe.scss */
|
312
|
+
.reveal .progress {
|
313
|
+
background: rgba(0, 0, 0, 0.2);
|
314
|
+
}
|
315
|
+
|
316
|
+
/* line 266, ../old-gpe.scss */
|
317
|
+
.reveal .progress span {
|
318
|
+
background: #a70000;
|
319
|
+
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
320
|
+
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
321
|
+
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
322
|
+
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
323
|
+
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
324
|
+
}
|
325
|
+
|
326
|
+
/*********************************************
|
327
|
+
* SLIDE NUMBER
|
328
|
+
*********************************************/
|
329
|
+
/* line 278, ../old-gpe.scss */
|
330
|
+
.reveal .slide-number {
|
331
|
+
color: darkblue;
|
332
|
+
}
|
333
|
+
|
334
|
+
/*********************************************************************************
|
335
|
+
* Trick to avoid to define [square] or [circle] for each item of an unordered list
|
336
|
+
* and solve issue that we have here as we have nested lists
|
337
|
+
* Feb 27, CHM : Added
|
338
|
+
* Mar 04 2015, CHM: Add red colors & square, disc & circle
|
339
|
+
* Mar 13 2015, CHM: Change color to black and revert square, disc & circle
|
340
|
+
*********************************************************************************/
|
89
341
|
/* line 287, ../gpe.scss */
|
90
|
-
|
342
|
+
/* line 290, ../old-gpe.scss */
|
343
|
+
.reveal ul li p, ul li li p, ul li li p {
|
344
|
+
color: black;
|
345
|
+
list-style: none;
|
346
|
+
}
|
91
347
|
|
92
348
|
/* line 293, ../gpe.scss */
|
93
|
-
|
349
|
+
/* line 296, ../old-gpe.scss */
|
350
|
+
.reveal ul li {
|
351
|
+
list-style-type: disc;
|
352
|
+
color: black;
|
353
|
+
}
|
94
354
|
|
95
355
|
/* line 298, ../gpe.scss */
|
96
|
-
|
356
|
+
/* line 302, ../old-gpe.scss */
|
357
|
+
.reveal ul li li {
|
358
|
+
list-style-type: square;
|
359
|
+
color: black;
|
360
|
+
}
|
97
361
|
|
98
362
|
/* line 303, ../gpe.scss */
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
.reveal i.
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
.
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
.
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
363
|
+
/* line 308, ../old-gpe.scss */
|
364
|
+
.reveal ul li li li {
|
365
|
+
list-style-type: circle;
|
366
|
+
color: black;
|
367
|
+
}
|
368
|
+
|
369
|
+
/*******************************************************************
|
370
|
+
* .reveal i must be override in order to be able to use Asciidoctor and
|
371
|
+
* Font Awesome icons for NOTE, WARNING, REMARK, ....
|
372
|
+
* Feb, CHM: Added
|
373
|
+
*******************************************************************/
|
374
|
+
/* line 318, ../old-gpe.scss */
|
375
|
+
.reveal i.fa {
|
376
|
+
font-family: 'FontAwesome';
|
377
|
+
font-style: normal;
|
378
|
+
font-size: 100%;
|
379
|
+
}
|
380
|
+
|
381
|
+
/*********************************************
|
382
|
+
* Support asciidoctor callout
|
383
|
+
* Feb 27, CHM: Added
|
384
|
+
*********************************************/
|
385
|
+
/* line 328, ../old-gpe.scss */
|
386
|
+
.reveal i.conum {
|
387
|
+
display: inline-block;
|
388
|
+
color: white !important;
|
389
|
+
background-color: #a70000;
|
390
|
+
-webkit-border-radius: 100px;
|
391
|
+
border-radius: 100px;
|
392
|
+
text-align: center;
|
393
|
+
width: 25px;
|
394
|
+
height: 25px;
|
395
|
+
font-size: 14px;
|
396
|
+
font-weight: bold;
|
397
|
+
line-height: 25px;
|
398
|
+
font-style: normal;
|
399
|
+
position: relative;
|
400
|
+
top: -2px;
|
401
|
+
letter-spacing: -2px;
|
402
|
+
}
|
403
|
+
|
404
|
+
/* line 346, ../old-gpe.scss */
|
405
|
+
.reveal i.conum * {
|
406
|
+
color: white !important;
|
407
|
+
}
|
408
|
+
|
409
|
+
/* line 350, ../old-gpe.scss */
|
410
|
+
.reveal i.conum + b {
|
411
|
+
display: none;
|
412
|
+
}
|
413
|
+
|
414
|
+
/* line 354, ../old-gpe.scss */
|
415
|
+
.reveal i.conum:after {
|
416
|
+
content: attr(data-value);
|
417
|
+
}
|
418
|
+
|
419
|
+
/* line 358, ../old-gpe.scss */
|
420
|
+
.reveal i.conum:not([data-value]):empty {
|
421
|
+
display: none;
|
422
|
+
}
|
423
|
+
|
424
|
+
/*******************************************************
|
425
|
+
* Asciidoctor Table style rendering
|
426
|
+
* Feb 27, CHM: Added & Refactor to display the borders
|
427
|
+
* Mar 02, CHM: Add caption to display the Table title with a different style, color
|
428
|
+
* Mar 03, CHM: Improve style to be compliant with Redhat styles
|
429
|
+
* Mar 06, CHM: Add a noredheader class to avoid to display the first line in red of a table containing images, ..
|
430
|
+
******************************************************/
|
431
|
+
/* line 369, ../old-gpe.scss */
|
432
|
+
table.tableblock, table.tableblock td {
|
433
|
+
border-style: solid;
|
434
|
+
border-color: #b7bcbe;
|
435
|
+
border-width: 0.99px;
|
436
|
+
border-collapse: collapse;
|
437
|
+
border-spacing: 0px;
|
438
|
+
padding: 5px;
|
439
|
+
}
|
440
|
+
|
441
|
+
/* line 378, ../old-gpe.scss */
|
442
|
+
table.tableblock > caption {
|
443
|
+
line-height: 1.4;
|
444
|
+
color: #333333;
|
445
|
+
margin-top: 0.2em;
|
446
|
+
margin-bottom: 0.5em;
|
447
|
+
overflow: visible;
|
448
|
+
max-width: 0;
|
449
|
+
white-space: nowrap;
|
450
|
+
display: table-caption;
|
451
|
+
}
|
452
|
+
|
453
|
+
/* line 389, ../old-gpe.scss */
|
454
|
+
table.tableblock:not(.noredheader) tr:first-child td {
|
455
|
+
background-color: #a70000;
|
456
|
+
text-align: left;
|
457
|
+
padding: 10px;
|
458
|
+
color: white;
|
459
|
+
font-size: 24px;
|
460
|
+
}
|
461
|
+
|
462
|
+
/* line 397, ../old-gpe.scss */
|
463
|
+
table.tableblock.noredheader tr:first-child td {
|
464
|
+
background-color: #EEEEEE;
|
465
|
+
}
|
466
|
+
|
467
|
+
/* line 401, ../old-gpe.scss */
|
468
|
+
table.tableblock tr:nth-child(even) {
|
469
|
+
background: white;
|
470
|
+
}
|
471
|
+
|
472
|
+
/* line 405, ../old-gpe.scss */
|
473
|
+
table.tableblock tr:nth-child(odd) {
|
474
|
+
background: #eeeeee;
|
475
|
+
}
|
476
|
+
|
477
|
+
/* line 409, ../old-gpe.scss */
|
478
|
+
th.tableblock.halign-left, td.tableblock.halign-left {
|
479
|
+
text-align: left;
|
480
|
+
}
|
481
|
+
|
482
|
+
/* line 413, ../old-gpe.scss */
|
483
|
+
th.tableblock.halign-right, td.tableblock.halign-right {
|
484
|
+
text-align: right;
|
485
|
+
}
|
486
|
+
|
487
|
+
/* line 417, ../old-gpe.scss */
|
488
|
+
th.tableblock.halign-center, td.tableblock.halign-center {
|
489
|
+
text-align: center;
|
490
|
+
}
|
491
|
+
|
492
|
+
/* line 421, ../old-gpe.scss */
|
493
|
+
th.tableblock.valign-top, td.tableblock.valign-top {
|
494
|
+
vertical-align: top;
|
495
|
+
}
|
496
|
+
|
497
|
+
/* line 425, ../old-gpe.scss */
|
498
|
+
th.tableblock.valign-bottom, td.tableblock.valign-bottom {
|
499
|
+
vertical-align: bottom;
|
500
|
+
}
|
501
|
+
|
502
|
+
/* line 429, ../old-gpe.scss */
|
503
|
+
th.tableblock.valign-middle, td.tableblock.valign-middle {
|
504
|
+
vertical-align: middle;
|
505
|
+
}
|
506
|
+
|
507
|
+
/**************************************************************
|
508
|
+
* By default, it is not possible to display text in Bold, ... within <li> tag
|
509
|
+
* Here is a trick to support that <strong>text</strong> enclosed in <li> tag & color
|
510
|
+
* Feb 27, CHM: Added
|
511
|
+
**************************************************************/
|
512
|
+
/* line 438, ../old-gpe.scss */
|
513
|
+
li strong {
|
514
|
+
color: #a70000;
|
515
|
+
font-weight: bold;
|
516
|
+
}
|
517
|
+
|
518
|
+
/**************************************************************
|
519
|
+
* Override Revealjs Pre class
|
520
|
+
* Mar 04 2015, CHM : Change width from 90% to 100% and margin to reduce size of the box hightlighted
|
521
|
+
*************************************************************/
|
522
|
+
/* line 447, ../old-gpe.scss */
|
523
|
+
.reveal pre {
|
524
|
+
width: 100%;
|
525
|
+
}
|
526
|
+
|
527
|
+
/* line 451, ../old-gpe.scss */
|
528
|
+
.listingblock .content {
|
529
|
+
margin-right: 50px;
|
530
|
+
padding-right: 50px;
|
531
|
+
}
|
532
|
+
|
533
|
+
/****************
|
534
|
+
* Override Revealjs ordered list
|
535
|
+
* Mar 06 2016, CHM : Numbers displayed were cut
|
536
|
+
****************/
|
537
|
+
/* line 460, ../old-gpe.scss */
|
538
|
+
.reveal ol {
|
539
|
+
margin-left: 40px;
|
540
|
+
}
|
541
|
+
|
542
|
+
/* line 464, ../old-gpe.scss */
|
543
|
+
ol.arabic {
|
544
|
+
list-style-type: decimal;
|
545
|
+
}
|
546
|
+
|
547
|
+
/* line 468, ../old-gpe.scss */
|
548
|
+
ol.decimal {
|
549
|
+
list-style-type: decimal-leading-zero;
|
550
|
+
}
|
551
|
+
|
552
|
+
/* line 472, ../old-gpe.scss */
|
553
|
+
ol.loweralpha {
|
554
|
+
list-style-type: lower-alpha;
|
555
|
+
}
|
556
|
+
|
557
|
+
/* line 476, ../old-gpe.scss */
|
558
|
+
ol.upperalpha {
|
559
|
+
list-style-type: upper-alpha;
|
560
|
+
}
|
561
|
+
|
562
|
+
/* line 480, ../old-gpe.scss */
|
563
|
+
ol.lowerroman {
|
564
|
+
list-style-type: lower-roman;
|
565
|
+
}
|
566
|
+
|
567
|
+
/* line 484, ../old-gpe.scss */
|
568
|
+
ol.upperroman {
|
569
|
+
list-style-type: upper-roman;
|
570
|
+
}
|
571
|
+
|
572
|
+
/* line 488, ../old-gpe.scss */
|
573
|
+
ol.lowergreek {
|
574
|
+
list-style-type: lower-greek;
|
575
|
+
}
|
576
|
+
|
577
|
+
/**************************************************************
|
578
|
+
* Admonition Asciidoctor
|
579
|
+
*
|
580
|
+
* Mar 03, CHM: Added
|
581
|
+
**************************************************************/
|
582
|
+
/* line 497, ../old-gpe.scss */
|
583
|
+
.admonitionblock td.content > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .mathblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, .sidebarblock > .title, .tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title {
|
584
|
+
text-align: left;
|
585
|
+
font-weight: bold;
|
586
|
+
}
|
587
|
+
|
588
|
+
/* line 502, ../old-gpe.scss */
|
589
|
+
.admonitionblock > table {
|
590
|
+
border: 0;
|
591
|
+
background: none;
|
592
|
+
width: 100%;
|
593
|
+
padding: 5px 0px;
|
594
|
+
}
|
595
|
+
|
596
|
+
/* line 509, ../old-gpe.scss */
|
597
|
+
.admonitionblock > table td.icon {
|
598
|
+
text-align: center;
|
599
|
+
width: 80px;
|
600
|
+
}
|
601
|
+
|
602
|
+
/* line 514, ../old-gpe.scss */
|
603
|
+
.admonitionblock > table td.icon img {
|
604
|
+
max-width: none;
|
605
|
+
}
|
606
|
+
|
607
|
+
/* line 518, ../old-gpe.scss */
|
608
|
+
.admonitionblock > table td.icon .title {
|
609
|
+
font-weight: bold;
|
610
|
+
text-transform: uppercase;
|
611
|
+
}
|
612
|
+
|
613
|
+
/* line 523, ../old-gpe.scss */
|
614
|
+
.admonitionblock > table td.content {
|
615
|
+
padding-left: 1.125em;
|
616
|
+
padding-right: 1.25em;
|
617
|
+
border-left: 1px solid #dddddd;
|
618
|
+
color: #6f6f6f;
|
619
|
+
font-size: 20px;
|
620
|
+
font-style: normal;
|
621
|
+
}
|
177
622
|
|
178
623
|
/* Override the color for the list */
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
.admonitionblock
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
624
|
+
/* line 533, ../old-gpe.scss */
|
625
|
+
.admonitionblock > table td.content ul li, .admonitionblock > table td.content ol li, .admonitionblock > table td.content ol p, .admonitionblock > table td.content ul p {
|
626
|
+
color: #6f6f6f;
|
627
|
+
}
|
628
|
+
|
629
|
+
/* line 537, ../old-gpe.scss */
|
630
|
+
.admonitionblock > table td.content > :last-child > :last-child {
|
631
|
+
margin-bottom: 0;
|
632
|
+
}
|
633
|
+
|
634
|
+
/* line 541, ../old-gpe.scss */
|
635
|
+
.admonitionblock > table td.icon {
|
636
|
+
vertical-align: middle;
|
637
|
+
}
|
638
|
+
|
639
|
+
/* line 545, ../old-gpe.scss */
|
640
|
+
.admonitionblock td.icon [class^="icon-"]:before {
|
641
|
+
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
642
|
+
cursor: default;
|
643
|
+
font-style: normal;
|
644
|
+
font-weight: normal;
|
645
|
+
font-family: FontAwesome;
|
646
|
+
text-decoration: inherit;
|
647
|
+
font-size: 46px;
|
648
|
+
padding-right: 0.5em;
|
649
|
+
position: relative;
|
650
|
+
left: 0;
|
651
|
+
top: 5px;
|
652
|
+
}
|
653
|
+
|
654
|
+
/* line 559, ../old-gpe.scss */
|
655
|
+
.admonitionblock td.icon .icon-note:before {
|
656
|
+
content: "\f05a";
|
657
|
+
color: #005498;
|
658
|
+
color: #003f72;
|
659
|
+
}
|
660
|
+
|
661
|
+
/* line 565, ../old-gpe.scss */
|
662
|
+
.admonitionblock td.icon .icon-tip:before {
|
663
|
+
content: "\f0eb";
|
664
|
+
text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8);
|
665
|
+
color: #111;
|
666
|
+
}
|
190
667
|
|
191
668
|
/* Use a more yellow lighter color */
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
669
|
+
/* line 572, ../old-gpe.scss */
|
670
|
+
.admonitionblock td.icon .icon-warning:before {
|
671
|
+
content: "\f071";
|
672
|
+
color: #EFEF0C;
|
673
|
+
}
|
674
|
+
|
675
|
+
/* line 577, ../old-gpe.scss */
|
676
|
+
.admonitionblock td.icon .icon-caution:before {
|
677
|
+
content: "\f06d";
|
678
|
+
color: #bf3400;
|
679
|
+
}
|
680
|
+
|
681
|
+
/* line 582, ../old-gpe.scss */
|
682
|
+
.admonitionblock td.icon .icon-important:before {
|
683
|
+
content: "\f06a";
|
684
|
+
color: #bf0000;
|
685
|
+
}
|