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