jekyll-zeta 0.3.2.2 → 0.3.3
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/archive_list.html +8 -1
- data/assets/css/main.css +118 -94
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21f3e98e673c84add05e83a379a5fa5cf6128fc3f9290d86c42357d33b651cba
|
4
|
+
data.tar.gz: 04bc3e6c3140f0ed6f1be01c7659b1f382d2c928342c483c94eb61bbdf4123b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5252b3b347a93a3df92dbc2c79da0ca6706cd1172f8b7e02d761c5c8b48707fb1661a37d044d59292e5d38527a55e3ff14ac5aa77c883d4ff57196d272f21192
|
7
|
+
data.tar.gz: ff289017ab682c7f0cc58e499146ab00848ab3a979fd2b5f852a85fefc434822ce19d1c838491abed0c7a9c2841368d3fc17490b0babaa426eaf6789d17dba8e
|
data/_includes/archive_list.html
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
|
8
8
|
{% assign archive_date_titleformat = site.theme_config.archive_title_date_format | default: "%m-%d" %}
|
9
9
|
|
10
|
+
{% assign yCounter = 0 %}
|
10
11
|
<ul class="postlistul">
|
11
12
|
{%- for post in posts limit: include.limit -%}
|
12
13
|
{% assign ymCur = post.date | date: archive_date_format %}
|
@@ -14,7 +15,13 @@
|
|
14
15
|
{% if ymPre != "" %}
|
15
16
|
</ul>
|
16
17
|
{% endif %}
|
17
|
-
|
18
|
+
{% if yCounter == 0 %}
|
19
|
+
<li class="postlistli largeli largeli0">{{ymCur}}</li>
|
20
|
+
{% else %}
|
21
|
+
<li class="postlistli largeli">{{ymCur}}</li>
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
{%- assign yCounter = yCounter | plus:1 -%}
|
18
25
|
<ul class="postlistul">
|
19
26
|
{% endif %}
|
20
27
|
{% assign ymPre = ymCur %}
|
data/assets/css/main.css
CHANGED
@@ -1,101 +1,114 @@
|
|
1
|
+
li {
|
2
|
+
padding: 0.2rem;
|
3
|
+
}
|
4
|
+
|
5
|
+
.w {
|
6
|
+
margin: auto;
|
7
|
+
max-width: 640px;
|
8
|
+
padding: 0.5rem;
|
9
|
+
}
|
10
|
+
|
11
|
+
code.highlighter-rouge {
|
12
|
+
color: #fff;
|
13
|
+
background: #000;
|
14
|
+
border-radius: 2px;
|
15
|
+
padding: 2px;
|
16
|
+
margin: 5px;
|
17
|
+
}
|
18
|
+
|
19
|
+
code {
|
20
|
+
color: #333;
|
21
|
+
background: #F0f2f4;
|
22
|
+
}
|
23
|
+
|
24
|
+
div.highlighter-rouge code {
|
25
|
+
border-radius: 4px;
|
26
|
+
display: block;
|
27
|
+
overflow-x: auto;
|
28
|
+
white-space: pre-wrap;
|
29
|
+
padding: 1rem;
|
30
|
+
}
|
31
|
+
|
32
|
+
img {
|
33
|
+
width: 60%;
|
34
|
+
display: block;
|
35
|
+
margin: 0 auto;
|
36
|
+
}
|
37
|
+
|
38
|
+
blockquote {
|
39
|
+
font-style: italic;
|
40
|
+
border-left: .2rem solid #dfe2e5;
|
41
|
+
color: #999;
|
42
|
+
padding: 0.25rem 0 .25rem 0.5rem;
|
43
|
+
margin: 1rem;
|
44
|
+
}
|
45
|
+
|
46
|
+
blockquote p {
|
47
|
+
margin: 0
|
48
|
+
}
|
49
|
+
|
50
|
+
table {
|
51
|
+
width: 100%;
|
52
|
+
}
|
53
|
+
|
54
|
+
table,
|
55
|
+
th,
|
56
|
+
td {
|
57
|
+
border: thin solid black;
|
58
|
+
border-collapse: collapse;
|
59
|
+
padding: 0.4rem;
|
60
|
+
}
|
61
|
+
|
62
|
+
hr {
|
63
|
+
margin-top: 2rem;
|
64
|
+
margin-bottom: 2rem;
|
65
|
+
border-color: lightgray
|
66
|
+
}
|
1
67
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
background: #F0f2f4; }
|
22
|
-
|
23
|
-
div.highlighter-rouge code {
|
24
|
-
border-radius: 4px;
|
25
|
-
display: block;
|
26
|
-
overflow-x: auto;
|
27
|
-
white-space: pre-wrap;
|
28
|
-
padding: 1rem;
|
29
|
-
}
|
30
|
-
|
31
|
-
img {
|
32
|
-
width: 60%;
|
33
|
-
display: block;
|
34
|
-
margin: 0 auto;
|
35
|
-
}
|
36
|
-
|
37
|
-
blockquote {
|
38
|
-
font-style: italic;
|
39
|
-
border-left:.2rem solid #dfe2e5;
|
40
|
-
color: #999;
|
41
|
-
padding: 0.25rem 0 .25rem 0.5rem;
|
42
|
-
margin: 1rem;
|
43
|
-
}
|
44
|
-
blockquote p {
|
45
|
-
margin:0
|
46
|
-
}
|
47
|
-
|
48
|
-
table {
|
49
|
-
width: 100%; }
|
50
|
-
|
51
|
-
table, th, td {
|
52
|
-
border: thin solid black;
|
53
|
-
border-collapse: collapse;
|
54
|
-
padding: 0.4rem;
|
55
|
-
}
|
56
|
-
|
57
|
-
hr {
|
58
|
-
margin-top: 2rem;
|
59
|
-
margin-bottom: 2rem;
|
60
|
-
border-color: lightgray
|
61
|
-
}
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
a:hover{
|
66
|
-
text-decoration: underline;
|
67
|
-
}
|
68
|
-
a {
|
69
|
-
text-decoration: none;
|
70
|
-
color: #0064c1;
|
71
|
-
}
|
72
|
-
h1 > a {
|
73
|
-
color: #333;
|
74
|
-
}
|
75
|
-
|
68
|
+
|
69
|
+
|
70
|
+
a:hover {
|
71
|
+
text-decoration: underline;
|
72
|
+
color: #f00000;
|
73
|
+
}
|
74
|
+
|
75
|
+
a {
|
76
|
+
text-decoration: none;
|
77
|
+
color: #0064c1;
|
78
|
+
}
|
79
|
+
|
80
|
+
h1>a {
|
81
|
+
color: #333;
|
82
|
+
}
|
83
|
+
|
84
|
+
h1>a:hover {
|
85
|
+
color: #333;
|
86
|
+
}
|
76
87
|
|
77
88
|
.navul {
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
89
|
+
padding: 0;
|
90
|
+
display: flex;
|
91
|
+
}
|
92
|
+
|
93
|
+
.navli {
|
94
|
+
list-style-type: none;
|
95
|
+
margin-right: 1rem;
|
96
|
+
font-size: 1.125rem;
|
85
97
|
}
|
86
|
-
|
87
|
-
|
88
|
-
|
98
|
+
|
99
|
+
.postlistul {
|
100
|
+
padding: 0
|
89
101
|
}
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
102
|
+
|
103
|
+
.postlistli {
|
104
|
+
list-style-type: none;
|
105
|
+
display: flex;
|
106
|
+
justify-content: space-between;
|
107
|
+
align-items: center;
|
95
108
|
|
96
109
|
}
|
97
110
|
|
98
|
-
.curNav{
|
111
|
+
.curNav {
|
99
112
|
color: #333;
|
100
113
|
font-weight: 700;
|
101
114
|
}
|
@@ -104,16 +117,27 @@ date {
|
|
104
117
|
color: #333;
|
105
118
|
}
|
106
119
|
|
107
|
-
.pagebar{
|
120
|
+
.pagebar {
|
108
121
|
margin-top: 2rem;
|
109
122
|
display: flex;
|
110
|
-
float:right;
|
111
|
-
align-items:baseline;
|
123
|
+
float: right;
|
124
|
+
align-items: baseline;
|
112
125
|
}
|
113
126
|
|
114
|
-
.page_number{
|
127
|
+
.page_number {
|
115
128
|
color: #333;
|
116
129
|
padding-left: 10px;
|
117
130
|
padding-right: 10px;
|
118
131
|
text-align: center;
|
132
|
+
}
|
133
|
+
|
134
|
+
.largeli {
|
135
|
+
font-weight: bolder;
|
136
|
+
color: #333;
|
137
|
+
font-size: 1.6rem;
|
138
|
+
padding: 2.25rem 1rem 0.5rem 0;
|
139
|
+
}
|
140
|
+
|
141
|
+
.largeli0 {
|
142
|
+
padding: 0 0 0.5rem 0;
|
119
143
|
}
|