jekyll-theme-neysa 0.1.4 → 0.1.6

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.
@@ -1,540 +1,675 @@
1
- @import "rouge";
2
-
3
- /*******************************************************************************
4
- MeyerWeb Reset
5
- *******************************************************************************/
6
-
7
- html, body, div, span, applet, object, iframe,
8
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
9
- a, abbr, acronym, address, big, cite, code,
10
- del, dfn, em, img, ins, kbd, q, s, samp,
11
- small, strike, strong, sub, sup, tt, var,
12
- b, u, i, center,
13
- dl, dt, dd, ol, ul, li,
14
- fieldset, form, label, legend,
15
- table, caption, tbody, tfoot, thead, tr, th, td,
16
- article, aside, canvas, details, embed,
17
- figure, figcaption, footer, header, hgroup,
18
- menu, nav, output, ruby, section, summary,
19
- time, mark, audio, video {
20
- margin: 0;
21
- padding: 0;
22
- border: 0;
23
- font: inherit;
24
- vertical-align: baseline;
25
- }
26
-
27
- /* HTML5 display-role reset for older browsers */
28
- article, aside, details, figcaption, figure,
29
- footer, header, hgroup, menu, nav, section {
30
- display: block;
31
- }
32
-
33
- ol, ul {
34
- list-style: none;
35
- }
36
-
37
-
38
-
39
-
40
- /*******************************************************************************
41
- Theme Styles
42
- *******************************************************************************/
43
-
44
- body {
45
- box-sizing: border-box;
46
- color:#373737;
47
- background: #212121;
48
- font-size: 16px;
49
- font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
50
- line-height: 1.5;
51
- -webkit-font-smoothing: antialiased;
52
- }
53
-
54
- h1, h2, h3, h4, h5, h6 {
55
- margin: 0px 0;
56
- font-weight: 700;
57
- color:#222222;
58
- font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
59
- letter-spacing: -1px;
60
- }
61
-
62
- h1 {
63
- text-align: center;
64
- font-size: 32px;
65
- font-weight: 600;
66
- }
67
-
68
- h2 {
69
- padding-bottom: 15px;
70
- font-size: 28px;
71
- background: url('../images/bg_hr.png') repeat-x bottom;
72
- }
73
-
74
- h3 {
75
- font-size: 24px;
76
- }
77
-
78
- h4 {
79
- font-size: 21px;
80
- }
81
-
82
- h5 {
83
- font-size: 18px;
84
- }
85
-
86
- h6 {
87
- font-size: 16px;
88
- }
89
-
90
- p {
91
- margin: 10px 0 15px 0;
92
- }
93
-
94
- footer p {
95
- color: #f2f2f2;
96
- margin: 0px;
97
- text-align: center;
98
- }
99
-
100
- a {
101
- text-decoration: none;
102
- color: #0F79D0;
103
- text-shadow: none;
104
-
105
- transition: color 0.5s ease;
106
- transition: text-shadow 0.5s ease;
107
- -webkit-transition: color 0.5s ease;
108
- -webkit-transition: text-shadow 0.5s ease;
109
- -moz-transition: color 0.5s ease;
110
- -moz-transition: text-shadow 0.5s ease;
111
- -o-transition: color 0.5s ease;
112
- -o-transition: text-shadow 0.5s ease;
113
- -ms-transition: color 0.5s ease;
114
- -ms-transition: text-shadow 0.5s ease;
115
- }
116
-
117
- a:hover, a:focus {
118
- text-decoration: underline;
119
- }
120
-
121
- footer a {
122
- color: #F2F2F2;
123
- text-decoration: underline;
124
- }
125
-
126
- em, cite {
127
- font-style: italic;
128
- }
129
-
130
- strong {
131
- font-weight: bold;
132
- }
133
-
134
- img {
135
- position: relative;
136
- margin: 0 auto;
137
- max-width: 739px;
138
- padding: 5px;
139
- margin: 10px 0 10px 0;
140
- border: 1px solid #ebebeb;
141
-
142
- box-shadow: 0 0 5px #ebebeb;
143
- -webkit-box-shadow: 0 0 5px #ebebeb;
144
- -moz-box-shadow: 0 0 5px #ebebeb;
145
- -o-box-shadow: 0 0 5px #ebebeb;
146
- -ms-box-shadow: 0 0 5px #ebebeb;
147
- }
148
-
149
- p img {
150
- display: inline;
151
- margin: 0;
152
- padding: 0;
153
- vertical-align: middle;
154
- text-align: center;
155
- border: none;
156
- }
157
-
158
- pre, code {
159
- color: #222;
160
- background-color: #fff;
161
-
162
- font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
163
- font-size: 0.875em;
164
-
165
- border-radius: 2px;
166
- -moz-border-radius: 2px;
167
- -webkit-border-radius: 2px;
168
- }
169
-
170
- pre {
171
- padding: 10px;
172
- box-shadow: 0 0 10px rgba(0,0,0,.1);
173
- overflow: auto;
174
- }
175
-
176
- code {
177
- padding: 3px;
178
- margin: 0 3px;
179
- box-shadow: 0 0 10px rgba(0,0,0,.1);
180
- }
181
-
182
- pre code {
183
- display: block;
184
- box-shadow: none;
185
- }
186
-
187
- blockquote {
188
- color: #666;
189
- margin-bottom: 20px;
190
- padding: 0 0 0 20px;
191
- border-left: 3px solid #bbb;
192
- }
193
-
194
-
195
- ul, ol, dl {
196
- margin-bottom: 15px
197
- }
198
-
199
- ul {
200
- list-style-position: inside;
201
- list-style: disc;
202
- padding-left: 20px;
203
- }
204
-
205
- ol {
206
- list-style-position: inside;
207
- list-style: decimal;
208
- padding-left: 20px;
209
- }
210
-
211
- dl dt {
212
- font-weight: bold;
213
- }
214
-
215
- dl dd {
216
- padding-left: 20px;
217
- font-style: italic;
218
- }
219
-
220
- dl p {
221
- padding-left: 20px;
222
- font-style: italic;
223
- }
224
-
225
- hr {
226
- height: 1px;
227
- margin-bottom: 5px;
228
- border: none;
229
- background: url('../images/bg_hr.png') repeat-x center;
230
- }
231
-
232
-
233
-
234
- table {
235
- border-collapse: collapse;
236
- border-spacing: 0;
237
- margin-left: auto;
238
- margin-right: auto;
239
- border: 1px solid #cdcaca6b;
240
- margin-bottom: 20px;
241
- text-align: left;
242
- }
243
-
244
- th {
245
- font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
246
- padding: 10px;
247
- border: 1px solid #cdcaca6b;
248
- }
249
-
250
- td {
251
- padding: 10px;
252
- border: 1px solid #cdcaca6b;
253
- }
254
-
255
- form {
256
- background: #f2f2f2;
257
- padding: 20px;
258
- }
259
-
260
- kbd {
261
- background-color: #fafbfc;
262
- border: 1px solid #c6cbd1;
263
- border-bottom-color: #959da5;
264
- border-radius: 3px;
265
- box-shadow: inset 0 -1px 0 #959da5;
266
- color: #444d56;
267
- display: inline-block;
268
- font-size: 11px;
269
- line-height: 11px;
270
- padding: 3px 5px;
271
- vertical-align: middle;
272
- }
273
-
274
- /*******************************************************************************
275
- Full-Width Styles
276
- *******************************************************************************/
277
-
278
- .outer {
279
- width: 100%;
280
- }
281
-
282
- .inner {
283
- position: relative;
284
- max-width: 1080px;
285
- padding: 10px 20px;
286
- margin: 0 auto;
287
- }
288
-
289
- #forkme_banner {
290
- display: block;
291
- position: absolute;
292
- top:0;
293
- right: 10px;
294
- z-index: 10;
295
- padding: 10px 50px 10px 10px;
296
- color: #fff;
297
- // background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
298
- font-weight: 700;
299
- box-shadow: 0 0 10px rgba(0,0,0,.5);
300
- border-bottom-left-radius: 2px;
301
- border-bottom-right-radius: 2px;
302
- }
303
-
304
- #header_wrap {
305
- background: #212121;
306
- background: -moz-linear-gradient(top, #373737, #212121);
307
- background: -webkit-linear-gradient(top, #373737, #212121);
308
- background: -ms-linear-gradient(top, #373737, #212121);
309
- background: -o-linear-gradient(top, #373737, #212121);
310
- background: linear-gradient(to top, #373737, #212121);
311
- }
312
-
313
- #header_wrap .inner {
314
- padding: 0px 0px 0px 0px;
315
- }
316
-
317
- #project_title {
318
- margin: 0;
319
- color: #fff;
320
- font-size: 42px;
321
- font-weight: 700;
322
- text-shadow: #111 0px 0px 10px;
323
- }
324
-
325
- #project_tagline {
326
- color: #fff;
327
- font-size: 24px;
328
- font-weight: 300;
329
- background: none;
330
- text-shadow: #111 0px 0px 10px;
331
- }
332
-
333
- #downloads {
334
- position: absolute;
335
- width: 210px;
336
- z-index: 10;
337
- bottom: -40px;
338
- right: 0;
339
- height: 70px;
340
- // background: url('../images/icon_download.png') no-repeat 0% 90%;
341
- }
342
-
343
- .zip_download_link {
344
- display: block;
345
- float: right;
346
- width: 90px;
347
- height:70px;
348
- text-indent: -5000px;
349
- overflow: hidden;
350
- // background: url(../images/sprite_download.png) no-repeat bottom left;
351
- }
352
-
353
- .tar_download_link {
354
- display: block;
355
- float: right;
356
- width: 90px;
357
- height:70px;
358
- text-indent: -5000px;
359
- overflow: hidden;
360
- // background: url(../images/sprite_download.png) no-repeat bottom right;
361
- margin-left: 10px;
362
- }
363
-
364
- .zip_download_link:hover {
365
- // background: url(../images/sprite_download.png) no-repeat top left;
366
- }
367
-
368
- .tar_download_link:hover {
369
- // background: url(../images/sprite_download.png) no-repeat top right;
370
- }
371
-
372
- #main_content_wrap {
373
- background: #ffffff;
374
- border-top: 1px solid #111;
375
- border-bottom: 1px solid #111;
376
- }
377
-
378
- #main_content {
379
- padding-top: 40px;
380
- }
381
-
382
- #footer_wrap {
383
- background: #212121;
384
- font-size: 11px;
385
- }
386
-
387
-
388
-
389
- /*******************************************************************************
390
- Small Device Styles
391
- *******************************************************************************/
392
-
393
- @media screen and (max-width: 992px) {
394
- img {
395
- max-width: 100%;
396
- }
397
- }
398
-
399
- @media screen and (max-width: 480px) {
400
- body {
401
- font-size:14px;
402
- }
403
-
404
- #downloads {
405
- display: none;
406
- }
407
-
408
- .inner {
409
- min-width: 320px;
410
- max-width: 480px;
411
- }
412
-
413
- #project_title {
414
- font-size: 32px;
415
- }
416
-
417
- h1 {
418
- font-size: 28px;
419
- }
420
-
421
- h2 {
422
- font-size: 24px;
423
- }
424
-
425
- h3 {
426
- font-size: 21px;
427
- }
428
-
429
- h4 {
430
- font-size: 18px;
431
- }
432
-
433
- h5 {
434
- font-size: 14px;
435
- }
436
-
437
- h6 {
438
- font-size: 12px;
439
- }
440
-
441
- code, pre {
442
- font-size: 11px;
443
- }
444
-
445
- }
446
-
447
- @media screen and (max-width: 320px) {
448
- body {
449
- font-size:14px;
450
- }
451
-
452
- #downloads {
453
- display: none;
454
- }
455
-
456
- .inner {
457
- min-width: 240px;
458
- max-width: 320px;
459
- }
460
-
461
- #project_title {
462
- font-size: 28px;
463
- }
464
-
465
- h1 {
466
- font-size: 24px;
467
- }
468
-
469
- h2 {
470
- font-size: 21px;
471
- }
472
-
473
- h3 {
474
- font-size: 18px;
475
- }
476
-
477
- h4 {
478
- font-size: 16px;
479
- }
480
-
481
- h5 {
482
- font-size: 14px;
483
- }
484
-
485
- h6 {
486
- font-size: 12px;
487
- }
488
-
489
- code, pre {
490
- min-width: 240px;
491
- max-width: 320px;
492
- font-size: 11px;
493
- }
494
-
495
- }
496
-
497
-
498
-
499
-
500
- /*
501
- .markdown-body p + h1 {font-size:8rem;font-weight:900; line-height:.9em;letter-spacing:-1px;margin-bottom:2rem;color:red;}
502
- .markdown-body h2 {font-size:4rem;font-weight:bold;letter-spacing:-1px;margin-bottom:2rem;}
503
- p, ul, ol {font-family:Times,"Times New Roman","New York",serif;font-size:1.25rem;width:40rem;max-width:40rem;}
504
- */
505
-
506
- // Adding 'Contents' headline to the TOC
507
- #markdown-toc::before {
508
- content: "Table of Contents";
509
- font-weight: bold;
510
- font-size: 26px;
511
- text-align: center;
512
- margin-left: auto;
513
- margin-right: auto;
514
- }
515
-
516
-
517
- // Using numbers instead of bullets for listing
518
- #markdown-toc ul {
519
- list-style: decimal;
520
- }
521
-
522
- #markdown-toc {
523
- padding: 1.5em;
524
- list-style: decimal;
525
- display: flex;
526
- flex-direction: column;
527
- flex-wrap: nowrap;
528
- align-content: center;
529
- justify-content: center;
530
- align-items: flex-start;
531
- width: fit-content;
532
- margin: auto;
533
- max-width: 450px;
534
- }
535
-
536
-
537
- .markdown-body table {
538
- margin-left: auto;
539
- margin-right: auto;
540
- }
1
+ @import "rouge";
2
+
3
+ /*******************************************************************************
4
+ MeyerWeb Reset
5
+ *******************************************************************************/
6
+
7
+ html, body, div, span, applet, object, iframe,
8
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
9
+ a, abbr, acronym, address, big, cite, code,
10
+ del, dfn, em, img, ins, kbd, q, s, samp,
11
+ small, strike, strong, sub, sup, tt, var,
12
+ b, u, i, center,
13
+ dl, dt, dd, ol, ul, li,
14
+ fieldset, form, label, legend,
15
+ table, caption, tbody, tfoot, thead, tr, th, td,
16
+ article, aside, canvas, details, embed,
17
+ figure, figcaption, footer, header, hgroup,
18
+ menu, nav, output, ruby, section, summary,
19
+ time, mark, audio, video {
20
+ margin: 0;
21
+ padding: 0;
22
+ border: 0;
23
+ font: inherit;
24
+ vertical-align: baseline;
25
+ }
26
+
27
+ /* HTML5 display-role reset for older browsers */
28
+ article, aside, details, figcaption, figure,
29
+ footer, header, hgroup, menu, nav, section {
30
+ display: block;
31
+ }
32
+
33
+ header {
34
+ display: none;
35
+ }
36
+
37
+ ol, ul {
38
+ list-style: none;
39
+ }
40
+
41
+
42
+
43
+
44
+ /*******************************************************************************
45
+ Theme Styles
46
+ *******************************************************************************/
47
+
48
+ body {
49
+ box-sizing: border-box;
50
+ color:#373737;
51
+ background: #ffffff00 !important;
52
+ font-size: 16px;
53
+ font-family: 'Times New Roman', Calibri, Helvetica, Arial, sans-serif;
54
+ line-height: 1.5;
55
+ -webkit-font-smoothing: antialiased;
56
+ max-width: 1080px !important;
57
+ margin-left: auto;
58
+ margin-right: auto;
59
+ }
60
+
61
+ h1, h2, h3, h4, h5, h6 {
62
+ margin: 0px 0;
63
+ font-weight: 700;
64
+ color:#222222;
65
+ font-family: 'Times New Roman', 'Calibri', Helvetica, Arial, sans-serif;
66
+ letter-spacing: -1px;
67
+ }
68
+
69
+ h1 {
70
+ text-align: center;
71
+ font-size: 32px;
72
+ font-weight: 600;
73
+ }
74
+
75
+ h2 {
76
+ padding-top: 15px;
77
+ padding-bottom: 15px;
78
+ font-size: 28px;
79
+ background: url('../images/bg_hr.png') repeat-x bottom;
80
+ }
81
+
82
+ h3 {
83
+ font-size: 24px;
84
+ }
85
+
86
+ h4 {
87
+ font-size: 21px;
88
+ }
89
+
90
+ h5 {
91
+ font-size: 18px;
92
+ }
93
+
94
+ h6 {
95
+ font-size: 16px;
96
+ }
97
+
98
+ p {
99
+ margin: 10px 0 15px 0;
100
+ max-width: 100%;
101
+ }
102
+
103
+
104
+ footer {
105
+ border-top: 1px #f2f2f2;
106
+ font-size: 12px;
107
+ }
108
+
109
+ footer p {
110
+ color: #6d6a6a !important;
111
+ margin: 0px;
112
+ text-align: center;
113
+ font-size: 12px;
114
+ }
115
+
116
+ a {
117
+ text-decoration: none;
118
+ color: #0F79D0 !important;
119
+ text-shadow: none;
120
+
121
+ transition: color 0.5s ease;
122
+ transition: text-shadow 0.5s ease;
123
+ -webkit-transition: color 0.5s ease;
124
+ -webkit-transition: text-shadow 0.5s ease;
125
+ -moz-transition: color 0.5s ease;
126
+ -moz-transition: text-shadow 0.5s ease;
127
+ -o-transition: color 0.5s ease;
128
+ -o-transition: text-shadow 0.5s ease;
129
+ -ms-transition: color 0.5s ease;
130
+ -ms-transition: text-shadow 0.5s ease;
131
+ }
132
+
133
+ a:hover, a:focus {
134
+ text-decoration: underline;
135
+ }
136
+
137
+ footer a {
138
+ color: #0F79D0;
139
+ text-decoration: underline;
140
+ }
141
+
142
+ em, cite {
143
+ font-style: italic;
144
+ }
145
+
146
+ strong {
147
+ font-weight: bold;
148
+ }
149
+
150
+ img {
151
+ position:relative;
152
+ margin: 0 auto;
153
+ padding: 0px;
154
+ margin: 0px 0 0px 0;
155
+ }
156
+
157
+ p img {
158
+ display: inline;
159
+ margin: 0;
160
+ padding-bottom: 5px;
161
+ vertical-align: middle;
162
+ border: none;
163
+ max-width:100%;
164
+ }
165
+
166
+ pre, code {
167
+ color: #222;
168
+ background-color: #fff;
169
+
170
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
171
+ font-size: 0.875em;
172
+
173
+ border-radius: 2px;
174
+ -moz-border-radius: 2px;
175
+ -webkit-border-radius: 2px;
176
+ }
177
+
178
+ pre {
179
+ padding: 10px;
180
+ box-shadow: 0 0 10px rgba(0,0,0,.1);
181
+ overflow: auto;
182
+ }
183
+
184
+ code {
185
+ padding: 0px;
186
+ margin: 0 0px;
187
+ box-shadow: 0 0 10px rgba(0,0,0,.1);
188
+ background: #f8f8f8;
189
+ }
190
+
191
+ pre code {
192
+ display: block;
193
+ box-shadow: none;
194
+ }
195
+
196
+ blockquote {
197
+ color: #666;
198
+ margin-bottom: 20px;
199
+ padding: 0 0 0 20px;
200
+ border-left: 3px solid #bbb;
201
+ }
202
+
203
+
204
+ ul, ol, dl {
205
+ margin-bottom: 15px
206
+ }
207
+
208
+ ul {
209
+ list-style-position: inside;
210
+ list-style: disc;
211
+ padding-left: 20px;
212
+ }
213
+
214
+ ol {
215
+ list-style-position: inside;
216
+ list-style: decimal;
217
+ padding-left: 20px;
218
+ }
219
+
220
+ dl dt {
221
+ font-weight: bold;
222
+ }
223
+
224
+ dl dd {
225
+ padding-left: 20px;
226
+ font-style: italic;
227
+ }
228
+
229
+ dl p {
230
+ padding-left: 20px;
231
+ font-style: italic;
232
+ }
233
+
234
+ hr {
235
+ height: 1px;
236
+ margin-bottom: 5px;
237
+ border: none;
238
+ background: url('../images/bg_hr.png') repeat-x center;
239
+ }
240
+
241
+
242
+ table {
243
+ border-collapse: collapse;
244
+ border-spacing: 0;
245
+ margin-left: auto;
246
+ margin-right: auto;
247
+ border: 1px solid #cdcaca6b;
248
+ margin-bottom: 0px;
249
+ text-align: left;
250
+ max-width: 100%;
251
+ vertical-align: middle;
252
+ word-wrap: break-word;
253
+ }
254
+
255
+ tbody{
256
+ max-width: 100%;
257
+ }
258
+
259
+ thead {
260
+ font-weight: bold;
261
+ text-align: center;
262
+ }
263
+
264
+
265
+ // out page size
266
+ table img{
267
+ width: 100%;
268
+ display: block;
269
+ // max-width:450px;
270
+ }
271
+
272
+
273
+ th {
274
+ font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
275
+ padding: 10px;
276
+ border: 1px solid #cdcaca6b;
277
+ }
278
+
279
+ td {
280
+ padding: 5px;
281
+ border: 1px solid #cdcaca6b;
282
+ vertical-align: middle;
283
+ }
284
+
285
+ form {
286
+ background: #f2f2f2;
287
+ padding: 20px;
288
+ }
289
+
290
+ kbd {
291
+ background-color: #fafbfc;
292
+ border: 1px solid #c6cbd1;
293
+ border-bottom-color: #959da5;
294
+ border-radius: 3px;
295
+ box-shadow: inset 0 -1px 0 #959da5;
296
+ color: #444d56;
297
+ display: inline-block;
298
+ font-size: 11px;
299
+ line-height: 11px;
300
+ padding: 3px 5px;
301
+ vertical-align: middle;
302
+ }
303
+
304
+ /*******************************************************************************
305
+ Full-Width Styles
306
+ *******************************************************************************/
307
+
308
+ .outer {
309
+ width: 100%;
310
+ }
311
+
312
+ .inner {
313
+ position: relative;
314
+ max-width: 1080px;
315
+ padding: 10px 20px;
316
+ margin: 0 auto;
317
+ }
318
+
319
+ #forkme_banner {
320
+ display: block;
321
+ position: absolute;
322
+ top:0;
323
+ right: 10px;
324
+ z-index: 10;
325
+ padding: 10px 50px 10px 10px;
326
+ color: #fff;
327
+ // background: url('../images/blacktocat.png') #0090ff no-repeat 95% 50%;
328
+ font-weight: 700;
329
+ box-shadow: 0 0 10px rgba(0,0,0,.5);
330
+ border-bottom-left-radius: 2px;
331
+ border-bottom-right-radius: 2px;
332
+ }
333
+
334
+ #header_wrap {
335
+ background: #212121;
336
+ background: -moz-linear-gradient(top, #373737, #212121);
337
+ background: -webkit-linear-gradient(top, #373737, #212121);
338
+ background: -ms-linear-gradient(top, #373737, #212121);
339
+ background: -o-linear-gradient(top, #373737, #212121);
340
+ background: linear-gradient(to top, #373737, #212121);
341
+ }
342
+
343
+ #header_wrap .inner {
344
+ padding: 0px 0px 0px 0px;
345
+ }
346
+
347
+ #project_title {
348
+ margin: 0;
349
+ color: #fff;
350
+ font-size: 42px;
351
+ font-weight: 700;
352
+ text-shadow: #111 0px 0px 10px;
353
+ }
354
+
355
+ #project_tagline {
356
+ color: #fff;
357
+ font-size: 24px;
358
+ font-weight: 300;
359
+ background: none;
360
+ text-shadow: #111 0px 0px 10px;
361
+ }
362
+
363
+ #downloads {
364
+ position: absolute;
365
+ width: 210px;
366
+ z-index: 10;
367
+ bottom: -40px;
368
+ right: 0;
369
+ height: 70px;
370
+ // background: url('../images/icon_download.png') no-repeat 0% 90%;
371
+ }
372
+
373
+ .zip_download_link {
374
+ display: block;
375
+ float: right;
376
+ width: 90px;
377
+ height:70px;
378
+ text-indent: -5000px;
379
+ overflow: hidden;
380
+ // background: url(../images/sprite_download.png) no-repeat bottom left;
381
+ }
382
+
383
+ .tar_download_link {
384
+ display: block;
385
+ float: right;
386
+ width: 90px;
387
+ height:70px;
388
+ text-indent: -5000px;
389
+ overflow: hidden;
390
+ // background: url(../images/sprite_download.png) no-repeat bottom right;
391
+ margin-left: 10px;
392
+ }
393
+
394
+ .zip_download_link:hover {
395
+ // background: url(../images/sprite_download.png) no-repeat top left;
396
+ }
397
+
398
+ .tar_download_link:hover {
399
+ // background: url(../images/sprite_download.png) no-repeat top right;
400
+ }
401
+
402
+ #main_content_wrap {
403
+ background: #ffffff;
404
+ border-top: 1px solid #aaaaaa72;
405
+ border-bottom: 1px solid #aaaaaa75;
406
+ padding-bottom: 10px;
407
+ min-height: 845px;
408
+ }
409
+
410
+ #main_content {
411
+ padding-top: 40px;
412
+ }
413
+
414
+ #footer_wrap {
415
+ background: #aaaaaa;
416
+ font-size: 10px;
417
+ max-height: 80px
418
+ }
419
+
420
+
421
+
422
+ /*******************************************************************************
423
+ Small Device Styles
424
+ *******************************************************************************/
425
+
426
+ @media screen and (max-width: 992px) {
427
+ img {
428
+ max-width: 100%;
429
+ }
430
+ }
431
+
432
+ @media screen and (max-width: 480px) {
433
+ body {
434
+ font-size:14px;
435
+ }
436
+
437
+ #downloads {
438
+ display: none;
439
+ }
440
+
441
+ .inner {
442
+ min-width: 320px;
443
+ max-width: 480px;
444
+ }
445
+
446
+ #project_title {
447
+ font-size: 32px;
448
+ }
449
+
450
+ h1 {
451
+ font-size: 28px;
452
+ }
453
+
454
+ h2 {
455
+ font-size: 24px;
456
+ }
457
+
458
+ h3 {
459
+ font-size: 21px;
460
+ }
461
+
462
+ h4 {
463
+ font-size: 18px;
464
+ }
465
+
466
+ h5 {
467
+ font-size: 14px;
468
+ }
469
+
470
+ h6 {
471
+ font-size: 12px;
472
+ }
473
+
474
+ code, pre {
475
+ font-size: 11px;
476
+ }
477
+
478
+ }
479
+
480
+ @media screen and (max-width: 320px) {
481
+ body {
482
+ font-size:14px;
483
+ }
484
+
485
+ #downloads {
486
+ display: none;
487
+ }
488
+
489
+ .inner {
490
+ min-width: 240px;
491
+ max-width: 320px;
492
+ }
493
+
494
+ #project_title {
495
+ font-size: 28px;
496
+ }
497
+
498
+ h1 {
499
+ font-size: 24px;
500
+ }
501
+
502
+ h2 {
503
+ font-size: 21px;
504
+ }
505
+
506
+ h3 {
507
+ font-size: 18px;
508
+ }
509
+
510
+ h4 {
511
+ font-size: 16px;
512
+ }
513
+
514
+ h5 {
515
+ font-size: 14px;
516
+ }
517
+
518
+ h6 {
519
+ font-size: 12px;
520
+ }
521
+
522
+ code, pre {
523
+ min-width: 240px;
524
+ max-width: 320px;
525
+ font-size: 11px;
526
+ }
527
+
528
+ }
529
+
530
+ footer.fixed-bottom {
531
+ border-top: 1px solid #e8e8e8;
532
+ width: 100%;
533
+ padding-top: 15px;
534
+ font-size: 90%;
535
+ position: absolute;
536
+ height: 50px;
537
+ bottom: 0px;
538
+ margin-bottom: 0px;
539
+ position: relative;
540
+ }
541
+
542
+ footer.sticky-bottom {
543
+ border-top: 1px solid #e8e8e8;
544
+ width: 100%;
545
+ padding-top: 5px;
546
+ font-size: 80%;
547
+ position: absolute;
548
+ height: 45px;
549
+ bottom: 0px;
550
+ margin-bottom: 0px;
551
+ }
552
+
553
+
554
+
555
+ // Adding 'Contents' headline to the TOC
556
+ #markdown-toc::before {
557
+ content: "Table of Contents";
558
+ font-weight: bold;
559
+ font-size: 26px;
560
+ text-align: center;
561
+ margin-left: auto;
562
+ margin-right: auto;
563
+ }
564
+
565
+
566
+ // Using numbers instead of bullets for listing
567
+ #markdown-toc ul {
568
+ list-style: decimal;
569
+ }
570
+
571
+ #markdown-toc {
572
+ padding: 1.5em;
573
+ list-style: decimal;
574
+ display: flex;
575
+ flex-direction: column;
576
+ flex-wrap: nowrap;
577
+ align-content: center;
578
+ justify-content: center;
579
+ align-items: flex-start;
580
+ width: fit-content;
581
+ margin: auto;
582
+ max-width: 450px;
583
+ }
584
+
585
+ #markdown-toc li.toctree-l3:first-child {
586
+ display: none;
587
+ }
588
+
589
+
590
+
591
+ /*******************************************************************************
592
+ Project
593
+ *******************************************************************************/
594
+ pre {
595
+ background: #f4f4f4;
596
+ border: 1px solid;
597
+ border-left: 1px solid;
598
+ border-radius: 6px;
599
+ color: #b8b8b8;
600
+ page-break-inside: avoid;
601
+ /*font-family: monospace;*/
602
+ font-size: 13px;
603
+ /*line-height: 1.6;*/
604
+ /*margin-bottom: 1.6em;*/
605
+ max-width: 100%;
606
+ overflow: auto;
607
+ /*padding: 1em 1.5em;*/
608
+ display: block;
609
+ word-wrap: break-word;
610
+ }
611
+
612
+ figure {
613
+ text-align: center !important;
614
+ }
615
+
616
+ figcaption {
617
+ text-align: center;
618
+ margin-top: 20px;
619
+ margin-bottom: 20px;
620
+ }
621
+
622
+ img.smallimg{
623
+ height: 16px !important;
624
+ vertical-align: baseline;
625
+ border-radius: 2%;
626
+ padding-bottom: 0px;
627
+
628
+ }
629
+
630
+ abstract {
631
+ text-align: justify;
632
+ }
633
+
634
+ h2.section-title {
635
+ font-weight: bold !important;
636
+ padding-top: 36px;
637
+ font-size: 32px;
638
+ text-align:center !important;
639
+ }
640
+
641
+ h5.section-title {
642
+ font-weight: bold !important;
643
+ font-size: 28px;
644
+ }
645
+
646
+ h5.pubname {
647
+ padding-top: 16px;
648
+ text-align:center !important;
649
+ font-style: italic;
650
+ width: 100%;
651
+ }
652
+
653
+ nav {
654
+ padding-bottom: 0px;
655
+ text-align:center !important;
656
+ width: 100%;
657
+ }
658
+
659
+ h2.section-title {
660
+ align:center;
661
+ font-weight: bold !important;
662
+ font-family: Times New Roman;
663
+ padding-top: 36px
664
+ }
665
+
666
+ a.author{
667
+ font-family: cabin;
668
+ margin-right: 20px;
669
+ }
670
+
671
+
672
+ sup {
673
+ vertical-align: super;
674
+ font-size: smaller;
675
+ }