hyla 1.0.9.pre.3 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,17 +1,6 @@
1
1
  /* $debug-configuration: true; */
2
2
 
3
- /*
4
- * We dont import the css content of font-awesome hre
5
- * as it will added to the HTML of the slideshow as a local/remote resource
6
- * @import "font-awesome";
7
- */
8
-
9
- /* $fonts: 'Overpass', 'Liberation Sans', 'Open Sans', sans-serif; */
10
- $fonts: 'Liberation Sans', 'Overpass', 'Open Sans', sans-serif;
11
- $red-color: #a70000;
12
- $scrollbar-height: 600px;
13
- $footer-bottom: -25%;
14
- $slides-margin-top: 15px;
3
+ @import "variable";
15
4
 
16
5
  /*********************************************
17
6
  * GLOBAL STYLES
@@ -614,9 +603,37 @@ ol.lowergreek {
614
603
  #expandlist li {
615
604
  line-height: 130%;
616
605
  text-indent: 0px;
617
- background-position: 1px 8px;
606
+ background-position: 1px 13px;
618
607
  padding-left: 30px;
619
608
  background-repeat: no-repeat;
609
+ /* Use a relative position in order to place more space between the decimal/bullet symbol and the text */
610
+ position: relative;
611
+ left:35px;
612
+ }
613
+
614
+ /* Enable the decimal style for a list defined under the <ol id='expandlist'/> selector */
615
+ ol[id=expandlist] > li {
616
+ list-style-type: decimal;
617
+ }
618
+
619
+ /* Remove the margin to align the text of the items ol with the parent */
620
+ /* First Level */
621
+ ol[id=expandlist] > li > div.olist > ol {
622
+ margin-left: 0px;
623
+ }
624
+ /* Second Level */
625
+ ol[id=expandlist] .olist > ol > li ol {
626
+ margin-left: 0px;
627
+ }
628
+
629
+ /* Remove the margin to align the text of the items ul with the parent */
630
+ /* First Level */
631
+ ul[id=expandlist] > li > div.ulist > ul {
632
+ margin-left: 0px;
633
+ }
634
+ /* Second Level */
635
+ ul[id=expandlist] .ulist > ul > li ul {
636
+ margin-left: 0px;
620
637
  }
621
638
 
622
639
  /* Collapsed state for list element */
@@ -1,5 +1,7 @@
1
+ @import "variable";
2
+
1
3
  .reveal .slide-background {
2
- background: #f3f4f4;
4
+ background: $revealjs-all-slides-background-color;
3
5
  background-size: cover;
4
6
  background-position: 50% 50%;
5
7
  background-repeat: no-repeat;
@@ -0,0 +1,660 @@
1
+ @import url(http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.0/css/font-awesome.css);
2
+ /*! normalize.css v2.1.2 | MIT License | git.io/normalize */
3
+ /* ========================================================================== HTML5 display definitions ========================================================================== */
4
+ /** Correct `block` display not defined in IE 8/9. */
5
+ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
6
+
7
+ /** Correct `inline-block` display not defined in IE 8/9. */
8
+ audio, canvas, video { display: inline-block; }
9
+
10
+ /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
11
+ audio:not([controls]) { display: none; height: 0; }
12
+
13
+ /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
14
+ [hidden], template { display: none; }
15
+
16
+ script { display: none !important; }
17
+
18
+ /* ========================================================================== Base ========================================================================== */
19
+ /** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
20
+ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
21
+
22
+ /** Remove default margin. */
23
+ body { margin: 0; }
24
+
25
+ /* ========================================================================== Links ========================================================================== */
26
+ /** Remove the gray background color from active links in IE 10. */
27
+ a { background: transparent; }
28
+
29
+ /** Address `outline` inconsistency between Chrome and other browsers. */
30
+ a:focus { outline: thin dotted; }
31
+
32
+ /** Improve readability when focused and also mouse hovered in all browsers. */
33
+ a:active, a:hover { outline: 0; }
34
+
35
+ /* ========================================================================== Typography ========================================================================== */
36
+ /** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
37
+ h1 { font-size: 2em; margin: 0.67em 0; }
38
+
39
+ /** Address styling not present in IE 8/9, Safari 5, and Chrome. */
40
+ abbr[title] { border-bottom: 1px dotted; }
41
+
42
+ /** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
43
+ b, strong { font-weight: bold; }
44
+
45
+ /** Address styling not present in Safari 5 and Chrome. */
46
+ dfn { font-style: italic; }
47
+
48
+ /** Address differences between Firefox and other browsers. */
49
+ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
50
+
51
+ /** Address styling not present in IE 8/9. */
52
+ mark { background: #ff0; color: #000; }
53
+
54
+ /** Correct font family set oddly in Safari 5 and Chrome. */
55
+ code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
56
+
57
+ /** Improve readability of pre-formatted text in all browsers. */
58
+ pre { white-space: pre-wrap; }
59
+
60
+ /** Set consistent quote types. */
61
+ q { quotes: "\201C" "\201D" "\2018" "\2019"; }
62
+
63
+ /** Address inconsistent and variable font size in all browsers. */
64
+ small { font-size: 80%; }
65
+
66
+ /** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
67
+ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
68
+
69
+ sup { top: -0.5em; }
70
+
71
+ sub { bottom: -0.25em; }
72
+
73
+ /* ========================================================================== Embedded content ========================================================================== */
74
+ /** Remove border when inside `a` element in IE 8/9. */
75
+ img { border: 0; }
76
+
77
+ /** Correct overflow displayed oddly in IE 9. */
78
+ svg:not(:root) { overflow: hidden; }
79
+
80
+ /* ========================================================================== Figures ========================================================================== */
81
+ /** Address margin not present in IE 8/9 and Safari 5. */
82
+ figure { margin: 0; }
83
+
84
+ /* ========================================================================== Forms ========================================================================== */
85
+ /** Define consistent border, margin, and padding. */
86
+ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
87
+
88
+ /** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
89
+ legend { border: 0; /* 1 */ padding: 0; /* 2 */ }
90
+
91
+ /** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */
92
+ button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ }
93
+
94
+ /** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
95
+ button, input { line-height: normal; }
96
+
97
+ /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
98
+ button, select { text-transform: none; }
99
+
100
+ /** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
101
+ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ }
102
+
103
+ /** Re-set default cursor for disabled elements. */
104
+ button[disabled], html input[disabled] { cursor: default; }
105
+
106
+ /** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
107
+ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
108
+
109
+ /** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
110
+ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; }
111
+
112
+ /** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
113
+ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
114
+
115
+ /** Remove inner padding and border in Firefox 4+. */
116
+ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
117
+
118
+ /** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
119
+ textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ }
120
+
121
+ /* ========================================================================== Tables ========================================================================== */
122
+ /** Remove most spacing between table cells. */
123
+ table { border-collapse: collapse; border-spacing: 0; }
124
+
125
+ meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; }
126
+
127
+ meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; }
128
+
129
+ meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; }
130
+
131
+ *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
132
+
133
+ html, body { font-size: 100%; }
134
+
135
+ body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; }
136
+
137
+ a:hover { cursor: pointer; }
138
+
139
+ img, object, embed { max-width: 100%; height: auto; }
140
+
141
+ object, embed { height: 100%; }
142
+
143
+ img { -ms-interpolation-mode: bicubic; }
144
+
145
+ #map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
146
+
147
+ .left { float: left !important; }
148
+
149
+ .right { float: right !important; }
150
+
151
+ .text-left { text-align: left !important; }
152
+
153
+ .text-right { text-align: right !important; }
154
+
155
+ .text-center { text-align: center !important; }
156
+
157
+ .text-justify { text-align: justify !important; }
158
+
159
+ .hide { display: none; }
160
+
161
+ .antialiased, body { -webkit-font-smoothing: antialiased; }
162
+
163
+ img { display: inline-block; vertical-align: middle; }
164
+
165
+ textarea { height: auto; min-height: 50px; }
166
+
167
+ select { width: 100%; }
168
+
169
+ p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
170
+
171
+ .subheader, #content #toctitle, .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, .tableblock > caption { line-height: 1.4; color: #003b6b; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
172
+
173
+ /* Typography resets */
174
+ div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }
175
+
176
+ /* Default Link Styles */
177
+ a { color: #00579e; text-decoration: none; line-height: inherit; }
178
+ a:hover, a:focus { color: #333333; }
179
+ a img { border: none; }
180
+
181
+ /* Default paragraph styles */
182
+ p { font-family: Arial, sans-serif; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 0.75em; text-rendering: optimizeLegibility; }
183
+ p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }
184
+
185
+ /* Default header styles */
186
+ h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: Arial, sans-serif; font-weight: normal; font-style: normal; color: #7b2d00; text-rendering: optimizeLegibility; margin-top: 0.5em; margin-bottom: 0.5em; line-height: 1.2125em; }
187
+ h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #ff6b15; line-height: 0; }
188
+
189
+ h1 { font-size: 2.125em; }
190
+
191
+ h2 { font-size: 1.6875em; }
192
+
193
+ h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; }
194
+
195
+ h4 { font-size: 1.125em; }
196
+
197
+ h5 { font-size: 1.125em; }
198
+
199
+ h6 { font-size: 1em; }
200
+
201
+ hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }
202
+
203
+ /* Helpful Typography Defaults */
204
+ em, i { font-style: italic; line-height: inherit; }
205
+
206
+ strong, b { font-weight: bold; line-height: inherit; }
207
+
208
+ small { font-size: 60%; line-height: inherit; }
209
+
210
+ code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #003426; }
211
+
212
+ /* Lists */
213
+ ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 0.75em; list-style-position: outside; font-family: Arial, sans-serif; }
214
+
215
+ ul, ol { margin-left: 1.5em; }
216
+ ul.no-bullet, ol.no-bullet { margin-left: 1.5em; }
217
+
218
+ /* Unordered Lists */
219
+ ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
220
+ ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
221
+ ul.square { list-style-type: square; }
222
+ ul.circle { list-style-type: circle; }
223
+ ul.disc { list-style-type: disc; }
224
+ ul.no-bullet { list-style: none; }
225
+
226
+ /* Ordered Lists */
227
+ ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
228
+
229
+ /* Definition Lists */
230
+ dl dt { margin-bottom: 0.3em; font-weight: bold; }
231
+ dl dd { margin-bottom: 0.75em; }
232
+
233
+ /* Abbreviations */
234
+ abbr, acronym { text-transform: uppercase; font-size: 90%; color: black; border-bottom: 1px dotted #dddddd; cursor: help; }
235
+
236
+ abbr { text-transform: none; }
237
+
238
+ /* Blockquotes */
239
+ blockquote { margin: 0 0 0.75em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
240
+ blockquote cite { display: block; font-size: 0.8125em; color: #e15200; }
241
+ blockquote cite:before { content: "\2014 \0020"; }
242
+ blockquote cite a, blockquote cite a:visited { color: #e15200; }
243
+
244
+ blockquote, blockquote p { line-height: 1.6; color: #333333; }
245
+
246
+ /* Microformats */
247
+ .vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
248
+ .vcard li { margin: 0; display: block; }
249
+ .vcard .fn { font-weight: bold; font-size: 0.9375em; }
250
+
251
+ .vevent .summary { font-weight: bold; }
252
+ .vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
253
+
254
+ @media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
255
+ h1 { font-size: 2.75em; }
256
+ h2 { font-size: 2.3125em; }
257
+ h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
258
+ h4 { font-size: 1.4375em; } }
259
+ /* Print styles. Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
260
+ */
261
+ .print-only { display: none !important; }
262
+
263
+ @media print { * { background: transparent !important; color: #000 !important; /* Black prints faster: h5bp.com/s */ box-shadow: none !important; text-shadow: none !important; }
264
+ a, a:visited { text-decoration: underline; }
265
+ a[href]:after { content: " (" attr(href) ")"; }
266
+ abbr[title]:after { content: " (" attr(title) ")"; }
267
+ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
268
+ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
269
+ thead { display: table-header-group; /* h5bp.com/t */ }
270
+ tr, img { page-break-inside: avoid; }
271
+ img { max-width: 100% !important; }
272
+ @page { margin: 0.5cm; }
273
+ p, h2, h3, #toctitle, .sidebarblock > .content > .title { orphans: 3; widows: 3; }
274
+ h2, h3, #toctitle, .sidebarblock > .content > .title { page-break-after: avoid; }
275
+ .hide-on-print { display: none !important; }
276
+ .print-only { display: block !important; }
277
+ .hide-for-print { display: none !important; }
278
+ .show-for-print { display: inherit !important; } }
279
+ /* Tables */
280
+ table { background: white; margin-bottom: 1.25em; border: solid 1px #d8d8ce; }
281
+ table thead, table tfoot { background: -webkit-linear-gradient(top, #a70000, #a70000); font-weight: bold; }
282
+ table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: white; text-align: left; }
283
+ table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #6d6e71; }
284
+ table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #edf2f2; }
285
+ table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.4; }
286
+
287
+ a:hover, a:focus { text-decoration: underline; }
288
+
289
+ .clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
290
+ .clearfix:after, .float-group:after { clear: both; }
291
+
292
+ *:not(pre) > code { font-size: inherit; padding: 3px 2px 1px 2px; white-space: nowrap; background-color: #eeeeee; border: 1px solid #dddddd; -webkit-border-radius: 0; border-radius: 0; text-shadow: none; }
293
+
294
+ pre, pre > code { line-height: 1.6; color: black; font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: normal; }
295
+
296
+ kbd.keyseq { color: #333333; }
297
+
298
+ kbd:not(.keyseq) { display: inline-block; color: black; font-size: 0.75em; line-height: 1.4; background-color: #F7F7F7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px white inset; margin: -0.15em 0.15em 0 0.15em; padding: 0.2em 0.6em 0.2em 0.5em; vertical-align: middle; white-space: nowrap; }
299
+
300
+ kbd kbd:first-child { margin-left: 0; }
301
+
302
+ kbd kbd:last-child { margin-right: 0; }
303
+
304
+ .menuseq, .menu { color: black; }
305
+
306
+ b.button:before { content: '[ '; }
307
+
308
+ b.button:after { content: ' ]'; }
309
+
310
+ #header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 1.5em; padding-right: 1.5em; }
311
+ #header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
312
+ #header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
313
+
314
+ #header { margin-bottom: 2.5em; }
315
+ #header > h1 { color: #7b2d00; font-weight: normal; border-bottom: 1px solid #dddddd; margin-bottom: -28px; padding-bottom: 32px; }
316
+ #header span { color: #333333; }
317
+ #header #revnumber { text-transform: capitalize; }
318
+ #header br { display: none; }
319
+ #header br + span { padding-left: 3px; }
320
+ #header br + span:before { content: "\2013 \0020"; }
321
+ #header br + span.author { padding-left: 0; }
322
+ #header br + span.author:before { content: ", "; }
323
+
324
+ #toc { border-bottom: 1px solid #dddddd; padding-bottom: 1.25em; }
325
+ #toc > ul { margin-left: 0.25em; }
326
+ #toc ul.sectlevel0 > li > a { font-style: italic; }
327
+ #toc ul.sectlevel0 ul.sectlevel1 { margin-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
328
+ #toc ul { list-style-type: none; }
329
+
330
+ #toctitle { color: #003b6b; }
331
+
332
+ @media only screen and (min-width: 768px) { body.toc2 { padding-left: 15em; padding-right: 0; }
333
+ #toc.toc2 { position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #dddddd; border-bottom: 0; z-index: 1000; padding: 1em; height: 100%; overflow: auto; }
334
+ #toc.toc2 #toctitle { margin-top: 0; font-size: 1.2em; }
335
+ #toc.toc2 > ul { font-size: .90em; }
336
+ #toc.toc2 ul ul { margin-left: 0; padding-left: 1em; }
337
+ #toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
338
+ body.toc2.toc-right { padding-left: 0; padding-right: 15em; }
339
+ body.toc2.toc-right #toc.toc2 { border-right: 0; border-left: 1px solid #dddddd; left: auto; right: 0; } }
340
+ @media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; }
341
+ #toc.toc2 { width: 20em; }
342
+ #toc.toc2 #toctitle { font-size: 1.375em; }
343
+ #toc.toc2 > ul { font-size: 0.95em; }
344
+ #toc.toc2 ul ul { padding-left: 1.25em; }
345
+ body.toc2.toc-right { padding-left: 0; padding-right: 20em; } }
346
+ #content #toc { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; border-width: 0; -webkit-border-radius: 0; border-radius: 0; }
347
+ #content #toc > :first-child { margin-top: 0; }
348
+ #content #toc > :last-child { margin-bottom: 0; }
349
+ #content #toc a { text-decoration: none; }
350
+
351
+ #content #toctitle { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 1em; padding-left: 0.125em; }
352
+
353
+ #footer { max-width: 100%; background-color: none; padding: 1.25em; }
354
+
355
+ #footer-text { color: black; line-height: 1.44; }
356
+
357
+ .sect1 { padding-bottom: 1.25em; }
358
+
359
+ .sect1 + .sect1 { border-top: 1px solid #dddddd; }
360
+
361
+ #content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; width: 1em; margin-left: -1em; display: block; text-decoration: none; visibility: hidden; text-align: center; font-weight: normal; }
362
+ #content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: '\00A7'; font-size: .85em; vertical-align: text-top; display: block; margin-top: 0.05em; }
363
+ #content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
364
+ #content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #7b2d00; text-decoration: none; }
365
+ #content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #622400; }
366
+
367
+ .imageblock, .literalblock, .listingblock, .mathblock, .verseblock, .videoblock { margin-bottom: 1.25em; }
368
+
369
+ .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 { text-align: left; font-weight: bold; }
370
+
371
+ .tableblock > caption { text-align: left; font-weight: bold; white-space: nowrap; overflow: visible; max-width: 0; }
372
+
373
+ table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
374
+
375
+ .admonitionblock > table { border: 0; background: none; width: 100%; }
376
+ .admonitionblock > table td.icon { text-align: center; width: 80px; }
377
+ .admonitionblock > table td.icon img { max-width: none; }
378
+ .admonitionblock > table td.icon .title { font-weight: bold; text-transform: uppercase; }
379
+ .admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #333333; }
380
+ .admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
381
+
382
+ .exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; }
383
+ .exampleblock > .content > :first-child { margin-top: 0; }
384
+ .exampleblock > .content > :last-child { margin-bottom: 0; }
385
+ .exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6, .exampleblock > .content p { color: #333333; }
386
+ .exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6 { line-height: 1; margin-bottom: 0.625em; }
387
+ .exampleblock > .content h1.subheader, .exampleblock > .content h2.subheader, .exampleblock > .content h3.subheader, .exampleblock > .content .subheader#toctitle, .sidebarblock.exampleblock > .content > .subheader.title, .exampleblock > .content h4.subheader, .exampleblock > .content h5.subheader, .exampleblock > .content h6.subheader { line-height: 1.4; }
388
+
389
+ .exampleblock.result > .content { -webkit-box-shadow: 0 1px 8px #aaaaaa; box-shadow: 0 1px 8px #aaaaaa; }
390
+
391
+ .sidebarblock { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; }
392
+ .sidebarblock > :first-child { margin-top: 0; }
393
+ .sidebarblock > :last-child { margin-bottom: 0; }
394
+ .sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6, .sidebarblock p { color: #333333; }
395
+ .sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6 { line-height: 1; margin-bottom: 0.625em; }
396
+ .sidebarblock h1.subheader, .sidebarblock h2.subheader, .sidebarblock h3.subheader, .sidebarblock .subheader#toctitle, .sidebarblock > .content > .subheader.title, .sidebarblock h4.subheader, .sidebarblock h5.subheader, .sidebarblock h6.subheader { line-height: 1.4; }
397
+ .sidebarblock > .content > .title { color: #003b6b; margin-top: 0; line-height: 1.6; }
398
+
399
+ .exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
400
+
401
+ .literalblock pre:not([class]), .listingblock pre:not([class]) { background: #eeeeee; }
402
+ .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { border-width: 1px; border-style: dashed; border-color: #666666; -webkit-border-radius: 0; border-radius: 0; padding: 1.25em 1.5625em 1.125em 1.5625em; word-wrap: break-word; }
403
+ .literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
404
+ .literalblock pre > code, .literalblock pre[class] > code, .listingblock pre > code, .listingblock pre[class] > code { display: block; }
405
+ @media only screen { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.72em; } }
406
+ @media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.81em; } }
407
+ @media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.9em; } }
408
+
409
+ .listingblock pre.highlight { padding: 0; }
410
+ .listingblock pre.highlight > code { padding: 1.25em 1.5625em 1.125em 1.5625em; }
411
+
412
+ .listingblock > .content { position: relative; }
413
+
414
+ .listingblock:hover code[class*=" language-"]:before { text-transform: uppercase; font-size: 0.9em; color: #999; position: absolute; top: 0.375em; right: 0.375em; }
415
+
416
+ .listingblock:hover code.asciidoc:before { content: "asciidoc"; }
417
+ .listingblock:hover code.clojure:before { content: "clojure"; }
418
+ .listingblock:hover code.css:before { content: "css"; }
419
+ .listingblock:hover code.groovy:before { content: "groovy"; }
420
+ .listingblock:hover code.html:before { content: "html"; }
421
+ .listingblock:hover code.java:before { content: "java"; }
422
+ .listingblock:hover code.javascript:before { content: "javascript"; }
423
+ .listingblock:hover code.python:before { content: "python"; }
424
+ .listingblock:hover code.ruby:before { content: "ruby"; }
425
+ .listingblock:hover code.sass:before { content: "sass"; }
426
+ .listingblock:hover code.scss:before { content: "scss"; }
427
+ .listingblock:hover code.xml:before { content: "xml"; }
428
+ .listingblock:hover code.yaml:before { content: "yaml"; }
429
+
430
+ .listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
431
+
432
+ .listingblock.terminal pre .command:not([data-prompt]):before { content: '$'; }
433
+
434
+ table.pyhltable { border: 0; margin-bottom: 0; }
435
+
436
+ table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; }
437
+
438
+ table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
439
+
440
+ .highlight.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
441
+
442
+ .highlight.pygments .lineno { display: inline-block; margin-right: .25em; }
443
+
444
+ table.pyhltable .linenodiv { background-color: transparent !important; padding-right: 0 !important; }
445
+
446
+ .quoteblock { margin: 0 0 0.75em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
447
+ .quoteblock blockquote { margin: 0 0 0.75em 0; padding: 0 0 0.5625em 0; border: 0; }
448
+ .quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
449
+ .quoteblock .attribution { margin-top: -.25em; padding-bottom: 0.5625em; font-size: 0.8125em; color: #e15200; }
450
+ .quoteblock .attribution br { display: none; }
451
+ .quoteblock .attribution cite { display: block; margin-bottom: 0.625em; }
452
+
453
+ table thead th, table tfoot th { font-weight: bold; }
454
+
455
+ table.tableblock.grid-all { border-collapse: separate; border-spacing: 1px; -webkit-border-radius: 0; border-radius: 0; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; }
456
+
457
+ table.tableblock.frame-topbot, table.tableblock.frame-none { border-left: 0; border-right: 0; }
458
+
459
+ table.tableblock.frame-sides, table.tableblock.frame-none { border-top: 0; border-bottom: 0; }
460
+
461
+ table.tableblock td .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child { margin-bottom: 0; }
462
+
463
+ th.tableblock.halign-left, td.tableblock.halign-left { text-align: left; }
464
+
465
+ th.tableblock.halign-right, td.tableblock.halign-right { text-align: right; }
466
+
467
+ th.tableblock.halign-center, td.tableblock.halign-center { text-align: center; }
468
+
469
+ th.tableblock.valign-top, td.tableblock.valign-top { vertical-align: top; }
470
+
471
+ th.tableblock.valign-bottom, td.tableblock.valign-bottom { vertical-align: bottom; }
472
+
473
+ th.tableblock.valign-middle, td.tableblock.valign-middle { vertical-align: middle; }
474
+
475
+ tbody tr th { display: table-cell; line-height: 1.4; background: -webkit-linear-gradient(top, #add386, #90b66a); }
476
+
477
+ tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: white; font-weight: bold; }
478
+
479
+ td > div.verse { white-space: pre; }
480
+
481
+ ol { margin-left: 1.75em; }
482
+
483
+ ul li ol { margin-left: 1.5em; }
484
+
485
+ dl dd { margin-left: 1.125em; }
486
+
487
+ dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
488
+
489
+ ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.375em; }
490
+
491
+ ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
492
+
493
+ ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
494
+
495
+ ul.checklist li > p:first-child > i[class^="icon-check"]:first-child, ul.checklist li > p:first-child > input[type="checkbox"]:first-child { margin-right: 0.25em; }
496
+
497
+ ul.checklist li > p:first-child > input[type="checkbox"]:first-child { position: relative; top: 1px; }
498
+
499
+ ul.inline { margin: 0 auto 0.375em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
500
+ ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
501
+ ul.inline > li > * { display: block; }
502
+
503
+ .unstyled dl dt { font-weight: normal; font-style: normal; }
504
+
505
+ ol.arabic { list-style-type: decimal; }
506
+
507
+ ol.decimal { list-style-type: decimal-leading-zero; }
508
+
509
+ ol.loweralpha { list-style-type: lower-alpha; }
510
+
511
+ ol.upperalpha { list-style-type: upper-alpha; }
512
+
513
+ ol.lowerroman { list-style-type: lower-roman; }
514
+
515
+ ol.upperroman { list-style-type: upper-roman; }
516
+
517
+ ol.lowergreek { list-style-type: lower-greek; }
518
+
519
+ .hdlist > table, .colist > table { border: 0; background: none; }
520
+ .hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
521
+
522
+ td.hdlist1 { padding-right: .8em; font-weight: bold; }
523
+
524
+ td.hdlist1, td.hdlist2 { vertical-align: top; }
525
+
526
+ .literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
527
+
528
+ .colist > table tr > td:first-of-type { padding: 0 .8em; line-height: 1; }
529
+ .colist > table tr > td:last-of-type { padding: 0.25em 0; }
530
+
531
+ .qanda > ol > li > p > em:only-child { color: #004985; }
532
+
533
+ .thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
534
+
535
+ .imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
536
+ .imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
537
+ .imageblock > .title { margin-bottom: 0; }
538
+ .imageblock.thumb, .imageblock.th { border-width: 6px; }
539
+ .imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
540
+
541
+ .image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
542
+ .image.left { margin-right: 0.625em; }
543
+ .image.right { margin-left: 0.625em; }
544
+
545
+ a.image { text-decoration: none; }
546
+
547
+ span.footnote, span.footnoteref { vertical-align: super; font-size: 0.875em; }
548
+ span.footnote a, span.footnoteref a { text-decoration: none; }
549
+
550
+ #footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
551
+ #footnotes hr { width: 20%; min-width: 6.25em; margin: -.25em 0 .75em 0; border-width: 1px 0 0 0; }
552
+ #footnotes .footnote { padding: 0 0.375em; line-height: 1.3; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.2em; margin-bottom: .2em; }
553
+ #footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
554
+ #footnotes .footnote:last-of-type { margin-bottom: 0; }
555
+
556
+ #content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
557
+
558
+ .gist .file-data > table { border: none; background: #fff; width: 100%; margin-bottom: 0; }
559
+ .gist .file-data > table td.line-data { width: 99%; }
560
+
561
+ div.unbreakable { page-break-inside: avoid; }
562
+
563
+ .big { font-size: larger; }
564
+
565
+ .small { font-size: smaller; }
566
+
567
+ .underline { text-decoration: underline; }
568
+
569
+ .overline { text-decoration: overline; }
570
+
571
+ .line-through { text-decoration: line-through; }
572
+
573
+ .aqua { color: #00bfbf; }
574
+
575
+ .aqua-background { background-color: #00fafa; }
576
+
577
+ .black { color: black; }
578
+
579
+ .black-background { background-color: black; }
580
+
581
+ .blue { color: #0000bf; }
582
+
583
+ .blue-background { background-color: #0000fa; }
584
+
585
+ .fuchsia { color: #bf00bf; }
586
+
587
+ .fuchsia-background { background-color: #fa00fa; }
588
+
589
+ .gray { color: #606060; }
590
+
591
+ .gray-background { background-color: #7d7d7d; }
592
+
593
+ .green { color: #006000; }
594
+
595
+ .green-background { background-color: #007d00; }
596
+
597
+ .lime { color: #00bf00; }
598
+
599
+ .lime-background { background-color: #00fa00; }
600
+
601
+ .maroon { color: #600000; }
602
+
603
+ .maroon-background { background-color: #7d0000; }
604
+
605
+ .navy { color: #000060; }
606
+
607
+ .navy-background { background-color: #00007d; }
608
+
609
+ .olive { color: #606000; }
610
+
611
+ .olive-background { background-color: #7d7d00; }
612
+
613
+ .purple { color: #600060; }
614
+
615
+ .purple-background { background-color: #7d007d; }
616
+
617
+ .red { color: #bf0000; }
618
+
619
+ .red-background { background-color: #fa0000; }
620
+
621
+ .silver { color: #909090; }
622
+
623
+ .silver-background { background-color: #bcbcbc; }
624
+
625
+ .teal { color: #006060; }
626
+
627
+ .teal-background { background-color: #007d7d; }
628
+
629
+ .white { color: #bfbfbf; }
630
+
631
+ .white-background { background-color: #fafafa; }
632
+
633
+ .yellow { color: #bfbf00; }
634
+
635
+ .yellow-background { background-color: #fafa00; }
636
+
637
+ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
638
+
639
+ .admonitionblock td.icon [class^="icon-"]:before { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
640
+ .admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #00579e; color: #004176; }
641
+ .admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
642
+ .admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
643
+ .admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
644
+ .admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
645
+
646
+ .conum { display: inline-block; color: white !important; background-color: black; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; width: 20px; height: 20px; font-size: 12px; font-weight: bold; line-height: 20px; font-family: Arial, sans-serif; font-style: normal; position: relative; top: -2px; letter-spacing: -1px; }
647
+ .conum * { color: white !important; }
648
+ .conum + b { display: none; }
649
+ .conum:after { content: attr(data-value); }
650
+ .conum:not([data-value]):empty { display: none; }
651
+
652
+ h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { border-bottom: 1px solid #dddddd; }
653
+
654
+ #toctitle { color: #00406F; font-weight: normal; margin-top: 1.5em; }
655
+
656
+ .sidebarblock { border-color: #aaa; }
657
+
658
+ code { -webkit-border-radius: 4px; border-radius: 4px; }
659
+
660
+ p.tableblock.header { color: #6d6e71; }