hexo-theme-solitude 2.0.5 → 2.0.7
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.
- package/.editorconfig +9 -0
- package/_config.yml +17 -16
- package/languages/default.yml +8 -3
- package/languages/en.yml +8 -3
- package/languages/zh-CN.yml +8 -3
- package/languages/zh-TW.yml +8 -3
- package/layout/includes/inject/head.pug +2 -2
- package/layout/includes/page/says.pug +5 -5
- package/layout/includes/widgets/aside/asideInfoCard.pug +13 -10
- package/layout/includes/widgets/home/bbTimeList.pug +3 -3
- package/package.json +1 -1
- package/plugins.yml +2 -2
- package/scripts/event/merge_config.js +4 -4
- package/scripts/event/welcome.js +2 -2
- package/source/css/_comments/twikoo.styl +7 -58
- package/source/css/_global/index.styl +1 -1
- package/source/css/_layout/header.styl +4 -3
- package/source/css/_page/_home/home-top.styl +2 -4
- package/source/css/_page/links.styl +102 -100
- package/source/css/_page/other.styl +6 -1
- package/source/css/_page/says.styl +3 -2
- package/source/css/_post/copyright.styl +7 -2
- package/source/css/_search/algolia-search.styl +6 -6
- package/source/js/main.js +646 -645
- package/source/js/third_party/waterfall.min.js +5 -1
@@ -22,6 +22,8 @@
|
|
22
22
|
.flink#article-container
|
23
23
|
margin-top 1rem
|
24
24
|
|
25
|
+
#article-container
|
26
|
+
|
25
27
|
.flink-desc
|
26
28
|
margin 0
|
27
29
|
color var(--efu-secondtext)
|
@@ -226,122 +228,122 @@
|
|
226
228
|
.flink-item-desc
|
227
229
|
display none
|
228
230
|
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
231
|
+
.flink-list-item
|
232
|
+
margin 6px 6px
|
233
|
+
transition .3s
|
234
|
+
border-radius 12px
|
235
|
+
transition-timing-function ease-in-out
|
236
|
+
position relative
|
237
|
+
width calc(20% - 12px)
|
238
|
+
border var(--style-border-always)
|
239
|
+
box-shadow var(--efu-shadow-border)
|
240
|
+
background var(--efu-card-bg)
|
241
|
+
display flex
|
242
|
+
float left
|
243
|
+
overflow hidden
|
244
|
+
height 90px
|
245
|
+
line-height 17px
|
246
|
+
transform translateZ(0)
|
245
247
|
|
246
|
-
|
247
|
-
|
248
|
+
+maxWidth1200()
|
249
|
+
width calc(25% - 12px)
|
248
250
|
|
249
|
-
|
250
|
-
|
251
|
+
+maxWidth1024()
|
252
|
+
width calc(33.3333% - 12px)
|
251
253
|
|
252
|
-
|
253
|
-
|
254
|
+
+maxWidth768()
|
255
|
+
width calc(50% - 12px)
|
254
256
|
|
255
|
-
|
256
|
-
|
257
|
+
+maxWidth600()
|
258
|
+
width calc(100% - 12px)
|
257
259
|
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
260
|
+
a
|
261
|
+
display flex
|
262
|
+
width 100%
|
263
|
+
height 100%
|
264
|
+
border none
|
265
|
+
align-items center
|
264
266
|
|
265
|
-
|
266
|
-
|
267
|
+
.img-alt
|
268
|
+
display none
|
267
269
|
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
.flink-item-info
|
280
|
-
display flex
|
281
|
-
flex-direction column
|
282
|
-
justify-content center
|
283
|
-
width calc(100% - 90px)
|
284
|
-
height fit-content
|
285
|
-
padding 0 4px
|
270
|
+
img
|
271
|
+
border-radius 32px
|
272
|
+
margin 15px 20px 15px 15px
|
273
|
+
transition .3s
|
274
|
+
background var(--efu-background)
|
275
|
+
min-width 60px
|
276
|
+
min-height 60px
|
277
|
+
float left
|
278
|
+
width 60px
|
279
|
+
height 60px
|
286
280
|
|
287
|
-
|
288
|
-
|
281
|
+
.flink-item-info
|
282
|
+
display flex
|
283
|
+
flex-direction column
|
284
|
+
justify-content center
|
285
|
+
width calc(100% - 90px)
|
286
|
+
height fit-content
|
287
|
+
padding 0 4px
|
289
288
|
|
290
|
-
|
291
|
-
|
292
|
-
font-size 19px
|
293
|
-
line-height 20px
|
294
|
-
color var(--efu-fontcolor)
|
295
|
-
display block
|
296
|
-
padding 0 10px 0 0
|
297
|
-
font-weight 700
|
298
|
-
max-width calc(100% - 12px)
|
299
|
-
overflow hidden
|
300
|
-
text-overflow ellipsis
|
301
|
-
white-space nowrap
|
289
|
+
span
|
290
|
+
transition .3s
|
302
291
|
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
292
|
+
.flink-item-name
|
293
|
+
text-align left
|
294
|
+
font-size 19px
|
295
|
+
line-height 20px
|
296
|
+
color var(--efu-fontcolor)
|
297
|
+
display block
|
298
|
+
padding 0 10px 0 0
|
299
|
+
font-weight 700
|
300
|
+
max-width calc(100% - 12px)
|
301
|
+
overflow hidden
|
302
|
+
text-overflow ellipsis
|
303
|
+
white-space nowrap
|
304
|
+
|
305
|
+
.flink-item-desc
|
306
|
+
white-space normal
|
307
|
+
padding 5px 10px 16px 0
|
308
|
+
color var(--efu-fontcolor)
|
309
|
+
text-align left
|
310
|
+
height 40px
|
311
|
+
text-overflow ellipsis
|
312
|
+
opacity .7
|
313
|
+
display -webkit-box
|
314
|
+
overflow hidden
|
315
|
+
-webkit-box-orient vertical
|
316
|
+
-webkit-line-clamp 2
|
317
|
+
font-size .93em
|
316
318
|
|
317
|
-
|
318
|
-
|
319
|
+
&:hover
|
320
|
+
background var(--efu-theme)
|
319
321
|
|
320
|
-
|
321
|
-
|
322
|
+
.site-card-tag
|
323
|
+
left: -50px
|
322
324
|
|
323
|
-
|
324
|
-
|
325
|
+
a
|
326
|
+
background 0 0
|
325
327
|
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
328
|
+
img
|
329
|
+
transition .6s
|
330
|
+
width 0
|
331
|
+
height 0
|
332
|
+
opacity 0
|
333
|
+
margin 5px
|
334
|
+
min-width 0
|
335
|
+
min-height 0
|
334
336
|
|
335
|
-
|
336
|
-
|
337
|
+
.flink-item-info
|
338
|
+
min-width calc(100% - 20px)
|
337
339
|
|
338
|
-
|
339
|
-
|
340
|
+
.flink-item-name
|
341
|
+
color var(--efu-card-bg)
|
340
342
|
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
343
|
+
.flink-item-desc
|
344
|
+
color var(--efu-card-bg)
|
345
|
+
overflow hidden
|
346
|
+
width 100%
|
345
347
|
|
346
348
|
@keyframes light_tag
|
347
349
|
0%
|
@@ -349,4 +351,4 @@
|
|
349
351
|
left -150px
|
350
352
|
99%
|
351
353
|
transform skewx(-25deg)
|
352
|
-
left 50px
|
354
|
+
left 50px
|
@@ -135,6 +135,11 @@ div#banners
|
|
135
135
|
font-weight 700
|
136
136
|
box-shadow var(--efu-shadow-blackdeep)
|
137
137
|
|
138
|
+
+maxWidth768()
|
139
|
+
.flink &
|
140
|
+
width 70px
|
141
|
+
height 70px
|
142
|
+
|
138
143
|
&:nth-child(even)
|
139
144
|
margin-top 1rem
|
140
145
|
transform translate(-60px)
|
@@ -269,4 +274,4 @@ div#banners
|
|
269
274
|
font-size 1.5rem
|
270
275
|
|
271
276
|
.banner-button-text
|
272
|
-
display none
|
277
|
+
display none
|
@@ -28,6 +28,7 @@ if hexo-config('says.home_mini')
|
|
28
28
|
margin 0
|
29
29
|
background var(--efu-background)
|
30
30
|
border none
|
31
|
+
padding 0 .2rem
|
31
32
|
i.bber-logo,
|
32
33
|
i.bber-gotobb
|
33
34
|
transition .3s
|
@@ -38,7 +39,7 @@ if hexo-config('says.home_mini')
|
|
38
39
|
color var(--efu-theme)
|
39
40
|
|
40
41
|
i.bber-logo
|
41
|
-
font-size 2rem
|
42
|
+
font-size 1.2rem
|
42
43
|
margin-right 1rem
|
43
44
|
|
44
45
|
i.bber-gotobb
|
@@ -367,4 +368,4 @@ if hexo-config('says.enable')
|
|
367
368
|
.li-style
|
368
369
|
&:hover
|
369
370
|
color var(--efu-theme)
|
370
|
-
transition .3s
|
371
|
+
transition .3s
|
@@ -85,6 +85,7 @@
|
|
85
85
|
color var(--efu-white)
|
86
86
|
cursor pointer
|
87
87
|
border-radius 4px
|
88
|
+
|
88
89
|
.social-share
|
89
90
|
display flex
|
90
91
|
justify-content center
|
@@ -114,6 +115,7 @@
|
|
114
115
|
.icon-qq
|
115
116
|
color #56b6e7
|
116
117
|
border-color #56b6e7
|
118
|
+
|
117
119
|
&:hover
|
118
120
|
background-color #56b6e7
|
119
121
|
|
@@ -151,18 +153,21 @@
|
|
151
153
|
|
152
154
|
&:hover
|
153
155
|
background-color #0077b5
|
156
|
+
|
154
157
|
.icon-whatsapp
|
155
158
|
color #25d366
|
156
159
|
border-color #25d366
|
157
160
|
|
158
161
|
&:hover
|
159
162
|
background-color #25d366
|
163
|
+
|
160
164
|
.icon-link
|
161
165
|
color #425AEF
|
162
166
|
border-color #425AEF
|
163
167
|
|
164
168
|
&:hover
|
165
169
|
background-color #425AEF
|
170
|
+
|
166
171
|
.icon-qrcode
|
167
172
|
position relative
|
168
173
|
color #000
|
@@ -194,7 +199,7 @@
|
|
194
199
|
|
195
200
|
.reward-dec
|
196
201
|
font-size 0.6rem
|
197
|
-
color var(--efu-fontcolor)!important
|
202
|
+
color var(--efu-fontcolor) !important
|
198
203
|
text-align center
|
199
204
|
|
200
205
|
#qrcode
|
@@ -210,4 +215,4 @@
|
|
210
215
|
|
211
216
|
img
|
212
217
|
width 132px
|
213
|
-
height 132px
|
218
|
+
height 132px
|
@@ -34,14 +34,14 @@
|
|
34
34
|
margin-bottom 8px
|
35
35
|
|
36
36
|
.search-close-button
|
37
|
-
|
37
|
+
position absolute
|
38
|
+
top 0.8rem
|
39
|
+
right 1rem
|
40
|
+
color var(--efu-gray)
|
38
41
|
font-size 1.4em
|
39
42
|
line-height 1
|
40
43
|
cursor pointer
|
41
|
-
|
42
|
-
border-radius 50px
|
43
|
-
margin-left 4px
|
44
|
-
transition .3s
|
44
|
+
transition color .2s ease-in-out 0s
|
45
45
|
|
46
46
|
&:hover
|
47
47
|
color var(--efu-main)
|
@@ -172,4 +172,4 @@
|
|
172
172
|
color var(--efu-white)
|
173
173
|
|
174
174
|
.ais-Pagination-item--selected a
|
175
|
-
background var(--efu-main)
|
175
|
+
background var(--efu-main)
|