jekyll-theme-doc-project 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +204 -0
- data/README.md +3 -0
- data/_includes/audio.html +4 -0
- data/_includes/breadcrumb.html +11 -0
- data/_includes/callout.html +1 -0
- data/_includes/custom_links.html +1 -0
- data/_includes/disqus.html +17 -0
- data/_includes/feedback.html +1 -0
- data/_includes/footer.html +65 -0
- data/_includes/github_button.html +1 -0
- data/_includes/github_button_topnavbar.html +1 -0
- data/_includes/google_analytics.html +15 -0
- data/_includes/hippo_menu_logic.html +77 -0
- data/_includes/hipposidebarscripts.html +36 -0
- data/_includes/image.html +1 -0
- data/_includes/important.html +1 -0
- data/_includes/inline_image.html +1 -0
- data/_includes/links.html +130 -0
- data/_includes/logo.html +5 -0
- data/_includes/note.html +1 -0
- data/_includes/notes.html +14 -0
- data/_includes/pdfminitoc.html +39 -0
- data/_includes/sidebar.html +113 -0
- data/_includes/tip.html +1 -0
- data/_includes/tooltips.html +1 -0
- data/_includes/topnav.html +189 -0
- data/_includes/warning.html +1 -0
- data/_layouts/default.html +57 -0
- data/_layouts/printpdf.html +40 -0
- data/_sass/alerts.scss +105 -0
- data/_sass/custom.scss +391 -0
- data/_sass/footer.scss +117 -0
- data/_sass/headings.scss +52 -0
- data/_sass/navbar.scss +237 -0
- data/_sass/navtabs.scss +165 -0
- data/_sass/sidebar.scss +193 -0
- data/_sass/syntax_highlighting.scss +325 -0
- data/_sass/table.scss +137 -0
- data/_sass/workflowmaps.scss +101 -0
- data/assets/companylogo.png +0 -0
- data/assets/css/jquery.navgoco.css +69 -0
- data/assets/css/main.scss +16 -0
- data/assets/css/monokai.css +80 -0
- data/assets/css/pdf/bootstrap.min.css +7738 -0
- data/assets/css/pdf/bootstrap.min.css.map +1 -0
- data/assets/css/pdf/font-awesome.min.css +4 -0
- data/assets/css/pdf/printstyles.css +154 -0
- data/assets/css/pdf/syntax.css +60 -0
- data/assets/css/pdf/user_defined_pdf_styles.css +1 -0
- data/assets/css/syntax.css +60 -0
- data/assets/css/user_defined_web_styles.css +5 -0
- data/assets/favicon.ico +0 -0
- data/assets/js/bootstrap.min.js +7 -0
- data/assets/js/jquery.cookie.min.js +8 -0
- data/assets/js/jquery.min.js +4 -0
- data/assets/js/jquery.navgoco.min.js +9 -0
- data/assets/js/lunr.min.js +7 -0
- data/assets/js/search.js +67 -0
- data/assets/js/user_defined_javascript.js +0 -0
- data/assets/licenses/LICENSE-BOOTSNIPP.txt +10 -0
- data/assets/licenses/LICENSE-JQUERY.txt +38 -0
- data/assets/licenses/LICENSE-LUNR.txt +22 -0
- data/assets/licenses/LICENSE-NAVGOCO.txt +27 -0
- data/assets/licenses/LICENSE-jekyll-table-of-contents.txt +21 -0
- data/assets/linkstest.html +7 -0
- data/assets/pdffrontmatter/pdf_copyright_page.html +9 -0
- data/assets/pdffrontmatter/pdf_title_page.html +17 -0
- data/assets/pdffrontmatter/pdf_toc_page.html +52 -0
- data/assets/prince-list.txt +31 -0
- data/assets/search.html +55 -0
- data/assets/snippets.txt +136 -0
- metadata +158 -0
data/_sass/sidebar.scss
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
.docnav {
|
2
|
+
max-width: 225px;
|
3
|
+
}
|
4
|
+
.docnav {
|
5
|
+
padding-left: 0px;
|
6
|
+
margin-left: 10px;
|
7
|
+
padding-right: 15px;
|
8
|
+
}
|
9
|
+
.docnav ul {
|
10
|
+
padding-left: 15px
|
11
|
+
}
|
12
|
+
.docnav li {
|
13
|
+
list-style: none;
|
14
|
+
font: normal 12px "Open Sans", "Lucida Grande", "Helvetica Neue", Arial;
|
15
|
+
border-bottom: 0px;
|
16
|
+
}
|
17
|
+
.docnav li a:hover,
|
18
|
+
.docnav li a:active {
|
19
|
+
text-decoration: none;
|
20
|
+
color: #666;
|
21
|
+
}
|
22
|
+
/* plus */
|
23
|
+
|
24
|
+
.docnav li.level1 > a > span:after,
|
25
|
+
.docnav li.level2 > a > span:after,
|
26
|
+
.docnav li.level3 > a > span:after {
|
27
|
+
content: '\f0fe';
|
28
|
+
font-family: 'FontAwesome';
|
29
|
+
color: #e47911;
|
30
|
+
font-size: 14px;
|
31
|
+
padding-right: 12px;
|
32
|
+
text-decoration: none;
|
33
|
+
}
|
34
|
+
/* empty square*/
|
35
|
+
|
36
|
+
.docnav li.level1items > a:before,
|
37
|
+
.docnav li.level2items > a:before,
|
38
|
+
.docnav li.level3items > a:before {
|
39
|
+
content: '\f096';
|
40
|
+
font-family: 'FontAwesome';
|
41
|
+
color: #e47911;
|
42
|
+
padding-right: 10px;
|
43
|
+
text-decoration: none;
|
44
|
+
/*text-indent: -1.5em;*/
|
45
|
+
}
|
46
|
+
/* minus */
|
47
|
+
|
48
|
+
.docnav li.open > a > span:after {
|
49
|
+
content: '\f146';
|
50
|
+
font-family: 'FontAwesome';
|
51
|
+
color: #e47911;
|
52
|
+
font-size: 14px;
|
53
|
+
padding-right: 10px;
|
54
|
+
}
|
55
|
+
.docnav li.level3,
|
56
|
+
.docnav li.level3items {
|
57
|
+
padding-left: 10px
|
58
|
+
}
|
59
|
+
.docnav li.level2,
|
60
|
+
.docnav li.level2items {
|
61
|
+
padding-left: 10px;
|
62
|
+
}
|
63
|
+
.docnav li.level1,
|
64
|
+
.docnav li.level1items {
|
65
|
+
padding-left: 10px;
|
66
|
+
}
|
67
|
+
.docnav li {
|
68
|
+
margin: 7px 0px;
|
69
|
+
}
|
70
|
+
li.level1.open > ul > li.level1items.open a,
|
71
|
+
li.level2.open > ul > li.level2items.open a,
|
72
|
+
li.level3.open > ul > li.level3items.open a {
|
73
|
+
color: black;
|
74
|
+
font-weight: bold;
|
75
|
+
}
|
76
|
+
li.level1.open > ul > li.level1items.open > a:before,
|
77
|
+
li.level2.open > ul > li.level2items.open > a:before,
|
78
|
+
li.level3.open > ul > li.level3items.open > a:before {
|
79
|
+
color: black;
|
80
|
+
}
|
81
|
+
.relatedResources {
|
82
|
+
font-size: 13px;
|
83
|
+
color: black;
|
84
|
+
margin: 10px 0px;
|
85
|
+
}
|
86
|
+
.productTitle {
|
87
|
+
font-size: 18px;
|
88
|
+
font-weight: bold;
|
89
|
+
color: #333333;
|
90
|
+
display: block;
|
91
|
+
margin-right: 8px;
|
92
|
+
}
|
93
|
+
hr.resourceSeparator {
|
94
|
+
display: block;
|
95
|
+
margin-top: 1.7em;
|
96
|
+
margin-bottom: 1.7em;
|
97
|
+
margin-left: 0px;
|
98
|
+
/*margin-right: auto;*/
|
99
|
+
|
100
|
+
border-width: 1px;
|
101
|
+
color: black;
|
102
|
+
max-width: 80%;
|
103
|
+
}
|
104
|
+
.docnav li a {
|
105
|
+
line-height: 18px;
|
106
|
+
display: table;
|
107
|
+
white-space: pre-wrap;
|
108
|
+
/* css-3 */
|
109
|
+
|
110
|
+
white-space: -moz-pre-wrap;
|
111
|
+
/* Mozilla, since 1999 */
|
112
|
+
|
113
|
+
white-space: -pre-wrap;
|
114
|
+
/* Opera 4-6 */
|
115
|
+
|
116
|
+
white-space: -o-pre-wrap;
|
117
|
+
/* Opera 7 */
|
118
|
+
|
119
|
+
word-wrap: break-word;
|
120
|
+
/* Internet Explorer 5.5+ */
|
121
|
+
|
122
|
+
text-indent: -20px;
|
123
|
+
}
|
124
|
+
@media (max-width: 600px) {
|
125
|
+
.docnav li a {
|
126
|
+
max-width: 180px;
|
127
|
+
}
|
128
|
+
.githubButton {
|
129
|
+
display: none;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
@media (min-width: 600px) {
|
133
|
+
.docnav li a {
|
134
|
+
max-width: 240px;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
ul#docnavsidebar li a:focus {
|
139
|
+
text-decoration: none;
|
140
|
+
}
|
141
|
+
|
142
|
+
#sidebar {
|
143
|
+
height: 100%;
|
144
|
+
padding-right: 0;
|
145
|
+
overflow-y: auto;
|
146
|
+
}
|
147
|
+
#sidebar .nav {
|
148
|
+
width: 95%;
|
149
|
+
}
|
150
|
+
|
151
|
+
/* collapsed sidebar styles */
|
152
|
+
|
153
|
+
@media screen and (max-width: 767px) {
|
154
|
+
.row-offcanvas {
|
155
|
+
position: relative;
|
156
|
+
-webkit-transition: all 0.75s ease-out;
|
157
|
+
-moz-transition: all 0.75s ease-out;
|
158
|
+
transition: all 0.75s ease-out;
|
159
|
+
}
|
160
|
+
.row-offcanvas-right .sidebar-offcanvas {
|
161
|
+
right: -41.6%;
|
162
|
+
}
|
163
|
+
.row-offcanvas-left .sidebar-offcanvas {
|
164
|
+
left: -41.6%;
|
165
|
+
}
|
166
|
+
.row-offcanvas-right.active {
|
167
|
+
right: 41.6%;
|
168
|
+
}
|
169
|
+
.row-offcanvas-left.active {
|
170
|
+
left: 41.6%;
|
171
|
+
}
|
172
|
+
.sidebar-offcanvas {
|
173
|
+
position: absolute;
|
174
|
+
top: 0;
|
175
|
+
width: 41.6%;
|
176
|
+
}
|
177
|
+
#sidebar {
|
178
|
+
padding-top: 0;
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
#sidebar {
|
183
|
+
background-color: #f7f7f7;
|
184
|
+
padding-bottom: 50px;
|
185
|
+
padding-top: 50px;
|
186
|
+
}
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
.mydocsidebar .input-group.search {
|
192
|
+
margin-top: -10px;
|
193
|
+
}
|
@@ -0,0 +1,325 @@
|
|
1
|
+
body.docs .highlight {
|
2
|
+
white-space: pre;
|
3
|
+
overflow: auto;
|
4
|
+
word-wrap: normal;
|
5
|
+
/* horizontal scrolling */
|
6
|
+
|
7
|
+
-moz-border-radius: 5px;
|
8
|
+
-webkit-border-radius: 5px;
|
9
|
+
border-radius: 5px;
|
10
|
+
padding: 15px;
|
11
|
+
padding-left: 10px;
|
12
|
+
background: #202020;
|
13
|
+
color: whitesmoke;
|
14
|
+
}
|
15
|
+
body.docs .highlight .hll {
|
16
|
+
background-color: #202020
|
17
|
+
}
|
18
|
+
body.docs .highlight .c {
|
19
|
+
color: #75715e
|
20
|
+
}
|
21
|
+
/* Comment */
|
22
|
+
|
23
|
+
body.docs .highlight .err {
|
24
|
+
color: lime;
|
25
|
+
background-color: #1e0010
|
26
|
+
}
|
27
|
+
/* Error */
|
28
|
+
|
29
|
+
body.docs .highlight .k {
|
30
|
+
color: #66d9ef
|
31
|
+
}
|
32
|
+
/* Keyword */
|
33
|
+
|
34
|
+
body.docs .highlight .l {
|
35
|
+
color: #ae81ff
|
36
|
+
}
|
37
|
+
/* Literal */
|
38
|
+
|
39
|
+
body.docs .highlight .n {
|
40
|
+
color: #f8f8f2
|
41
|
+
}
|
42
|
+
/* Name */
|
43
|
+
|
44
|
+
body.docs .highlight .o {
|
45
|
+
color: #f92672
|
46
|
+
}
|
47
|
+
/* Operator */
|
48
|
+
|
49
|
+
body.docs .highlight .p {
|
50
|
+
color: #f8f8f2
|
51
|
+
}
|
52
|
+
/* Punctuation */
|
53
|
+
|
54
|
+
body.docs .highlight .cm {
|
55
|
+
color: #75715e
|
56
|
+
}
|
57
|
+
/* Comment.Multiline */
|
58
|
+
|
59
|
+
body.docs .highlight .cp {
|
60
|
+
color: #75715e
|
61
|
+
}
|
62
|
+
/* Comment.Preproc */
|
63
|
+
|
64
|
+
body.docs .highlight .c1 {
|
65
|
+
color: #75715e
|
66
|
+
}
|
67
|
+
/* Comment.Single */
|
68
|
+
|
69
|
+
body.docs .highlight .cs {
|
70
|
+
color: #75715e
|
71
|
+
}
|
72
|
+
/* Comment.Special */
|
73
|
+
|
74
|
+
body.docs .highlight .ge {
|
75
|
+
font-style: italic
|
76
|
+
}
|
77
|
+
/* Generic.Emph */
|
78
|
+
|
79
|
+
body.docs .highlight .gs {
|
80
|
+
font-weight: bold
|
81
|
+
}
|
82
|
+
/* Generic.Strong */
|
83
|
+
|
84
|
+
body.docs .highlight .kc {
|
85
|
+
color: #66d9ef
|
86
|
+
}
|
87
|
+
/* Keyword.Constant */
|
88
|
+
|
89
|
+
body.docs .highlight .kd {
|
90
|
+
color: #66d9ef
|
91
|
+
}
|
92
|
+
/* Keyword.Declaration */
|
93
|
+
|
94
|
+
body.docs .highlight .kn {
|
95
|
+
color: #f92672
|
96
|
+
}
|
97
|
+
/* Keyword.Namespace */
|
98
|
+
|
99
|
+
body.docs .highlight .kp {
|
100
|
+
color: #66d9ef
|
101
|
+
}
|
102
|
+
/* Keyword.Pseudo */
|
103
|
+
|
104
|
+
body.docs .highlight .kr {
|
105
|
+
color: #66d9ef
|
106
|
+
}
|
107
|
+
/* Keyword.Reserved */
|
108
|
+
|
109
|
+
body.docs .highlight .kt {
|
110
|
+
color: #66d9ef
|
111
|
+
}
|
112
|
+
/* Keyword.Type */
|
113
|
+
|
114
|
+
body.docs .highlight .ld {
|
115
|
+
color: #e6db74
|
116
|
+
}
|
117
|
+
/* Literal.Date */
|
118
|
+
|
119
|
+
body.docs .highlight .m {
|
120
|
+
color: #ae81ff
|
121
|
+
}
|
122
|
+
/* Literal.Number */
|
123
|
+
|
124
|
+
body.docs .highlight .s {
|
125
|
+
color: #e6db74
|
126
|
+
}
|
127
|
+
/* Literal.String */
|
128
|
+
|
129
|
+
body.docs .highlight .na {
|
130
|
+
color: #a6e22e
|
131
|
+
}
|
132
|
+
/* Name.Attribute */
|
133
|
+
|
134
|
+
body.docs .highlight .nb {
|
135
|
+
color: #f8f8f2
|
136
|
+
}
|
137
|
+
/* Name.Builtin */
|
138
|
+
|
139
|
+
body.docs .highlight .nc {
|
140
|
+
color: #a6e22e
|
141
|
+
}
|
142
|
+
/* Name.Class */
|
143
|
+
|
144
|
+
body.docs .highlight .no {
|
145
|
+
color: #66d9ef
|
146
|
+
}
|
147
|
+
/* Name.Constant */
|
148
|
+
|
149
|
+
body.docs .highlight .nd {
|
150
|
+
color: #a6e22e
|
151
|
+
}
|
152
|
+
/* Name.Decorator */
|
153
|
+
|
154
|
+
body.docs .highlight .ni {
|
155
|
+
color: #f8f8f2
|
156
|
+
}
|
157
|
+
/* Name.Entity */
|
158
|
+
|
159
|
+
body.docs .highlight .ne {
|
160
|
+
color: #a6e22e
|
161
|
+
}
|
162
|
+
/* Name.Exception */
|
163
|
+
|
164
|
+
body.docs .highlight .nf {
|
165
|
+
color: #a6e22e
|
166
|
+
}
|
167
|
+
/* Name.Function */
|
168
|
+
|
169
|
+
body.docs .highlight .nl {
|
170
|
+
color: #f8f8f2
|
171
|
+
}
|
172
|
+
/* Name.Label */
|
173
|
+
|
174
|
+
body.docs .highlight .nn {
|
175
|
+
color: #f8f8f2
|
176
|
+
}
|
177
|
+
/* Name.Namespace */
|
178
|
+
|
179
|
+
body.docs .highlight .nx {
|
180
|
+
color: #a6e22e
|
181
|
+
}
|
182
|
+
/* Name.Other */
|
183
|
+
|
184
|
+
body.docs .highlight .py {
|
185
|
+
color: #f8f8f2
|
186
|
+
}
|
187
|
+
/* Name.Property */
|
188
|
+
|
189
|
+
body.docs .highlight .nt {
|
190
|
+
color: #dedede;
|
191
|
+
}
|
192
|
+
/* Name.Tag */
|
193
|
+
|
194
|
+
body.docs .highlight .nv {
|
195
|
+
color: #f8f8f2
|
196
|
+
}
|
197
|
+
/* Name.Variable */
|
198
|
+
|
199
|
+
body.docs .highlight .ow {
|
200
|
+
color: #f92672
|
201
|
+
}
|
202
|
+
/* Operator.Word */
|
203
|
+
|
204
|
+
body.docs .highlight .w {
|
205
|
+
color: #f8f8f2
|
206
|
+
}
|
207
|
+
/* Text.Whitespace */
|
208
|
+
|
209
|
+
body.docs .highlight .mf {
|
210
|
+
color: #ae81ff
|
211
|
+
}
|
212
|
+
/* Literal.Number.Float */
|
213
|
+
|
214
|
+
body.docs .highlight .mh {
|
215
|
+
color: #ae81ff
|
216
|
+
}
|
217
|
+
/* Literal.Number.Hex */
|
218
|
+
|
219
|
+
body.docs .highlight .mi {
|
220
|
+
color: #ae81ff
|
221
|
+
}
|
222
|
+
/* Literal.Number.Integer */
|
223
|
+
|
224
|
+
body.docs .highlight .mo {
|
225
|
+
color: #ae81ff
|
226
|
+
}
|
227
|
+
/* Literal.Number.Oct */
|
228
|
+
|
229
|
+
body.docs .highlight .sb {
|
230
|
+
color: #e6db74
|
231
|
+
}
|
232
|
+
/* Literal.String.Backtick */
|
233
|
+
|
234
|
+
body.docs .highlight .sc {
|
235
|
+
color: #e6db74
|
236
|
+
}
|
237
|
+
/* Literal.String.Char */
|
238
|
+
|
239
|
+
body.docs .highlight .sd {
|
240
|
+
color: #e6db74
|
241
|
+
}
|
242
|
+
/* Literal.String.Doc */
|
243
|
+
|
244
|
+
body.docs .highlight .s2 {
|
245
|
+
color: #e6db74
|
246
|
+
}
|
247
|
+
/* Literal.String.Double */
|
248
|
+
|
249
|
+
body.docs .highlight .se {
|
250
|
+
color: #ae81ff
|
251
|
+
}
|
252
|
+
/* Literal.String.Escape */
|
253
|
+
|
254
|
+
body.docs .highlight .sh {
|
255
|
+
color: #e6db74
|
256
|
+
}
|
257
|
+
/* Literal.String.Heredoc */
|
258
|
+
|
259
|
+
body.docs .highlight .si {
|
260
|
+
color: #e6db74
|
261
|
+
}
|
262
|
+
/* Literal.String.Interpol */
|
263
|
+
|
264
|
+
body.docs .highlight .sx {
|
265
|
+
color: #e6db74
|
266
|
+
}
|
267
|
+
/* Literal.String.Other */
|
268
|
+
|
269
|
+
body.docs .highlight .sr {
|
270
|
+
color: #e6db74
|
271
|
+
}
|
272
|
+
/* Literal.String.Regex */
|
273
|
+
|
274
|
+
body.docs .highlight .s1 {
|
275
|
+
color: #e6db74
|
276
|
+
}
|
277
|
+
/* Literal.String.Single */
|
278
|
+
|
279
|
+
body.docs .highlight .ss {
|
280
|
+
color: #e6db74
|
281
|
+
}
|
282
|
+
/* Literal.String.Symbol */
|
283
|
+
|
284
|
+
body.docs .highlight .bp {
|
285
|
+
color: #f8f8f2
|
286
|
+
}
|
287
|
+
/* Name.Builtin.Pseudo */
|
288
|
+
|
289
|
+
body.docs .highlight .vc {
|
290
|
+
color: #f8f8f2
|
291
|
+
}
|
292
|
+
/* Name.Variable.Class */
|
293
|
+
|
294
|
+
body.docs .highlight .vg {
|
295
|
+
color: #f8f8f2
|
296
|
+
}
|
297
|
+
/* Name.Variable.Global */
|
298
|
+
|
299
|
+
body.docs .highlight .vi {
|
300
|
+
color: #f8f8f2
|
301
|
+
}
|
302
|
+
/* Name.Variable.Instance */
|
303
|
+
|
304
|
+
body.docs .highlight .il {
|
305
|
+
color: #ae81ff
|
306
|
+
}
|
307
|
+
/* Literal.Number.Integer.Long */
|
308
|
+
|
309
|
+
body.docs .highlight .gh {}
|
310
|
+
/* Generic Heading & Diff Header */
|
311
|
+
|
312
|
+
body.docs .highlight .gu {
|
313
|
+
color: #75715e;
|
314
|
+
}
|
315
|
+
/* Generic.Subheading & Diff Unified/Comment? */
|
316
|
+
|
317
|
+
body.docs .highlight .gd {
|
318
|
+
color: #f92672;
|
319
|
+
}
|
320
|
+
/* Generic.Deleted & Diff Deleted */
|
321
|
+
|
322
|
+
body.docs .highlight .gi {
|
323
|
+
color: #a6e22e;
|
324
|
+
}
|
325
|
+
/* Generic.Inserted & Diff Inserted */
|