hexo-theme-solitude 3.0.6 → 3.0.8
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/_config.yml +3 -21
- package/languages/en.yml +0 -0
- package/languages/zh-CN.yml +0 -0
- package/languages/zh-TW.yml +0 -0
- package/layout/includes/console.pug +15 -1
- package/layout/includes/sidebar.pug +3 -6
- package/layout/includes/widgets/aside/aside.pug +2 -2
- package/layout/includes/widgets/aside/asideAllInfo.pug +0 -3
- package/layout/includes/widgets/aside/asideInfoCard.pug +12 -13
- package/layout/includes/widgets/aside/asideNewestPost.pug +1 -1
- package/layout/includes/widgets/aside/asideSwitch.pug +0 -2
- package/layout/includes/widgets/aside/asideWebInfo.pug +6 -18
- package/layout/includes/widgets/page/about/award.pug +1 -1
- package/layout/includes/widgets/page/about/skillsinfo.pug +12 -16
- package/layout/includes/widgets/page/links/banner.pug +13 -23
- package/package.json +6 -6
- package/scripts/event/merge_config.js +0 -7
- package/source/css/_global/index.styl +10 -12
- package/source/css/_layout/article-container.styl +11 -20
- package/source/css/_layout/aside.styl +304 -617
- package/source/css/_layout/console.styl +9 -8
- package/source/css/_layout/sidebar.styl +0 -1
- package/source/css/_page/_about/reward.styl +1 -0
- package/source/js/covercolor/api.js +1 -1
- package/source/js/covercolor/ave.js +1 -1
- package/source/js/covercolor/local.js +1 -1
- package/source/js/main.js +2 -2
- package/layout/includes/widgets/aside/asideArchive.pug +0 -17
- package/layout/includes/widgets/aside/asideFlipCard.pug +0 -5
@@ -1,4 +1,12 @@
|
|
1
1
|
#aside-content
|
2
|
+
display flex
|
3
|
+
flex-direction column
|
4
|
+
gap var(--gap)
|
5
|
+
animation slide-in .6s .3s backwards
|
6
|
+
|
7
|
+
.hide-aside &
|
8
|
+
display none
|
9
|
+
|
2
10
|
+minWidth1200()
|
3
11
|
width 300px
|
4
12
|
if hexo-config('aside.position') == 0
|
@@ -16,170 +24,236 @@
|
|
16
24
|
.card-widget:not(#card-toc)
|
17
25
|
display: none
|
18
26
|
|
19
|
-
+minWidth1300()
|
20
|
-
animation slide-in .6s .3s backwards
|
21
|
-
if hexo-config('aside.position') == 0
|
22
|
-
padding-right .5rem
|
23
|
-
else
|
24
|
-
padding-left .5rem
|
25
|
-
|
26
|
-
.item-headline
|
27
|
-
padding-bottom 0
|
28
|
-
margin-left 8px
|
29
|
-
font-size 1em
|
30
|
-
font-weight 700
|
31
|
-
display flex
|
32
|
-
align-items center
|
33
|
-
|
34
|
-
i
|
35
|
-
font-size 16px
|
36
|
-
max-width 20px
|
37
|
-
|
38
|
-
span
|
39
|
-
margin-left 4px
|
40
|
-
|
41
|
-
+ div, + ul
|
42
|
-
padding 0
|
43
|
-
user-select none
|
44
|
-
|
45
27
|
.card-widget
|
46
|
-
|
28
|
+
border-radius var(--radius)
|
29
|
+
transition all .3s
|
30
|
+
overflow hidden
|
47
31
|
background var(--efu-card-bg)
|
32
|
+
box-shadow var(--efu-shadow-black)
|
48
33
|
border var(--style-border)
|
49
|
-
|
50
|
-
border-radius 12px
|
51
|
-
position relative
|
52
|
-
overflow hidden
|
53
|
-
margin-top .5rem
|
54
|
-
padding .5rem .7rem
|
34
|
+
user-select none
|
55
35
|
|
56
|
-
|
57
|
-
|
36
|
+
.item-headline
|
37
|
+
padding-bottom 0
|
38
|
+
margin-left 8px
|
39
|
+
font-size 1em
|
40
|
+
font-weight 700
|
41
|
+
display flex
|
42
|
+
align-items center
|
43
|
+
gap 5px
|
58
44
|
|
59
|
-
|
60
|
-
|
61
|
-
transition 0.3s
|
62
|
-
margin-top 0
|
45
|
+
i
|
46
|
+
font-size 18px
|
63
47
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
48
|
+
.card-content
|
49
|
+
padding 1rem 1.2rem
|
50
|
+
min-height 320px
|
51
|
+
height 320px
|
52
|
+
position relative
|
53
|
+
user-select none
|
54
|
+
display flex
|
55
|
+
flex-direction column
|
56
|
+
gap var(--gap)
|
57
|
+
|
58
|
+
.card-info
|
59
|
+
position relative
|
60
|
+
&::before
|
61
|
+
background linear-gradient(-25deg, var(--efu-main), var(--efu-main-op-deep))
|
62
|
+
position absolute
|
63
|
+
width 100%
|
64
|
+
height 100%
|
65
|
+
left 0
|
66
|
+
top 0
|
67
|
+
content ''
|
68
|
+
|
69
|
+
&:hover
|
70
|
+
.avatar, .sticker
|
71
|
+
transform scale(0)
|
72
|
+
|
73
|
+
.description
|
74
|
+
opacity 1
|
69
75
|
|
70
|
-
|
71
|
-
text-align center
|
76
|
+
.sayhi
|
72
77
|
width fit-content
|
73
|
-
color var(--efu-white)
|
74
|
-
background var(--efu-white-op)
|
75
|
-
backdrop-filter blur(10px)
|
76
78
|
font-size 12px
|
77
|
-
|
78
|
-
border-radius
|
79
|
+
background var(--efu-white-op)
|
80
|
+
border-radius var(--radius)
|
79
81
|
cursor pointer
|
80
|
-
user-select none
|
81
|
-
transition .3s
|
82
|
-
margin auto
|
83
82
|
min-width 100px
|
83
|
+
padding 2px 10px
|
84
|
+
color var(--efu-white)
|
85
|
+
transition all .3s
|
84
86
|
|
85
|
-
|
86
|
-
|
87
|
-
color var(--efu-white)
|
88
|
-
|
89
|
-
&:hover
|
90
|
-
color var(--efu-white)
|
87
|
+
[data-theme='dark'] &
|
88
|
+
background var(--efu-black)
|
91
89
|
|
92
90
|
&:hover
|
93
|
-
background var(--efu-
|
91
|
+
background var(--efu-white)
|
94
92
|
color var(--efu-main)
|
95
93
|
transform scale(1.1)
|
94
|
+
transition all .3s
|
96
95
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
.
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
.
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
96
|
+
[data-theme='dark'] &
|
97
|
+
background var(--efu-black)
|
98
|
+
color var(--efu-white)
|
99
|
+
|
100
|
+
.avatar
|
101
|
+
width 118px
|
102
|
+
height 118px
|
103
|
+
min-width 118px
|
104
|
+
min-height 118px
|
105
|
+
right calc(50% - 59px)
|
106
|
+
top 90px
|
107
|
+
position absolute
|
108
|
+
transition cubic-bezier(.69,.39,0,1.21) .3s
|
109
|
+
transform-origin bottom
|
110
|
+
|
111
|
+
img
|
112
|
+
border-radius 50%
|
113
|
+
width 100%
|
114
|
+
height 100%
|
115
|
+
border 5px solid var(--efu-card-bg)
|
116
|
+
overflow hidden
|
116
117
|
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
height 40px
|
118
|
+
.sticker
|
119
|
+
position absolute
|
120
|
+
bottom 2px
|
121
|
+
right 2px
|
122
|
+
width 33px
|
123
|
+
height 33px
|
124
|
+
line-height 34px
|
125
|
+
z-index 0
|
126
126
|
display flex
|
127
127
|
align-items center
|
128
128
|
justify-content center
|
129
|
+
transition .3s ease-out .2s
|
130
|
+
background var(--efu-white)
|
131
|
+
border-radius 50%
|
132
|
+
|
133
|
+
.description
|
134
|
+
width 100%
|
135
|
+
opacity 0
|
136
|
+
transition .3s
|
137
|
+
color var(--efu-card-bg)
|
138
|
+
display flex
|
139
|
+
flex-direction column
|
140
|
+
line-height 1.5
|
141
|
+
gap var(--gap)
|
142
|
+
|
143
|
+
.bottom-group
|
144
|
+
position absolute
|
145
|
+
left 0
|
146
|
+
bottom 0
|
147
|
+
width 100%
|
148
|
+
padding 1rem
|
149
|
+
display flex
|
150
|
+
justify-content space-between
|
151
|
+
|
152
|
+
.left
|
153
|
+
flex 1
|
129
154
|
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
155
|
+
.name
|
156
|
+
font-weight 700
|
157
|
+
color var(--efu-card-bg)
|
158
|
+
font-size 20px
|
159
|
+
line-height 1
|
160
|
+
margin-bottom 5px
|
135
161
|
|
136
|
-
|
137
|
-
|
162
|
+
.desc
|
163
|
+
font-size 12px
|
164
|
+
color var(--efu-card-bg)
|
165
|
+
opacity .6
|
166
|
+
line-height 1
|
167
|
+
|
168
|
+
.social-icons
|
169
|
+
flex 1
|
170
|
+
display flex
|
171
|
+
justify-content flex-end
|
172
|
+
gap 5px
|
173
|
+
|
174
|
+
.social-icon
|
175
|
+
color var(--efu-fontcolor)
|
176
|
+
cursor pointer
|
177
|
+
display flex
|
178
|
+
transition all .3s
|
138
179
|
|
139
180
|
&:hover
|
140
|
-
|
181
|
+
transform scale(1.1)
|
182
|
+
i
|
183
|
+
color var(--efu-main)
|
184
|
+
background var(--efu-white)
|
185
|
+
|
186
|
+
i
|
187
|
+
background var(--efu-white-op)
|
141
188
|
color var(--efu-white)
|
189
|
+
font-size 1rem
|
190
|
+
width 40px
|
191
|
+
height 40px
|
192
|
+
display flex
|
193
|
+
align-items center
|
194
|
+
justify-content center
|
195
|
+
transition all .3s ease 0s
|
196
|
+
padding 8px
|
197
|
+
border-radius 32px
|
142
198
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
justify-content: center
|
199
|
+
[data-theme='dark'] &
|
200
|
+
background var(--efu-black)
|
201
|
+
color var(--efu-white)
|
147
202
|
|
148
|
-
|
149
|
-
|
203
|
+
.card-webinfo
|
204
|
+
padding .5rem 1rem
|
205
|
+
|
206
|
+
/ .webinfo-item
|
207
|
+
display flex
|
208
|
+
flex-direction row
|
209
|
+
justify-content space-between
|
210
|
+
user-select none
|
211
|
+
font-size 14px
|
150
212
|
|
151
|
-
|
152
|
-
|
213
|
+
.card-tag-cloud
|
214
|
+
overflow hidden
|
215
|
+
position relative
|
216
|
+
display flex
|
217
|
+
flex-direction row
|
218
|
+
flex-wrap wrap
|
219
|
+
gap 5px
|
153
220
|
|
154
|
-
#aside-content
|
155
|
-
|
156
|
-
|
221
|
+
#aside-content &
|
222
|
+
max-height 360px
|
223
|
+
|
224
|
+
&.all-tags
|
225
|
+
max-height none
|
226
|
+
|
227
|
+
&::after
|
228
|
+
display none
|
229
|
+
|
230
|
+
&::after
|
231
|
+
content ""
|
232
|
+
position absolute
|
233
|
+
bottom 0
|
234
|
+
left 0
|
235
|
+
right 0
|
236
|
+
height 150px
|
237
|
+
background-image linear-gradient(to top, var(--efu-card-bg), transparent)
|
238
|
+
pointer-events none
|
239
|
+
|
240
|
+
a
|
241
|
+
color var(--efu-fontcolor)
|
242
|
+
padding 0 .3rem
|
243
|
+
font-size .8rem
|
244
|
+
border-radius 8px
|
245
|
+
transition .3s
|
157
246
|
|
158
247
|
&:hover
|
159
|
-
|
248
|
+
background var(--efu-lighttext)
|
249
|
+
color var(--efu-card-bg)
|
250
|
+
box-shadow var(--efu-shadow-theme)
|
160
251
|
|
161
|
-
|
162
|
-
|
252
|
+
sup
|
253
|
+
opacity .6
|
254
|
+
margin-left 2px
|
163
255
|
|
164
|
-
|
165
|
-
overflow-y auto
|
166
|
-
max-height calc(100vh - 300px)
|
167
|
-
|
168
|
-
&::before
|
169
|
-
position absolute
|
170
|
-
top .6rem
|
171
|
-
right 1.2rem
|
172
|
-
color #a9a9a9
|
173
|
-
content attr(progress-percentage)
|
174
|
-
font-style italic
|
175
|
-
font-size 1.2rem
|
176
|
-
|
177
|
-
.toc-link.active
|
178
|
-
border-left-color #0061cc
|
179
|
-
background #0079ff
|
180
|
-
color #fff
|
181
|
-
|
182
|
-
#card-toc
|
256
|
+
#card-toc
|
183
257
|
&:hover
|
184
258
|
.toc-content
|
185
259
|
.toc-link:not(.active) span
|
@@ -193,7 +267,7 @@
|
|
193
267
|
+maxWidth1200()
|
194
268
|
position: fixed
|
195
269
|
right: 3rem
|
196
|
-
bottom:
|
270
|
+
bottom: 1rem
|
197
271
|
z-index: 100
|
198
272
|
max-width: 380px
|
199
273
|
max-height: calc(100% - 60px)
|
@@ -201,6 +275,7 @@
|
|
201
275
|
transition: transform .3s
|
202
276
|
transform: scale(0)
|
203
277
|
transform-origin: right bottom
|
278
|
+
padding .5rem
|
204
279
|
|
205
280
|
&.open
|
206
281
|
transform: scale(1)
|
@@ -238,22 +313,17 @@
|
|
238
313
|
|
239
314
|
.toc-item.active .toc-link
|
240
315
|
opacity 1
|
241
|
-
border-radius 8px
|
242
316
|
|
243
317
|
.toc-link
|
244
|
-
transition all .2s
|
318
|
+
transition all .2s
|
245
319
|
line-height 24px
|
246
320
|
padding 8px
|
247
|
-
border-radius 12px
|
248
321
|
color var(--efu-secondtext)
|
249
322
|
min-height 40px
|
250
323
|
display flex
|
251
324
|
align-items center
|
252
|
-
cursor pointer
|
253
325
|
|
254
326
|
&.active
|
255
|
-
border-radius 12px
|
256
|
-
border-left-color var(--efu-hovertext)
|
257
327
|
background-color var(--efu-card-bg)
|
258
328
|
color var(--efu-lighttext)
|
259
329
|
font-weight 700
|
@@ -269,478 +339,73 @@
|
|
269
339
|
filter blur(1px)
|
270
340
|
transition .3s
|
271
341
|
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
if hexo-config('aside.my_card.author.sticker')
|
280
|
-
&:hover
|
281
|
-
.avatar-sticker
|
282
|
-
opacity 0
|
283
|
-
transform scale(0)
|
284
|
-
|
285
|
-
&.card-recent-post
|
286
|
-
padding .4rem .6rem !important
|
287
|
-
|
288
|
-
&.card-info
|
289
|
-
padding 0 !important
|
290
|
-
box-shadow var(--efu-shadow-black)
|
291
|
-
|
292
|
-
> div.card-content
|
293
|
-
padding 1rem 1.2rem
|
294
|
-
min-height 320px
|
295
|
-
position relative
|
296
|
-
|
297
|
-
> .card-widget.card-info
|
298
|
-
&:before
|
299
|
-
background linear-gradient(-25deg, var(--efu-main), var(--efu-main-op-deep))
|
300
|
-
background-size 400%
|
301
|
-
position absolute
|
302
|
-
width 100%
|
303
|
-
height 100%
|
304
|
-
left 0
|
305
|
-
top 0
|
306
|
-
content ''
|
307
|
-
animation gradient 15s ease infinite
|
308
|
-
|
309
|
-
> div.card-content
|
310
|
-
padding 1rem 1.2rem
|
311
|
-
min-height 320px
|
312
|
-
position relative
|
313
|
-
|
314
|
-
> div.card-info-avatarimg
|
315
|
-
overflow hidden
|
316
|
-
background var(--efu-yellow)
|
317
|
-
transition 1.5s
|
318
|
-
min-height 160px
|
319
|
-
position relative
|
320
|
-
box-shadow var(--efu-shadow-yellow)
|
321
|
-
|
322
|
-
&:hover img
|
323
|
-
transform scale(1.03)
|
324
|
-
|
325
|
-
.card-info
|
326
|
-
if hexo-config('aside.my_card.author.sticker')
|
327
|
-
.avatar-sticker
|
328
|
-
position absolute
|
329
|
-
bottom -2px
|
330
|
-
right -2px
|
331
|
-
width 33px
|
332
|
-
height 33px
|
333
|
-
line-height 34px
|
334
|
-
z-index 0
|
335
|
-
display flex
|
336
|
-
align-items center
|
337
|
-
justify-content center
|
338
|
-
transition .3s .2s
|
339
|
-
transform scale(1)
|
340
|
-
background var(--efu-card-bg)
|
341
|
-
border-radius 50%
|
342
|
-
|
343
|
-
img
|
344
|
-
width 26px
|
345
|
-
height 26px
|
346
|
-
|
347
|
-
../ :hover .avatar-sticker
|
348
|
-
opacity 0
|
349
|
-
transform scale(0)
|
350
|
-
|
351
|
-
.author-info__desc
|
352
|
-
font-size 12px
|
353
|
-
color var(--efu-card-bg)
|
354
|
-
opacity .6
|
355
|
-
line-height 1
|
356
|
-
|
357
|
-
.card-info-avatar.is-center
|
358
|
-
flex-direction column
|
359
|
-
display flex
|
360
|
-
align-items flex-start
|
361
|
-
|
362
|
-
.avatar-img-group
|
363
|
-
width 118px
|
364
|
-
height 118px
|
365
|
-
right calc(50% - 59px)
|
366
|
-
top 90px
|
367
|
-
border-radius 500px
|
368
|
-
position absolute
|
369
|
-
transition cubic-bezier(.69, .39, 0, 1.21) .3s
|
370
|
-
transform-origin bottom
|
371
|
-
border 5px solid var(--efu-card-bg)
|
372
|
-
|
373
|
-
../ :hover .avatar-img-group
|
374
|
-
opacity 0
|
375
|
-
transform scale(0)
|
376
|
-
|
377
|
-
.author-info__name
|
378
|
-
text-align left
|
379
|
-
font-weight 700
|
380
|
-
color var(--efu-card-bg)
|
381
|
-
font-size 20px
|
382
|
-
line-height 1
|
383
|
-
margin-bottom 5px
|
384
|
-
|
385
|
-
.author-info__top-group
|
386
|
-
display flex
|
387
|
-
height 28px
|
388
|
-
width 100%
|
389
|
-
|
390
|
-
.author-info__description_group
|
391
|
-
position absolute
|
392
|
-
top 50px
|
393
|
-
width 100%
|
394
|
-
left 0
|
395
|
-
padding 1.2rem
|
396
|
-
opacity 0
|
397
|
-
transition .3s
|
398
|
-
|
399
|
-
../ :hover .author-info__description_group
|
400
|
-
opacity 1
|
401
|
-
|
402
|
-
.author-info__description
|
403
|
-
line-height 1.38
|
404
|
-
margin .3rem 0
|
405
|
-
text-align left
|
406
|
-
color var(--efu-card-bg)
|
407
|
-
|
408
|
-
b
|
409
|
-
color var(--efu-card-bg)
|
410
|
-
|
411
|
-
.author-info__bottom-group
|
412
|
-
display flex
|
413
|
-
justify-content space-between
|
414
|
-
position absolute
|
415
|
-
padding 1.2rem
|
416
|
-
width 100%
|
417
|
-
left 0
|
418
|
-
bottom 0
|
419
|
-
align-items center
|
420
|
-
|
421
|
-
a.author-info__bottom-group-left:hover
|
422
|
-
opacity .8
|
423
|
-
|
424
|
-
.card-info-data
|
425
|
-
display table
|
426
|
-
margin .7rem 0 .2rem
|
427
|
-
width 100%
|
428
|
-
table-layout fixed
|
429
|
-
|
430
|
-
> div:nth-child(0) > a > div.headline
|
431
|
-
font-weight 700
|
432
|
-
|
433
|
-
> .card-info-data-item
|
434
|
-
display table-cell
|
435
|
-
transition .3s
|
436
|
-
|
437
|
-
a
|
438
|
-
.headline
|
439
|
-
color var(--efu-fontcolor)
|
440
|
-
font-size 1em
|
441
|
-
|
442
|
-
.length-num
|
443
|
-
margin-top -.3rem
|
444
|
-
color var(--efu-fontcolor)
|
445
|
-
font-size 1.4em
|
446
|
-
|
447
|
-
&:hover
|
448
|
-
background #000
|
449
|
-
border-radius 5px
|
450
|
-
|
451
|
-
img.avatar-img
|
452
|
-
width 108px
|
453
|
-
height 108px
|
454
|
-
object-fit cover
|
455
|
-
right 0
|
456
|
-
top 0
|
457
|
-
border-radius 500px
|
458
|
-
position absolute
|
459
|
-
opacity 1
|
460
|
-
transition .3s
|
461
|
-
|
462
|
-
[data-theme=dark] #aside-content
|
463
|
-
> .card-widget.card-info
|
464
|
-
border var(--style-border-always)
|
465
|
-
|
466
|
-
#aside-content
|
467
|
-
.card-allinfo
|
468
|
-
|
469
|
-
hr
|
470
|
-
display flex
|
471
|
-
position relative
|
472
|
-
margin .5rem 0
|
473
|
-
border 1px dashed var(--efu-theme-op)
|
474
|
-
|
475
|
-
.item-headline
|
476
|
-
display none
|
477
|
-
|
478
|
-
.card-tag-cloud
|
479
|
-
max-height $tag_cloud_limit * .4rem
|
480
|
-
overflow hidden
|
481
|
-
position relative
|
482
|
-
|
483
|
-
&.all-tags
|
484
|
-
max-height none
|
485
|
-
|
486
|
-
&:after
|
487
|
-
display none
|
488
|
-
|
489
|
-
&:after
|
490
|
-
content ""
|
491
|
-
position absolute
|
492
|
-
bottom 0
|
493
|
-
left 0
|
494
|
-
right 0
|
495
|
-
height 150px
|
496
|
-
background-image linear-gradient(to top, var(--efu-card-bg), transparent)
|
497
|
-
pointer-events none
|
498
|
-
|
499
|
-
a
|
500
|
-
display inline-block
|
501
|
-
padding 0 0.3rem
|
502
|
-
font-size .8rem
|
503
|
-
border-radius 8px
|
504
|
-
|
505
|
-
sup
|
506
|
-
opacity .6
|
507
|
-
margin-left 2px
|
508
|
-
|
509
|
-
&:hover
|
510
|
-
background var(--efu-theme)
|
511
|
-
color var(--efu-white) !important
|
512
|
-
box-shadow var(--efu-shadow-theme)
|
513
|
-
cursor pointer
|
514
|
-
border-radius 5px
|
515
|
-
|
516
|
-
&.tags-cloud-more
|
517
|
-
width 100%
|
518
|
-
text-align center
|
519
|
-
border-radius 8px !important
|
520
|
-
border var(--style-border)
|
521
|
-
margin-top 8px
|
522
|
-
font-size 16px !important
|
342
|
+
.sticky_layout
|
343
|
+
position sticky
|
344
|
+
top calc(60px + var(--gap))
|
345
|
+
transition top 0s
|
346
|
+
display flex
|
347
|
+
flex-direction column
|
348
|
+
gap var(--gap)
|
523
349
|
|
524
|
-
|
350
|
+
.card-recent-post
|
351
|
+
padding .5rem
|
352
|
+
.aside-list
|
353
|
+
.aside-list-item
|
354
|
+
padding 2px 6px 8px 6px
|
355
|
+
border-radius 12px
|
525
356
|
transition .3s
|
526
|
-
|
527
|
-
text-align center
|
528
|
-
background var(--efu-secondbg)
|
529
|
-
color var(--efu-fontcolor)
|
530
|
-
border-radius 8px
|
531
|
-
display flex
|
532
|
-
justify-content center
|
533
|
-
font-size 14px
|
534
|
-
padding 4px 0
|
535
|
-
border var(--style-border-always)
|
536
|
-
box-shadow var(--heo-shadow-border)
|
357
|
+
margin 4px 0
|
537
358
|
cursor pointer
|
359
|
+
display flex
|
360
|
+
align-items flex-start
|
538
361
|
|
539
362
|
&:hover
|
540
363
|
background var(--efu-main)
|
364
|
+
color var(--efu-white)
|
365
|
+
box-shadow var(--efu-shadow-main)
|
541
366
|
|
542
|
-
|
543
|
-
|
544
|
-
margin 0
|
545
|
-
padding 0
|
546
|
-
list-style none
|
547
|
-
display: flex
|
548
|
-
flex-direction: row
|
549
|
-
justify-content: space-between
|
550
|
-
flex-wrap: wrap
|
551
|
-
|
552
|
-
> .card-archive-list-item
|
553
|
-
width 100%
|
554
|
-
flex 0 0 48%
|
555
|
-
|
556
|
-
a
|
557
|
-
display inline-block
|
558
|
-
padding .15rem .5rem
|
559
|
-
width 100%
|
560
|
-
color var(--efu-fontcolor)
|
561
|
-
transition all .4s ease 0s
|
562
|
-
border-radius: 8px
|
563
|
-
margin: 4px 0
|
564
|
-
flex-direction: column
|
565
|
-
align-content: space-between
|
566
|
-
border: var(--style-border)
|
567
|
-
|
568
|
-
&:hover
|
569
|
-
background-color var(--efu-theme)
|
570
|
-
color var(--efu-card-bg)
|
571
|
-
border-radius 5px
|
572
|
-
box-shadow: var(--efu-shadow-theme)
|
573
|
-
padding: .15rem .5rem
|
574
|
-
border: var(--style-border-hover)
|
575
|
-
cursor pointer
|
576
|
-
|
577
|
-
span
|
578
|
-
display inline-block
|
579
|
-
vertical-align bottom
|
580
|
-
|
581
|
-
&:last-child
|
582
|
-
text-align right
|
583
|
-
margin-left: 4px
|
584
|
-
|
585
|
-
.card-archive-list-count-group
|
586
|
-
display flex
|
587
|
-
flex-direction row
|
588
|
-
|
589
|
-
span.card-archive-list-count
|
590
|
-
ext-align left
|
591
|
-
font-size 1.1rem
|
592
|
-
line-height 0.9
|
593
|
-
font-weight bold
|
594
|
-
|
595
|
-
.card-archive-list-count-unit
|
596
|
-
width auto
|
597
|
-
text-align left
|
598
|
-
font-size 14px
|
599
|
-
font-weight 700
|
600
|
-
|
601
|
-
.card-archive-list-date
|
602
|
-
font-size 14px
|
603
|
-
opacity .6
|
604
|
-
|
605
|
-
|
606
|
-
#aside-content .card-tag-cloud a.highlight
|
607
|
-
color var(--efu-lighttext)
|
608
|
-
font-weight 500
|
367
|
+
.content a
|
368
|
+
color var(--efu-white)
|
609
369
|
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
.aside-list-item
|
614
|
-
padding 2px 6px 8px 6px
|
615
|
-
border-radius 12px
|
616
|
-
transition .3s
|
617
|
-
margin 4px 0
|
618
|
-
cursor pointer
|
370
|
+
.thumbnail
|
371
|
+
border-radius 8px
|
372
|
+
border var(--style-border)
|
619
373
|
display flex
|
620
|
-
align-items
|
374
|
+
align-items center
|
375
|
+
overflow hidden
|
376
|
+
width 2.1em
|
377
|
+
height 2.1em
|
378
|
+
margin-top 4px
|
621
379
|
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
transition .
|
626
|
-
|
380
|
+
img
|
381
|
+
width 140%
|
382
|
+
height 140%
|
383
|
+
transition all .6s ease
|
384
|
+
object-fit cover
|
627
385
|
|
628
|
-
|
629
|
-
|
386
|
+
.content
|
387
|
+
flex 1
|
388
|
+
padding-left 10px
|
389
|
+
word-break break-all
|
390
|
+
display flex
|
391
|
+
flex-direction column
|
630
392
|
|
631
|
-
.
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
393
|
+
.title
|
394
|
+
display -webkit-box
|
395
|
+
-webkit-box-orient vertical
|
396
|
+
font-weight 700
|
397
|
+
margin 4px 0
|
398
|
+
font-size 95%
|
399
|
+
line-height 1.3
|
400
|
+
-webkit-line-clamp 2
|
637
401
|
overflow hidden
|
638
|
-
|
639
|
-
height 2.1em
|
640
|
-
margin-top 4px
|
641
|
-
|
642
|
-
img
|
643
|
-
width 140%
|
644
|
-
height 140%
|
645
|
-
transition all .6s ease 0s
|
646
|
-
object-fit cover
|
647
|
-
|
648
|
-
.content
|
649
|
-
-webkit-box-flex 1
|
650
|
-
flex 1 1 0
|
651
|
-
padding-left 10px
|
652
|
-
word-break break-all
|
653
|
-
display flex
|
654
|
-
flex-direction column
|
655
|
-
|
656
|
-
.title
|
657
|
-
display -webkit-box
|
658
|
-
-webkit-box-orient vertical
|
659
|
-
font-weight 700
|
660
|
-
margin 4px 0
|
661
|
-
font-size 95%
|
662
|
-
line-height 1.3
|
663
|
-
-webkit-line-clamp 2
|
664
|
-
overflow hidden
|
665
|
-
text-overflow ellipsis
|
666
|
-
|
667
|
-
.article-recent_post_categories
|
668
|
-
font-size 12px
|
669
|
-
font-weight 700
|
670
|
-
opacity .6
|
671
|
-
line-height 1
|
672
|
-
|
673
|
-
|
674
|
-
favicon = hexo-config('aside.flip.favicon')
|
675
|
-
face = hexo-config('aside.flip.face')
|
676
|
-
faceback = hexo-config('aside.flip.backface')
|
677
|
-
backcolor = convert(hexo-config('aside.flip.backcolor'))
|
678
|
-
|
679
|
-
#aside-content
|
680
|
-
.card-widget.card-platform
|
681
|
-
background backcolor
|
682
|
-
display flex
|
683
|
-
justify-content center
|
684
|
-
align-content center
|
685
|
-
padding 0
|
686
|
-
cursor pointer
|
687
|
-
border none
|
688
|
-
height 110px
|
689
|
-
border var(--style-border)
|
690
|
-
transition 0.6s
|
691
|
-
|
692
|
-
&:before
|
693
|
-
position absolute
|
694
|
-
width 100%
|
695
|
-
height 100%
|
696
|
-
left 0
|
697
|
-
top 0
|
698
|
-
background url(favicon) center center no-repeat
|
699
|
-
content ''
|
700
|
-
background-size cover
|
701
|
-
transition .2s cubic-bezier(.45, .04, .43, 1.21)
|
702
|
-
|
703
|
-
&:hover:before
|
704
|
-
top 100%
|
705
|
-
opacity 0
|
706
|
-
transition .3s ease-out
|
707
|
-
|
708
|
-
&:hover
|
709
|
-
#flip-content
|
710
|
-
transform rotateY(180deg)
|
711
|
-
|
712
|
-
#flip-wrapper
|
713
|
-
perspective 1000
|
714
|
-
position relative
|
715
|
-
width 235px
|
716
|
-
height 110px
|
717
|
-
z-index 1
|
718
|
-
|
719
|
-
#flip-wrapper #flip-content
|
720
|
-
width 100%
|
721
|
-
height 100%
|
722
|
-
transform-style preserve-3d
|
723
|
-
transition cubic-bezier(0, 0, 0, 1.29) 0.3s
|
402
|
+
text-overflow ellipsis
|
724
403
|
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
backface-visibility hidden
|
731
|
-
background url(face) center center no-repeat
|
732
|
-
background-size 100%
|
733
|
-
|
734
|
-
#flip-wrapper #flip-content .face.back
|
735
|
-
display block
|
736
|
-
-webkit-transform rotateY(180deg)
|
737
|
-
transform rotateY(180deg)
|
738
|
-
box-sizing border-box
|
739
|
-
background url(faceback) center center no-repeat
|
740
|
-
background-size 100%
|
741
|
-
|
742
|
-
.card-widget.card-adsense
|
743
|
-
padding 0
|
404
|
+
.categories
|
405
|
+
font-size 12px
|
406
|
+
font-weight 700
|
407
|
+
opacity .6
|
408
|
+
line-height 1
|
744
409
|
|
745
410
|
if hexo-config('comment.newest_comment.enable')
|
746
411
|
.card-recent-comment
|
@@ -751,6 +416,15 @@ if hexo-config('comment.newest_comment.enable')
|
|
751
416
|
&:hover
|
752
417
|
color var(--efu-lighttext)
|
753
418
|
transition .3s
|
419
|
+
.thumbnail
|
420
|
+
border-radius 8px
|
421
|
+
border var(--style-border)
|
422
|
+
display flex
|
423
|
+
align-items center
|
424
|
+
overflow hidden
|
425
|
+
width 2.1em
|
426
|
+
height 2.1em
|
427
|
+
margin-top 4px
|
754
428
|
|
755
429
|
.aside-list-item
|
756
430
|
padding: .5rem
|
@@ -769,14 +443,25 @@ if hexo-config('comment.newest_comment.enable')
|
|
769
443
|
height: 60px
|
770
444
|
margin-right: 8px
|
771
445
|
border-radius: 12px
|
446
|
+
img
|
447
|
+
width 140%
|
448
|
+
height 140%
|
449
|
+
transition all .6s ease
|
450
|
+
object-fit cover
|
772
451
|
|
773
452
|
.content
|
774
453
|
max-width: calc(100% - 68px)
|
775
454
|
line-height 1.5
|
455
|
+
flex 1
|
456
|
+
padding-left 10px
|
457
|
+
word-break break-all
|
458
|
+
display flex
|
459
|
+
flex-direction column
|
776
460
|
|
777
461
|
.comment
|
778
462
|
overflow hidden
|
779
463
|
text-overflow ellipsis
|
464
|
+
.title
|
780
465
|
display -webkit-box
|
781
466
|
font-size 14px
|
782
467
|
-webkit-line-clamp 2
|
@@ -787,32 +472,34 @@ if hexo-config('comment.newest_comment.enable')
|
|
787
472
|
&:hover
|
788
473
|
color var(--efu-lighttext)
|
789
474
|
transition .3s
|
475
|
+
font-weight 700
|
476
|
+
margin 4px 0
|
477
|
+
font-size 95%
|
478
|
+
line-height 1.3
|
479
|
+
-webkit-line-clamp 2
|
480
|
+
overflow hidden
|
481
|
+
text-overflow ellipsis
|
790
482
|
|
791
483
|
.datetime
|
484
|
+
.categories
|
792
485
|
font-size 12px
|
793
486
|
color var(--efu-secondtext)
|
794
487
|
margin-top auto
|
795
488
|
|
796
|
-
|
489
|
+
#more-tags-btn
|
490
|
+
transition .3s
|
491
|
+
width 100%
|
492
|
+
text-align center
|
493
|
+
background var(--efu-secondbg)
|
494
|
+
color var(--efu-fontcolor)
|
495
|
+
border-radius 8px
|
797
496
|
display flex
|
798
|
-
justify-content
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
padding-right 1rem
|
808
|
-
|
809
|
-
.webinfo
|
810
|
-
.webinfo-item-title
|
811
|
-
display flex
|
812
|
-
|
813
|
-
i
|
814
|
-
line-height: 2
|
815
|
-
margin-right: 6px
|
816
|
-
width: 16px
|
817
|
-
text-align: center
|
818
|
-
font-size: 16px
|
497
|
+
justify-content center
|
498
|
+
font-size 14px
|
499
|
+
padding 4px 0
|
500
|
+
border var(--style-border-always)
|
501
|
+
box-shadow var(--heo-shadow-border)
|
502
|
+
cursor pointer
|
503
|
+
|
504
|
+
&:hover
|
505
|
+
background var(--efu-main)
|