jekyll-theme-neysa 0.1.4 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61c86bf67ebc21fafff703e0aaee90e2a46f5a65d6f4381f57cf3710d2c89e52
4
- data.tar.gz: afa924d19fe5342956b72cf88c55a9b4c045f34fa8178cb61e871ea2768b1fa3
3
+ metadata.gz: 248c42a0fc512d950b62b15974d2bf097c8dce9b7658c7c03f909e44aec89456
4
+ data.tar.gz: f5cf3be8ea81331c0ae6e96877785b748de7c8df82fa13b4b6b52faadf9de831
5
5
  SHA512:
6
- metadata.gz: e183e1ca2d425a06f74ef4587e48437763324812595bd47830267bd8bf609b169c4498c66291fee45a42dc991a432fa2e45867944297350790fbe0b8ff985201
7
- data.tar.gz: fc9d5a0ad7d2d6b49c3868887b9079aafb2ed0471ef2756e6f04b167429f545569fd7eb506dbe9f32df1c597882757cc20e53b2380969923ea2d27e144731d5f
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
+ &copy; Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.last_name }} | Last updated: {{ "now" | date: '%B %d, %Y' }}</p>
7
+
8
+ </footer>
9
+
10
+
@@ -19,14 +19,7 @@
19
19
  </div>
20
20
 
21
21
  <!-- FOOTER -->
22
- <div id="footer_wrap" class="outer">
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>
@@ -19,14 +19,7 @@
19
19
  </div>
20
20
 
21
21
  <!-- FOOTER -->
22
- <div id="footer_wrap" class="outer">
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-->
@@ -44,18 +44,21 @@ Theme Styles
44
44
  body {
45
45
  box-sizing: border-box;
46
46
  color:#373737;
47
- background: #212121;
47
+ background: #ffffff00 !important;
48
48
  font-size: 16px;
49
- font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
49
+ font-family: 'Times New Roman', Calibri, Helvetica, Arial, sans-serif;
50
50
  line-height: 1.5;
51
51
  -webkit-font-smoothing: antialiased;
52
+ max-width: 1080px !important;
53
+ margin-left: auto;
54
+ margin-right: auto;
52
55
  }
53
56
 
54
57
  h1, h2, h3, h4, h5, h6 {
55
58
  margin: 0px 0;
56
59
  font-weight: 700;
57
60
  color:#222222;
58
- font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
61
+ font-family: 'Times New Roman', 'Calibri', Helvetica, Arial, sans-serif;
59
62
  letter-spacing: -1px;
60
63
  }
61
64
 
@@ -89,17 +92,25 @@ h6 {
89
92
 
90
93
  p {
91
94
  margin: 10px 0 15px 0;
95
+ max-width: 100%;
96
+ }
97
+
98
+
99
+ footer {
100
+ border-top: 1px #f2f2f2;
101
+ font-size: 12px;
92
102
  }
93
103
 
94
104
  footer p {
95
- color: #f2f2f2;
105
+ color: #6d6a6a !important;
96
106
  margin: 0px;
97
107
  text-align: center;
108
+ font-size: 12px;
98
109
  }
99
110
 
100
111
  a {
101
112
  text-decoration: none;
102
- color: #0F79D0;
113
+ color: #0F79D0 !important;
103
114
  text-shadow: none;
104
115
 
105
116
  transition: color 0.5s ease;
@@ -119,7 +130,7 @@ a:hover, a:focus {
119
130
  }
120
131
 
121
132
  footer a {
122
- color: #F2F2F2;
133
+ color: #0F79D0;
123
134
  text-decoration: underline;
124
135
  }
125
136
 
@@ -132,26 +143,17 @@ strong {
132
143
  }
133
144
 
134
145
  img {
135
- position: relative;
146
+ position:relative;
136
147
  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;
148
+ padding: 0px;
149
+ margin: 0px 0 0px 0;
147
150
  }
148
151
 
149
152
  p img {
150
153
  display: inline;
151
154
  margin: 0;
152
- padding: 0;
155
+ padding-bottom: 5px;
153
156
  vertical-align: middle;
154
- text-align: center;
155
157
  border: none;
156
158
  }
157
159
 
@@ -230,7 +232,6 @@ hr {
230
232
  }
231
233
 
232
234
 
233
-
234
235
  table {
235
236
  border-collapse: collapse;
236
237
  border-spacing: 0;
@@ -239,6 +240,12 @@ table {
239
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 {
@@ -248,7 +255,7 @@ th {
248
255
  }
249
256
 
250
257
  td {
251
- padding: 10px;
258
+ padding: 5px;
252
259
  border: 1px solid #cdcaca6b;
253
260
  }
254
261
 
@@ -371,8 +378,8 @@ Full-Width Styles
371
378
 
372
379
  #main_content_wrap {
373
380
  background: #ffffff;
374
- border-top: 1px solid #111;
375
- border-bottom: 1px solid #111;
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: #212121;
384
- font-size: 11px;
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
- .markdown-body table {
538
- margin-left: auto;
539
- margin-right: auto;
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%;
540
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
+ }
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
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