jekyll-theme-neysa 0.1.3 → 0.1.5
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 +4 -4
- data/_includes/footer.html +10 -0
- data/_layouts/default.html +1 -8
- data/_layouts/notebook.html +26 -0
- data/_layouts/project.html +1 -8
- data/_sass/jekyll-theme-neysa.scss +140 -41
- data/assets/.DS_Store +0 -0
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 248c42a0fc512d950b62b15974d2bf097c8dce9b7658c7c03f909e44aec89456
|
4
|
+
data.tar.gz: f5cf3be8ea81331c0ae6e96877785b748de7c8df82fa13b4b6b52faadf9de831
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42944ebacacd8f18cfdd080fffbeed9912350665414a5b4caf45688689d55855c1c56e0fc6b569d585193223dcedd03f6847ddcd5456706ff9330e9925d0d2ae
|
7
|
+
data.tar.gz: d194eb4fc75be48ee6fde6ecb3985311b251fa4016b44e6357f7b596074ca3905f6ba75b2ec04f99f3c8d0c881429c97298b6224e1eed5a8f021550af96615d7
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<footer class="inner">
|
2
|
+
{% if site.github.is_project_page %}
|
3
|
+
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
4
|
+
{% endif %}
|
5
|
+
<p>Published with <a href="https://pages.github.com">GitHub Pages</a>
|
6
|
+
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.last_name }} | Last updated: {{ "now" | date: '%B %d, %Y' }}</p>
|
7
|
+
|
8
|
+
</footer>
|
9
|
+
|
10
|
+
|
data/_layouts/default.html
CHANGED
@@ -19,14 +19,7 @@
|
|
19
19
|
</div>
|
20
20
|
|
21
21
|
<!-- FOOTER -->
|
22
|
-
|
23
|
-
<footer class="inner">
|
24
|
-
{% if site.github.is_project_page %}
|
25
|
-
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
26
|
-
{% endif %}
|
27
|
-
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
|
28
|
-
</footer>
|
29
|
-
</div>
|
22
|
+
{% include footer.html %}
|
30
23
|
</body>
|
31
24
|
|
32
25
|
{% include mathjax.html %} <!--Need to be after the contents-->
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<meta charset='utf-8'>
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
7
|
+
<meta name="viewport" content="width=device-width,maximum-scale=2">
|
8
|
+
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
9
|
+
|
10
|
+
{% include head-custom.html %}
|
11
|
+
</head>
|
12
|
+
|
13
|
+
<body>
|
14
|
+
<!-- MAIN CONTENT -->
|
15
|
+
<div id="main_content_wrap" class="outer">
|
16
|
+
<section id="main_content" class="inner">
|
17
|
+
{{ content }}
|
18
|
+
</section>
|
19
|
+
</div>
|
20
|
+
|
21
|
+
<!-- FOOTER -->
|
22
|
+
{% include footer.html %}
|
23
|
+
</body>
|
24
|
+
|
25
|
+
{% include mathjax.html %} <!--Need to be after the contents-->
|
26
|
+
</html>
|
data/_layouts/project.html
CHANGED
@@ -19,14 +19,7 @@
|
|
19
19
|
</div>
|
20
20
|
|
21
21
|
<!-- FOOTER -->
|
22
|
-
|
23
|
-
<footer class="inner">
|
24
|
-
{% if site.github.is_project_page %}
|
25
|
-
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
26
|
-
{% endif %}
|
27
|
-
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
|
28
|
-
</footer>
|
29
|
-
</div>
|
22
|
+
{% include footer.html %}
|
30
23
|
</body>
|
31
24
|
|
32
25
|
{% include mathjax.html %} <!--Need to be after the contents-->
|
@@ -34,12 +34,6 @@ ol, ul {
|
|
34
34
|
list-style: none;
|
35
35
|
}
|
36
36
|
|
37
|
-
table {
|
38
|
-
border-collapse: collapse;
|
39
|
-
border-spacing: 0;
|
40
|
-
margin-left: auto;
|
41
|
-
margin-right: auto;
|
42
|
-
}
|
43
37
|
|
44
38
|
|
45
39
|
|
@@ -50,18 +44,21 @@ Theme Styles
|
|
50
44
|
body {
|
51
45
|
box-sizing: border-box;
|
52
46
|
color:#373737;
|
53
|
-
background: #
|
47
|
+
background: #ffffff00 !important;
|
54
48
|
font-size: 16px;
|
55
|
-
font-family: '
|
49
|
+
font-family: 'Times New Roman', Calibri, Helvetica, Arial, sans-serif;
|
56
50
|
line-height: 1.5;
|
57
51
|
-webkit-font-smoothing: antialiased;
|
52
|
+
max-width: 1080px !important;
|
53
|
+
margin-left: auto;
|
54
|
+
margin-right: auto;
|
58
55
|
}
|
59
56
|
|
60
57
|
h1, h2, h3, h4, h5, h6 {
|
61
58
|
margin: 0px 0;
|
62
59
|
font-weight: 700;
|
63
60
|
color:#222222;
|
64
|
-
font-family: '
|
61
|
+
font-family: 'Times New Roman', 'Calibri', Helvetica, Arial, sans-serif;
|
65
62
|
letter-spacing: -1px;
|
66
63
|
}
|
67
64
|
|
@@ -95,17 +92,25 @@ h6 {
|
|
95
92
|
|
96
93
|
p {
|
97
94
|
margin: 10px 0 15px 0;
|
95
|
+
max-width: 100%;
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
footer {
|
100
|
+
border-top: 1px #f2f2f2;
|
101
|
+
font-size: 12px;
|
98
102
|
}
|
99
103
|
|
100
104
|
footer p {
|
101
|
-
color: #
|
105
|
+
color: #6d6a6a !important;
|
102
106
|
margin: 0px;
|
103
107
|
text-align: center;
|
108
|
+
font-size: 12px;
|
104
109
|
}
|
105
110
|
|
106
111
|
a {
|
107
112
|
text-decoration: none;
|
108
|
-
color: #0F79D0;
|
113
|
+
color: #0F79D0 !important;
|
109
114
|
text-shadow: none;
|
110
115
|
|
111
116
|
transition: color 0.5s ease;
|
@@ -125,7 +130,7 @@ a:hover, a:focus {
|
|
125
130
|
}
|
126
131
|
|
127
132
|
footer a {
|
128
|
-
color: #
|
133
|
+
color: #0F79D0;
|
129
134
|
text-decoration: underline;
|
130
135
|
}
|
131
136
|
|
@@ -138,26 +143,17 @@ strong {
|
|
138
143
|
}
|
139
144
|
|
140
145
|
img {
|
141
|
-
position:
|
146
|
+
position:relative;
|
142
147
|
margin: 0 auto;
|
143
|
-
|
144
|
-
|
145
|
-
margin: 10px 0 10px 0;
|
146
|
-
border: 1px solid #ebebeb;
|
147
|
-
|
148
|
-
box-shadow: 0 0 5px #ebebeb;
|
149
|
-
-webkit-box-shadow: 0 0 5px #ebebeb;
|
150
|
-
-moz-box-shadow: 0 0 5px #ebebeb;
|
151
|
-
-o-box-shadow: 0 0 5px #ebebeb;
|
152
|
-
-ms-box-shadow: 0 0 5px #ebebeb;
|
148
|
+
padding: 0px;
|
149
|
+
margin: 0px 0 0px 0;
|
153
150
|
}
|
154
151
|
|
155
152
|
p img {
|
156
153
|
display: inline;
|
157
154
|
margin: 0;
|
158
|
-
padding:
|
155
|
+
padding-bottom: 5px;
|
159
156
|
vertical-align: middle;
|
160
|
-
text-align: center;
|
161
157
|
border: none;
|
162
158
|
}
|
163
159
|
|
@@ -235,21 +231,32 @@ hr {
|
|
235
231
|
background: url('../images/bg_hr.png') repeat-x center;
|
236
232
|
}
|
237
233
|
|
234
|
+
|
238
235
|
table {
|
239
|
-
border:
|
236
|
+
border-collapse: collapse;
|
237
|
+
border-spacing: 0;
|
238
|
+
margin-left: auto;
|
239
|
+
margin-right: auto;
|
240
|
+
border: 1px solid #cdcaca6b;
|
240
241
|
margin-bottom: 20px;
|
241
242
|
text-align: left;
|
243
|
+
max-width: 100%;
|
244
|
+
vertical-align: middle;
|
245
|
+
}
|
246
|
+
|
247
|
+
tbody{
|
248
|
+
max-width: 100%;
|
242
249
|
}
|
243
250
|
|
244
251
|
th {
|
245
252
|
font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
246
253
|
padding: 10px;
|
247
|
-
|
254
|
+
border: 1px solid #cdcaca6b;
|
248
255
|
}
|
249
256
|
|
250
257
|
td {
|
251
|
-
padding:
|
252
|
-
border: 1px solid #
|
258
|
+
padding: 5px;
|
259
|
+
border: 1px solid #cdcaca6b;
|
253
260
|
}
|
254
261
|
|
255
262
|
form {
|
@@ -371,8 +378,8 @@ Full-Width Styles
|
|
371
378
|
|
372
379
|
#main_content_wrap {
|
373
380
|
background: #ffffff;
|
374
|
-
border-top: 1px solid #
|
375
|
-
border-bottom: 1px solid #
|
381
|
+
border-top: 1px solid #aaaaaa;
|
382
|
+
border-bottom: 1px solid #aaaaaa;
|
376
383
|
}
|
377
384
|
|
378
385
|
#main_content {
|
@@ -380,8 +387,9 @@ Full-Width Styles
|
|
380
387
|
}
|
381
388
|
|
382
389
|
#footer_wrap {
|
383
|
-
background: #
|
384
|
-
font-size:
|
390
|
+
background: #aaaaaa;
|
391
|
+
font-size: 10px;
|
392
|
+
max-height: 80px
|
385
393
|
}
|
386
394
|
|
387
395
|
|
@@ -494,14 +502,30 @@ Small Device Styles
|
|
494
502
|
|
495
503
|
}
|
496
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
|
+
}
|
497
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
|
+
}
|
498
527
|
|
499
528
|
|
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
529
|
|
506
530
|
// Adding 'Contents' headline to the TOC
|
507
531
|
#markdown-toc::before {
|
@@ -534,7 +558,82 @@ p, ul, ol {font-family:Times,"Times New Roman","New York",serif;font-size:1.25re
|
|
534
558
|
}
|
535
559
|
|
536
560
|
|
537
|
-
|
538
|
-
|
539
|
-
|
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;
|
540
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;
|
639
|
+
}
|
data/assets/.DS_Store
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-neysa
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Neysa Chen
|
@@ -34,11 +34,13 @@ files:
|
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
36
|
- _config.yml
|
37
|
+
- _includes/footer.html
|
37
38
|
- _includes/google-analytics.html
|
38
39
|
- _includes/head-custom.html
|
39
40
|
- _includes/mathjax.html
|
40
41
|
- _layouts/.DS_Store
|
41
42
|
- _layouts/default.html
|
43
|
+
- _layouts/notebook.html
|
42
44
|
- _layouts/project.html
|
43
45
|
- _sass/.DS_Store
|
44
46
|
- _sass/jekyll-theme-neysa.scss
|