jekyll-zeta 0.5.6 → 0.6.0

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: e3e18c79d7f6a4a82ac492749e4567e623e87e145af68ff336eeb13f7fb68c56
4
- data.tar.gz: 02a1c8e61af4ee72a2464a5682dd0e3b37597881d57ae0a551388e0428354f44
3
+ metadata.gz: 5fde83c61d8550570f325e6837e4e2c9d7dbcc46b86ae4759d45f0f0db98625c
4
+ data.tar.gz: 074165065c305b44267c8d4d9cf81e3de190a9a3e1292b1b2a169f8eecfb07b6
5
5
  SHA512:
6
- metadata.gz: 0bdf2172c53fede25f1acb3753ec6e1aa78d95a0db878e939b6888dc80acaf9198ce9084e44506bc570fcf90e10bf5bc664f8388677d89a080826f72bfb5b757
7
- data.tar.gz: 50996cb0d65c8c48477d949976d639197f2bc16b3fd63cec540458fd8de51042d3241220650e309288049df4267390f99a07a1661c9079c0edba9a3b8ecff83e
6
+ metadata.gz: ce34530fa0e16f37593fefed701c3ee56b9694028d078b012f953a9ac408533895932947948058f0e164b4f2de6319af7008d2658e007e4cec42dd905d331dc1
7
+ data.tar.gz: bd5ab3a4e6be686f366201a1c55cfbc1623fe9ba331eb688f712a195d63e39c8e6290c328d28a1a3a8fa19f10096d81d437c09d40661f1cbb240a3f3e21313e9
@@ -1,3 +1,4 @@
1
+
1
2
  $color-red: #FF0000;
2
3
  $color-black: #333;
3
4
  $color-blue: #0064c1;
@@ -14,10 +15,24 @@ main{
14
15
  }
15
16
  body{
16
17
  font-family: monospace;
17
- font-size: 1.1rem;
18
+ font-size: 1.15rem;
18
19
  // background-color: #fafafa;
19
20
  margin: 0;
20
21
 
22
+ // &::before{
23
+ // content: "";
24
+ // position: fixed;
25
+ // left: 0;
26
+ // right: 0;
27
+ // top: 0;
28
+ // bottom: 0;
29
+
30
+ // // background-image: url(../image/bg-2.png) ;
31
+ // // background-color: #fffef8 ;//#fffef9;
32
+ // z-index: -1;
33
+ // // filter: grayscale(0.8);
34
+ // // opacity: 0.9;
35
+ // }
21
36
  }
22
37
 
23
38
  article{
@@ -25,7 +40,7 @@ article{
25
40
  }
26
41
  .w {
27
42
  margin: auto;
28
- max-width: 750px;
43
+ max-width: 960px;
29
44
  padding: 2em ;
30
45
  word-wrap: break-word;
31
46
  background-color: white;
@@ -35,7 +50,7 @@ article{
35
50
  code.highlighter-rouge {
36
51
  color: $color-black;
37
52
  background: $color-lightGrayBg;
38
- border-radius: 3px;
53
+ border-radius: 5px;
39
54
  padding: 0 5px;
40
55
  margin: 5px;
41
56
  }
@@ -47,7 +62,7 @@ code {
47
62
  }
48
63
 
49
64
  div.highlighter-rouge code {
50
- border-radius: 4px;
65
+ border-radius: 10px;
51
66
  display: block;
52
67
  overflow: auto;
53
68
  padding: 1rem;
@@ -61,12 +76,28 @@ img {
61
76
 
62
77
  blockquote {
63
78
  font-style: italic;
64
- border-left: 5px solid #dfe2e5;
79
+ border-left: 5px solid $color-lightGray;
65
80
  color: #999;
81
+ // padding: 2rem 0.25rem .25rem 0.25rem;
66
82
  padding: 15px;
67
83
  margin: 3em 0;
68
84
  background-color: $color-lightGrayBg;
69
85
 
86
+
87
+ // &::before{
88
+ // content: "";
89
+ // display: block;
90
+ // background: url(../image/quote.svg) no-repeat 50% 50%;
91
+ // width: 27px;
92
+ // height: 20px;
93
+ // position: absolute;
94
+ // z-index: 1;
95
+
96
+ // margin-left: -10px;
97
+ // margin-top: -24px;
98
+ // opacity: 0.1;
99
+
100
+ // }
70
101
  }
71
102
 
72
103
  blockquote p {
@@ -92,15 +123,31 @@ td {
92
123
  tr:nth-child(even){
93
124
  background-color: #f5f5f5;
94
125
  }
95
-
126
+
127
+ // hr {
128
+ // margin-top: 2rem;
129
+ // margin-bottom: 2rem;
130
+
131
+
132
+ // border: 0;
133
+ // padding: 3px;
134
+
135
+ // background: repeating-linear-gradient(135deg, #000 0px, #000 1px, transparent 1px, transparent 5px);
136
+ // }
96
137
 
97
138
  hr{
98
- border: none;
99
139
  margin: 2rem 0;
100
140
  border:none;
101
141
  text-align: center;
102
142
  color: $color-gray;
103
143
  border-bottom: $color-lightGray dashed 1px;
144
+
145
+
146
+ // &:before { content: '/////' }
147
+ // &:after { content: '/////' }
148
+ // &[data-content] {
149
+ // content: 'xxxxxx';
150
+ // }
104
151
  }
105
152
 
106
153
 
@@ -109,6 +156,7 @@ a {
109
156
  color: $color-blue;
110
157
  }
111
158
 
159
+
112
160
  .w > h1>a {
113
161
  color: $color-black;
114
162
  }
@@ -117,6 +165,22 @@ a {
117
165
  color: $color-black;
118
166
  }
119
167
 
168
+
169
+
170
+ nav{
171
+ /* 关键样式 */
172
+ background-color: transparent;
173
+ background-image: radial-gradient(transparent 1px, #ffffff 1px);
174
+ background-size: 4px 4px;
175
+ backdrop-filter: saturate(50%) blur(10px);
176
+ /* 这个只是固定在页面上面 */
177
+ position: sticky;
178
+ top: 0px;
179
+
180
+ align-content: center;
181
+ z-index: 1000;
182
+ }
183
+
120
184
  .navul {
121
185
  padding: 0;
122
186
  display: flex;
@@ -170,7 +234,7 @@ time {
170
234
  .pagebar {
171
235
  margin-top: 2rem;
172
236
  display: flex;
173
- float: right;
237
+ // float: right;
174
238
  align-items: baseline;
175
239
  }
176
240
 
@@ -237,12 +301,25 @@ input[type="button"]:hover{
237
301
  color: white;
238
302
  }
239
303
 
240
-
304
+
241
305
  pre{
242
306
  white-space: pre-wrap; /* 保留空白字符,但是允许自动换行 */
243
307
  overflow-wrap: break-word; /* 在单词内允许换行 */
244
308
  }
245
309
 
310
+ pre>code{
311
+ background-color: #1e131eff;
312
+ color: #e7e7b1;
313
+ box-shadow: 0px 0px 8px #000;
314
+ }
315
+
316
+ pre>code::before {
317
+ content: url('../image/dots.svg');
318
+ display: block;
319
+ margin-top:-1rem;
320
+ }
321
+
322
+
246
323
  img{
247
324
  max-width: 80%;
248
325
 
@@ -250,6 +327,6 @@ img{
250
327
 
251
328
  .iconchar{
252
329
  margin-left: 10px;
253
- filter: brightness(0.3);
254
- font-size: 0.7em;
330
+ // filter: grayscale(0.1) brightness(0.6);
331
+ font-size: 0.6em;
255
332
  }
data/assets/css/main.scss CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  ---
3
3
 
4
- @import "jekyll-zeta";
4
+ @import "jekyll-zeta"
Binary file
@@ -0,0 +1,5 @@
1
+ <svg width="50" height="14" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="8" cy="8" r="6" fill="#ff5f56" />
3
+ <circle cx="24" cy="8" r="6" fill="#ffbd2e" />
4
+ <circle cx="40" cy="8" r="6" fill="#27c93f" />
5
+ </svg>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-zeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.6
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - vitock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-22 00:00:00.000000000 Z
11
+ date: 2024-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -84,6 +84,8 @@ files:
84
84
  - _layouts/tags.html
85
85
  - _sass/jekyll-zeta.scss
86
86
  - assets/css/main.scss
87
+ - assets/image/dots.png
88
+ - assets/image/dots.svg
87
89
  - assets/image/lock.svg
88
90
  - assets/js/mouse_coords.js
89
91
  - index.html
@@ -106,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
108
  - !ruby/object:Gem::Version
107
109
  version: '0'
108
110
  requirements: []
109
- rubygems_version: 3.3.26
111
+ rubygems_version: 3.3.27
110
112
  signing_key:
111
113
  specification_version: 4
112
114
  summary: A clean fast, minimalist Jekyll theme.