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
@@ -0,0 +1 @@
|
|
1
|
+
<div markdown="span" class="alert alert-danger" role="alert"><i class="fa fa-exclamation-circle"></i> <b>Warning:</b> {{include.content}}</div>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
{% include topnav.html %}
|
2
|
+
<div class="container">
|
3
|
+
<div class="row row-offcanvas row-offcanvas-left">
|
4
|
+
|
5
|
+
<!-- sidebar -->
|
6
|
+
<div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar" role="navigation">
|
7
|
+
|
8
|
+
{% include sidebar.html %}
|
9
|
+
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<!-- main area -->
|
13
|
+
<div class="col-xs-12 col-sm-9 main">
|
14
|
+
|
15
|
+
<div class="subtitle">
|
16
|
+
{% include breadcrumb.html %}
|
17
|
+
</div>
|
18
|
+
|
19
|
+
{% if page.simple_map == true %}
|
20
|
+
|
21
|
+
<script>
|
22
|
+
$(document).ready ( function(){
|
23
|
+
$('.box{{page.box_number}}').addClass('active');
|
24
|
+
});
|
25
|
+
</script>
|
26
|
+
|
27
|
+
{% include {{page.map_name}} %}
|
28
|
+
|
29
|
+
|
30
|
+
{% endif %}
|
31
|
+
|
32
|
+
|
33
|
+
<h1>{{page.title}}</h1>
|
34
|
+
|
35
|
+
{% if site.github_button_location_below_title == true %}
|
36
|
+
{% include github_button.html %}
|
37
|
+
{% endif %}
|
38
|
+
{{content}}
|
39
|
+
{% if site.github_button_location_page_bottom == true %}
|
40
|
+
{% include github_button.html %}
|
41
|
+
{% endif %}
|
42
|
+
|
43
|
+
{% include disqus.html %}
|
44
|
+
|
45
|
+
|
46
|
+
</div>
|
47
|
+
</div><!--/.container-->
|
48
|
+
|
49
|
+
|
50
|
+
</div><!--/.page-container-->
|
51
|
+
{% include footer.html %}
|
52
|
+
|
53
|
+
{% include google_analytics.html %}
|
54
|
+
|
55
|
+
</body>
|
56
|
+
|
57
|
+
</html>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<meta charset="utf-8">
|
4
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
6
|
+
<title>{{ site.uistring.title }}</title>
|
7
|
+
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="assets/css/pdf/syntax.css" />
|
10
|
+
<link rel="stylesheet" href="assets/css/pdf/bootstrap.min.css" />
|
11
|
+
<link rel="stylesheet" href="assets/css/pdf/fontawesome.min.css" />
|
12
|
+
<link rel="stylesheet" href="assets/css/pdf/printstyles.css" />
|
13
|
+
<link rel="stylesheet" href="assets/css/pdf/user_defined_pdf_styles.css" />
|
14
|
+
|
15
|
+
|
16
|
+
<script>
|
17
|
+
Prince.addScriptFunc("datestamp", function() {
|
18
|
+
return "PDF last generated: {{ site.time | date: '%B %d, %Y' }}";
|
19
|
+
});
|
20
|
+
</script>
|
21
|
+
|
22
|
+
<script>
|
23
|
+
Prince.addScriptFunc("guideName", function() {
|
24
|
+
return "{{site.print_title}}";
|
25
|
+
});
|
26
|
+
</script>
|
27
|
+
</head>
|
28
|
+
<body class="{{page.class}}">
|
29
|
+
|
30
|
+
<div class="post-header">
|
31
|
+
{% unless page.type == "title" %}
|
32
|
+
<h1 class="post-title-main" id="{{page.permalink | replace: '/', '' }}">{{ page.title }}</h1>
|
33
|
+
{% endunless %}
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div class="post-content">
|
37
|
+
{{ content }}
|
38
|
+
</div>
|
39
|
+
</body>
|
40
|
+
</html>
|
data/_sass/alerts.scss
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
/* callout styles*/
|
2
|
+
|
3
|
+
.bs-callout {
|
4
|
+
padding: 20px;
|
5
|
+
margin: 20px 0;
|
6
|
+
border: 1px solid #eee;
|
7
|
+
border-left-width: 5px;
|
8
|
+
border-radius: 3px;
|
9
|
+
}
|
10
|
+
.calloutTitle {
|
11
|
+
margin-top: 0;
|
12
|
+
margin-bottom: 5px;
|
13
|
+
font-size: 16px;
|
14
|
+
}
|
15
|
+
.bs-callout p:last-child {
|
16
|
+
margin-bottom: 0;
|
17
|
+
}
|
18
|
+
.bs-callout code {
|
19
|
+
border-radius: 3px;
|
20
|
+
}
|
21
|
+
.bs-callout+.bs-callout {
|
22
|
+
margin-top: -5px;
|
23
|
+
}
|
24
|
+
.bs-callout-default {
|
25
|
+
border-left-color: #777;
|
26
|
+
}
|
27
|
+
.bs-callout-default .calloutTitle {
|
28
|
+
color: #777;
|
29
|
+
}
|
30
|
+
.bs-callout-primary {
|
31
|
+
border-left-color: #428bca;
|
32
|
+
}
|
33
|
+
.bs-callout-primary .calloutTitle {
|
34
|
+
color: #428bca;
|
35
|
+
}
|
36
|
+
.bs-callout-success {
|
37
|
+
border-left-color: #5cb85c;
|
38
|
+
}
|
39
|
+
.bs-callout-success .calloutTitle {
|
40
|
+
color: #5cb85c;
|
41
|
+
}
|
42
|
+
.bs-callout-danger {
|
43
|
+
border-left-color: #d9534f;
|
44
|
+
}
|
45
|
+
.bs-callout-danger .calloutTitle {
|
46
|
+
color: #d9534f;
|
47
|
+
}
|
48
|
+
.bs-callout-warning {
|
49
|
+
border-left-color: #f0ad4e;
|
50
|
+
}
|
51
|
+
.bs-callout-warning .calloutTitle {
|
52
|
+
color: #f0ad4e;
|
53
|
+
}
|
54
|
+
.bs-callout-info {
|
55
|
+
border-left-color: #5bc0de;
|
56
|
+
}
|
57
|
+
.bs-callout-info .calloutTitle {
|
58
|
+
color: #5bc0de;
|
59
|
+
}
|
60
|
+
|
61
|
+
.alert code {
|
62
|
+
background: transparent;
|
63
|
+
}
|
64
|
+
|
65
|
+
blockquote {
|
66
|
+
background-color: #eef7fa;
|
67
|
+
font-family: arial;
|
68
|
+
font-size: .9em;
|
69
|
+
margin: 0px;
|
70
|
+
padding: 1em;
|
71
|
+
}
|
72
|
+
|
73
|
+
p.note {
|
74
|
+
background: #f1f1f1;
|
75
|
+
padding: 1em;
|
76
|
+
border-left: 1em solid orange;
|
77
|
+
}
|
78
|
+
|
79
|
+
p.tip {
|
80
|
+
background: #f1f1f1;
|
81
|
+
padding: 1em;
|
82
|
+
border-left: 1em solid deepskyblue;
|
83
|
+
}
|
84
|
+
|
85
|
+
p.warning {
|
86
|
+
background: #f1f1f1;
|
87
|
+
padding: 1em;
|
88
|
+
border-left: 1em solid red;
|
89
|
+
}
|
90
|
+
|
91
|
+
p.note::before {
|
92
|
+
content: "Note: ";
|
93
|
+
font-weight: bold;
|
94
|
+
}
|
95
|
+
|
96
|
+
p.tip::before {
|
97
|
+
content: "Tip: ";
|
98
|
+
font-weight: bold;
|
99
|
+
}
|
100
|
+
|
101
|
+
p.warning::before {
|
102
|
+
content: "Warning: ";
|
103
|
+
font-weight: bold;
|
104
|
+
}
|
105
|
+
/* end callout styles*/
|
data/_sass/custom.scss
ADDED
@@ -0,0 +1,391 @@
|
|
1
|
+
body {
|
2
|
+
padding-top: 51px;
|
3
|
+
}
|
4
|
+
|
5
|
+
|
6
|
+
p,
|
7
|
+
ol,
|
8
|
+
ul,
|
9
|
+
li {
|
10
|
+
font-size: 1.5rem;
|
11
|
+
line-height: 2.4rem;
|
12
|
+
}
|
13
|
+
|
14
|
+
@media (min-width: 767px)
|
15
|
+
{
|
16
|
+
p, .alert, pre, ol li ul li, ol li ol li {
|
17
|
+
max-width: 90%;
|
18
|
+
}
|
19
|
+
|
20
|
+
}
|
21
|
+
|
22
|
+
.text-center {
|
23
|
+
padding-top: 20px;
|
24
|
+
}
|
25
|
+
/* end heading styles */
|
26
|
+
|
27
|
+
.col-xs-12.col-sm-7.main {
|
28
|
+
margin-bottom: 100px;
|
29
|
+
}
|
30
|
+
|
31
|
+
.col-xs-12 {
|
32
|
+
background-color: #fff;
|
33
|
+
padding-left: 40px;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* search */
|
37
|
+
|
38
|
+
div#search-results p {
|
39
|
+
margin-bottom: 25px;
|
40
|
+
}
|
41
|
+
|
42
|
+
.searchForm404 {
|
43
|
+
margin: 20px 0px;
|
44
|
+
}
|
45
|
+
|
46
|
+
.input-group.search {
|
47
|
+
max-width: 200px;
|
48
|
+
margin-right: 10px;
|
49
|
+
margin-top: 30px;
|
50
|
+
}
|
51
|
+
.sidebarSearchBar {
|
52
|
+
margin-bottom: 30px;
|
53
|
+
padding-top:20px;
|
54
|
+
}
|
55
|
+
/* endsearch */
|
56
|
+
|
57
|
+
|
58
|
+
/* this part adds an icon after external links, using FontAwesome*/
|
59
|
+
|
60
|
+
a[href^="http://"]:after,
|
61
|
+
a[href^="https://"]:after {
|
62
|
+
content: "\f08e";
|
63
|
+
font-family: FontAwesome;
|
64
|
+
font-weight: normal;
|
65
|
+
font-style: normal;
|
66
|
+
display: inline-block;
|
67
|
+
text-decoration: none;
|
68
|
+
padding-left: 3px;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Strip the outbound icon when this class is present */
|
72
|
+
|
73
|
+
a[href].noExtIcon::after,
|
74
|
+
a.no_icon:after
|
75
|
+
{
|
76
|
+
content: "" !important;
|
77
|
+
padding-left: 0;
|
78
|
+
}
|
79
|
+
|
80
|
+
/* Github edit button */
|
81
|
+
i.fa.fa-github.fa-lg:hover,
|
82
|
+
a.githubButton.noExtIcon:hover {
|
83
|
+
color: black;
|
84
|
+
text-decoration: none;
|
85
|
+
}
|
86
|
+
a.editButton {
|
87
|
+
color: #666;
|
88
|
+
text-decoration: none;
|
89
|
+
}
|
90
|
+
a.editButton:hover {
|
91
|
+
text-decoration: none;
|
92
|
+
color: black;
|
93
|
+
}
|
94
|
+
.githubButton {
|
95
|
+
color: black;
|
96
|
+
background-color: white;
|
97
|
+
border: 1px solid #777;
|
98
|
+
padding: 7px;
|
99
|
+
border-radius: 5px;
|
100
|
+
margin: 20px 0px 10px 0px;
|
101
|
+
}
|
102
|
+
.githubButton:hover {
|
103
|
+
background-color: #fefefe;
|
104
|
+
color: #444;
|
105
|
+
text-decoration: none;
|
106
|
+
}
|
107
|
+
|
108
|
+
.githubFeedback {
|
109
|
+
margin-bottom: 20px;
|
110
|
+
margin-top: 20px;
|
111
|
+
}
|
112
|
+
.githubButtonTopNavBar {
|
113
|
+
margin-top: -8px;
|
114
|
+
}
|
115
|
+
/* end github button */
|
116
|
+
|
117
|
+
/* feedback button */
|
118
|
+
.feedbackButton {
|
119
|
+
background-color: orange;
|
120
|
+
border: none;
|
121
|
+
color: whitesmoke;
|
122
|
+
padding: 6px 14px;
|
123
|
+
text-align: center;
|
124
|
+
text-decoration: none;
|
125
|
+
display: inline-block;
|
126
|
+
font-size: 16px;
|
127
|
+
border-radius: 4px;
|
128
|
+
box-shadow: 0 5px 6px 0 rgba(0,0,0,0.15);
|
129
|
+
}
|
130
|
+
.feedbackButton a {
|
131
|
+
color: whitesmoke;
|
132
|
+
}
|
133
|
+
.feedbackButton:hover {
|
134
|
+
background-color: #F79B08;
|
135
|
+
}
|
136
|
+
/* end feedback button */
|
137
|
+
|
138
|
+
/* syntax highlightig */
|
139
|
+
|
140
|
+
body.docs .highlight .err {
|
141
|
+
color: #a61717;
|
142
|
+
background-color: transparent !important;
|
143
|
+
}
|
144
|
+
/* svg styling */
|
145
|
+
|
146
|
+
.ie9 img[src$=".svg"] {
|
147
|
+
width: 100%;
|
148
|
+
}
|
149
|
+
/* 2 */
|
150
|
+
|
151
|
+
@media screen and (-ms-high-contrast: active),
|
152
|
+
(-ms-high-contrast: none) {
|
153
|
+
img[src$=".svg"] {
|
154
|
+
width: 100%;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
/* end */
|
158
|
+
/* image styles */
|
159
|
+
|
160
|
+
figcaption {
|
161
|
+
padding-bottom: 12px;
|
162
|
+
padding-top: 6px;
|
163
|
+
margin-bottom: 20px;
|
164
|
+
font-style: italic;
|
165
|
+
color: gray;
|
166
|
+
}
|
167
|
+
/* end */
|
168
|
+
|
169
|
+
span.projectTitle {
|
170
|
+
font-family: Arial;
|
171
|
+
font-weight: bold;
|
172
|
+
}
|
173
|
+
ul#entrypages li {
|
174
|
+
font-size: 12px;
|
175
|
+
}
|
176
|
+
|
177
|
+
|
178
|
+
.productSubtitle, a.productSubtitle {
|
179
|
+
color: #777;
|
180
|
+
}
|
181
|
+
|
182
|
+
a.productSubtitle:hover {
|
183
|
+
text-decoration: none;
|
184
|
+
color: #999;
|
185
|
+
cursor: pointer;
|
186
|
+
}
|
187
|
+
|
188
|
+
|
189
|
+
.main img {
|
190
|
+
margin: 12px 0px 3px 0px;
|
191
|
+
width: auto;
|
192
|
+
height: auto;
|
193
|
+
max-width: 100%;
|
194
|
+
max-height: 100%;
|
195
|
+
}
|
196
|
+
|
197
|
+
.main img.large {
|
198
|
+
max-width: 700px
|
199
|
+
}
|
200
|
+
|
201
|
+
.main img.medium {
|
202
|
+
max-width: 600px
|
203
|
+
}
|
204
|
+
|
205
|
+
.main img.small {
|
206
|
+
max-width: 300px;
|
207
|
+
}
|
208
|
+
|
209
|
+
.main img.inline {
|
210
|
+
margin: 0px;
|
211
|
+
vertical-align: middle;
|
212
|
+
}
|
213
|
+
|
214
|
+
dl dt p {
|
215
|
+
margin-left: 20px;
|
216
|
+
}
|
217
|
+
dl dd {
|
218
|
+
margin-top: 10px;
|
219
|
+
margin-bottom: 10px;
|
220
|
+
margin-left: 30px;
|
221
|
+
}
|
222
|
+
dd p {
|
223
|
+
margin-top: 12px;
|
224
|
+
}
|
225
|
+
dd pre {
|
226
|
+
margin-top: 12px;
|
227
|
+
margin-bottom: 12px;
|
228
|
+
}
|
229
|
+
.main li {
|
230
|
+
margin: 10px 0px;
|
231
|
+
}
|
232
|
+
|
233
|
+
|
234
|
+
body.docs .highlight .err {
|
235
|
+
color: #a61717;
|
236
|
+
background-color: transparent !important;
|
237
|
+
}
|
238
|
+
video {
|
239
|
+
display: block;
|
240
|
+
margin: 30px 0px;
|
241
|
+
border: 1px solid #c0c0c0;
|
242
|
+
}
|
243
|
+
|
244
|
+
|
245
|
+
nav#toc ul li ul li {
|
246
|
+
margin-left: 10px;
|
247
|
+
}
|
248
|
+
nav#toc ul li ul li,
|
249
|
+
div#toc2 ul li ul li {
|
250
|
+
margin: 2px 16px;
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
pre {
|
255
|
+
overflow: auto;
|
256
|
+
margin: 20px 0px;
|
257
|
+
background-color: black;
|
258
|
+
color: whitesmoke;
|
259
|
+
}
|
260
|
+
|
261
|
+
.legend img {
|
262
|
+
margin: 5px;
|
263
|
+
}
|
264
|
+
|
265
|
+
.legend {
|
266
|
+
margin-bottom: 20px;
|
267
|
+
}
|
268
|
+
|
269
|
+
img.docimage.border {
|
270
|
+
border: 1px solid #dedede;
|
271
|
+
}
|
272
|
+
span.red {
|
273
|
+
color: red;
|
274
|
+
}
|
275
|
+
/* footer */
|
276
|
+
|
277
|
+
|
278
|
+
p.external {
|
279
|
+
font-size: 11px;
|
280
|
+
}
|
281
|
+
ol li ol li {
|
282
|
+
list-style-type: lower-alpha;
|
283
|
+
}
|
284
|
+
img.inline {
|
285
|
+
vertical-align: bottom;
|
286
|
+
}
|
287
|
+
figure {
|
288
|
+
margin: 10px 0px;
|
289
|
+
}
|
290
|
+
ol li ul li {
|
291
|
+
list-style: disc;
|
292
|
+
}
|
293
|
+
|
294
|
+
/* mini toc javascript styles start */
|
295
|
+
|
296
|
+
nav#toc ul li,
|
297
|
+
div#toc2 ul li {
|
298
|
+
margin: 8px 0px 8px 22px;
|
299
|
+
font-size: 90%;
|
300
|
+
list-style: square;
|
301
|
+
}
|
302
|
+
nav#toc >ul::before,
|
303
|
+
div#toc2 >ul::before {
|
304
|
+
font-weight: 500;
|
305
|
+
color: #555;
|
306
|
+
text-align: center;
|
307
|
+
margin-left: auto;
|
308
|
+
margin-right: auto;
|
309
|
+
width: 70px;
|
310
|
+
padding-top: 20px;
|
311
|
+
padding-bottom: 20px;
|
312
|
+
padding-left: 10px;
|
313
|
+
}
|
314
|
+
nav#toc ul,
|
315
|
+
nav#toc2 ul {
|
316
|
+
background-color: #f7f7f7;
|
317
|
+
padding: 5px;
|
318
|
+
border-radius: 5px;
|
319
|
+
max-width: 300px;
|
320
|
+
color: gray;
|
321
|
+
}
|
322
|
+
nav#toc2 ul {
|
323
|
+
padding-left: 25px;
|
324
|
+
}
|
325
|
+
/* mini toc styles end */
|
326
|
+
|
327
|
+
/* mini toc kramdown */
|
328
|
+
ul#markdown-toc {
|
329
|
+
border: 1px solid #dedede;
|
330
|
+
border-radius: 5px;
|
331
|
+
max-width: 400px;
|
332
|
+
padding-top:20px;
|
333
|
+
margin-top: 30px;
|
334
|
+
color: gray;
|
335
|
+
padding-right: 7px;
|
336
|
+
}
|
337
|
+
|
338
|
+
ul#markdown-toc::before {
|
339
|
+
font-size:18px;
|
340
|
+
padding-top:30px;
|
341
|
+
margin: 20px 0px 20px -30px;
|
342
|
+
}
|
343
|
+
/* end mini toc */
|
344
|
+
|
345
|
+
|
346
|
+
.number_legend img.inline {
|
347
|
+
margin-bottom: 2px;
|
348
|
+
}
|
349
|
+
|
350
|
+
.endpointParam {
|
351
|
+
color: red;
|
352
|
+
}
|
353
|
+
|
354
|
+
/* homepage */
|
355
|
+
|
356
|
+
h1.homepageTitle {
|
357
|
+
margin-top: 50px;
|
358
|
+
}
|
359
|
+
|
360
|
+
ul.homepageLinks {
|
361
|
+
list-style: none;
|
362
|
+
padding: 0px;
|
363
|
+
margin: 0px;
|
364
|
+
}
|
365
|
+
|
366
|
+
ul.homepageLinks li {
|
367
|
+
margin-bottom: 6px;
|
368
|
+
}
|
369
|
+
|
370
|
+
a codebody.docs .highlighter-rouge {
|
371
|
+
color: #337ab7;
|
372
|
+
}
|
373
|
+
/* end homepage */
|
374
|
+
|
375
|
+
.docSample {
|
376
|
+
padding: 15px;
|
377
|
+
background-color: #e8f4ff;
|
378
|
+
margin: 1em 0em;
|
379
|
+
}
|
380
|
+
|
381
|
+
blockquote {
|
382
|
+
padding: 1em;
|
383
|
+
background-color: #e6f3f7;
|
384
|
+
margin: 1em 0em;
|
385
|
+
border-left: 0px;
|
386
|
+
}
|
387
|
+
|
388
|
+
a[data-toggle="tooltip"] {
|
389
|
+
color: green;
|
390
|
+
border-bottom: 1px dashed gray;
|
391
|
+
}
|