hexo-theme-solitude 3.0.7 → 3.0.9
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/.github/ISSUE_TEMPLATE/bug_report.yml +1 -1
- package/languages/en.yml +0 -0
- package/languages/zh-CN.yml +0 -0
- package/languages/zh-TW.yml +0 -0
- package/layout/includes/widgets/page/about/skillsinfo.pug +12 -16
- package/layout/includes/widgets/post/postInfo.pug +2 -1
- package/layout/includes/widgets/post/postMeta.pug +0 -1
- package/package.json +6 -6
- package/source/css/_global/index.styl +1 -0
- package/source/css/_layout/aside.styl +38 -2
- package/source/css/_layout/header.styl +9 -81
- package/source/css/_post/meta.styl +18 -48
- package/source/css/_post/postAI.styl +1 -1
- package/source/css/third_party/tianli_talk.styl +17 -17
- package/layout/includes/widgets/post/wave.pug +0 -9
package/languages/en.yml
CHANGED
File without changes
|
package/languages/zh-CN.yml
CHANGED
File without changes
|
package/languages/zh-TW.yml
CHANGED
File without changes
|
@@ -10,23 +10,19 @@ if skills || careers
|
|
10
10
|
span.author-content-item-title= skills.subtitle
|
11
11
|
.skills-style-group
|
12
12
|
.tags-group-all
|
13
|
-
|
14
|
-
- let length = times * skills.tags.length
|
15
|
-
- let duration = length * 1200 - 900
|
16
|
-
.tags-group-wrapper(style=`animation-duration: ${duration}ms`)
|
13
|
+
.tags-group-wrapper
|
17
14
|
- var pair = []
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
- pair = []
|
15
|
+
each tag, index in skills.tags
|
16
|
+
- pair.push(tag)
|
17
|
+
if pair.length === 2
|
18
|
+
.tags-group-icon-pair
|
19
|
+
each item in pair
|
20
|
+
.tags-group-icon(style=`background:${item.color}`)
|
21
|
+
if item.img
|
22
|
+
img(src=item.img, title=item.title)
|
23
|
+
else if item.icon
|
24
|
+
i(class=item.icon, title=item.title, style=`color: ${item.icon_color ? item.icon_color : ''}`)
|
25
|
+
- pair = []
|
30
26
|
.skills-list
|
31
27
|
each tag in skills.tags
|
32
28
|
.skill-info
|
package/package.json
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "hexo-theme-solitude",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.9",
|
4
4
|
"description": "A beautiful, powerful, and efficient Hexo theme developed by everfu.",
|
5
5
|
"main": "package.json",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
+
},
|
6
9
|
"keywords": [
|
7
10
|
"hexo",
|
8
11
|
"theme",
|
@@ -26,8 +29,5 @@
|
|
26
29
|
},
|
27
30
|
"homepage": "https://solitude.js.org",
|
28
31
|
"author": "Hexo-Theme-Solitude<o@efu.me>",
|
29
|
-
"license": "Apache-2.0"
|
30
|
-
|
31
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
32
|
-
}
|
33
|
-
}
|
32
|
+
"license": "Apache-2.0"
|
33
|
+
}
|
@@ -211,7 +211,6 @@
|
|
211
211
|
font-size 14px
|
212
212
|
|
213
213
|
.card-tag-cloud
|
214
|
-
max-height 360px
|
215
214
|
overflow hidden
|
216
215
|
position relative
|
217
216
|
display flex
|
@@ -219,6 +218,25 @@
|
|
219
218
|
flex-wrap wrap
|
220
219
|
gap 5px
|
221
220
|
|
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
|
+
|
222
240
|
a
|
223
241
|
color var(--efu-fontcolor)
|
224
242
|
padding 0 .3rem
|
@@ -466,4 +484,22 @@ if hexo-config('comment.newest_comment.enable')
|
|
466
484
|
.categories
|
467
485
|
font-size 12px
|
468
486
|
color var(--efu-secondtext)
|
469
|
-
margin-top auto
|
487
|
+
margin-top auto
|
488
|
+
|
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
|
496
|
+
display flex
|
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)
|
@@ -45,57 +45,6 @@
|
|
45
45
|
+minWidth768()
|
46
46
|
font-size 2.85em
|
47
47
|
|
48
|
-
#site-subtitle
|
49
|
-
color var(--light-grey)
|
50
|
-
font-size 1.15em
|
51
|
-
|
52
|
-
+minWidth768()
|
53
|
-
font-size 1.72em
|
54
|
-
|
55
|
-
#site_social_icons
|
56
|
-
display none
|
57
|
-
margin 0 auto
|
58
|
-
width 15rem
|
59
|
-
text-align center
|
60
|
-
|
61
|
-
+maxWidth768()
|
62
|
-
display block
|
63
|
-
|
64
|
-
.social-icon
|
65
|
-
margin 0 .5rem
|
66
|
-
color var(--light-grey)
|
67
|
-
font-size 1.43em
|
68
|
-
cursor pointer
|
69
|
-
|
70
|
-
#scroll-down
|
71
|
-
position absolute
|
72
|
-
bottom 0
|
73
|
-
width 100%
|
74
|
-
cursor pointer
|
75
|
-
display none
|
76
|
-
|
77
|
-
.scroll-down-effects
|
78
|
-
animation: 1.5s ease 0s infinite normal none running scroll-down-effect
|
79
|
-
position relative
|
80
|
-
width 100%
|
81
|
-
color var(--light-grey)
|
82
|
-
font-size 30px
|
83
|
-
|
84
|
-
&.not-home-page
|
85
|
-
height 20rem
|
86
|
-
|
87
|
-
+maxWidth768()
|
88
|
-
height 14rem
|
89
|
-
|
90
|
-
#page-site-info
|
91
|
-
position absolute
|
92
|
-
top 10rem
|
93
|
-
padding 0 .5rem
|
94
|
-
width 100%
|
95
|
-
|
96
|
-
+maxWidth768()
|
97
|
-
top 7rem
|
98
|
-
|
99
48
|
#nav
|
100
49
|
z-index 100
|
101
50
|
box-shadow none
|
@@ -338,15 +287,6 @@
|
|
338
287
|
overflow hidden
|
339
288
|
transition .3s
|
340
289
|
|
341
|
-
#page-header #scroll-down .scroll-down-effects,
|
342
|
-
#page-header #site-subtitle, #page-header #site-title
|
343
|
-
text-align center
|
344
|
-
line-height 1.5
|
345
|
-
|
346
|
-
#page-header.nav-fixed > #nav,
|
347
|
-
#page-header.not-top-img > #nav
|
348
|
-
box-shadow none
|
349
|
-
|
350
290
|
#nav
|
351
291
|
padding 0
|
352
292
|
position absolute
|
@@ -672,15 +612,15 @@
|
|
672
612
|
transition .3s
|
673
613
|
white-space nowrap
|
674
614
|
|
675
|
-
|
676
|
-
.
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
615
|
+
#nav-totop #percent
|
616
|
+
.nav-fixed &, .page &
|
617
|
+
font-size 12px
|
618
|
+
border-radius 35px
|
619
|
+
display flex
|
620
|
+
justify-content center
|
621
|
+
align-items center
|
622
|
+
transition .3s
|
623
|
+
white-space nowrap
|
684
624
|
|
685
625
|
if hexo-config('nav.group')
|
686
626
|
.back-home-button
|
@@ -906,9 +846,6 @@ if hexo-config('nav.group')
|
|
906
846
|
+maxWidth768()
|
907
847
|
color var(--efu-fontcolor)
|
908
848
|
|
909
|
-
#weblogo
|
910
|
-
align-self center
|
911
|
-
|
912
849
|
#menus
|
913
850
|
& > div
|
914
851
|
&.menus_items
|
@@ -925,14 +862,6 @@ if hexo-config('nav.group')
|
|
925
862
|
if $language == 'en-US'
|
926
863
|
letter-spacing normal
|
927
864
|
|
928
|
-
#travellings_button
|
929
|
-
display inline
|
930
|
-
padding 0 .4rem
|
931
|
-
transition .3s
|
932
|
-
|
933
|
-
+maxWidth1200()
|
934
|
-
display none
|
935
|
-
|
936
865
|
#page-name
|
937
866
|
+minWidth900()
|
938
867
|
align-items center
|
@@ -946,7 +875,6 @@ if hexo-config('nav.group')
|
|
946
875
|
margin auto
|
947
876
|
justify-content center
|
948
877
|
animation-timing-function ease-out
|
949
|
-
-webkit-animation-timing-function ease-out
|
950
878
|
|
951
879
|
#page-name-mask
|
952
880
|
+minWidth900()
|
@@ -36,46 +36,6 @@
|
|
36
36
|
height 15rem
|
37
37
|
|
38
38
|
.post-bg
|
39
|
-
.main-hero-waves-area
|
40
|
-
width 100%
|
41
|
-
position absolute
|
42
|
-
left 0
|
43
|
-
bottom -11px
|
44
|
-
|
45
|
-
.waves-area .waves-svg
|
46
|
-
width 100%
|
47
|
-
height 60px
|
48
|
-
|
49
|
-
.parallax > use
|
50
|
-
animation move-forever 30s cubic-bezier(.55, .5, .45, .5) infinite
|
51
|
-
|
52
|
-
.parallax > use:nth-child(1)
|
53
|
-
animation-delay -2s
|
54
|
-
animation-duration 7s
|
55
|
-
fill var(--efu-background)
|
56
|
-
opacity .5
|
57
|
-
|
58
|
-
.parallax > use:nth-child(2)
|
59
|
-
animation-delay -3s
|
60
|
-
animation-duration 10s
|
61
|
-
fill var(--efu-background)
|
62
|
-
opacity .6
|
63
|
-
|
64
|
-
.parallax > use:nth-child(3)
|
65
|
-
animation-delay -4s
|
66
|
-
animation-duration 13s
|
67
|
-
fill var(--efu-background)
|
68
|
-
opacity .7
|
69
|
-
|
70
|
-
.parallax > use:nth-child(4)
|
71
|
-
animation-delay -5s
|
72
|
-
animation-duration 20s
|
73
|
-
fill var(--efu-background)
|
74
|
-
|
75
|
-
+maxWidth768()
|
76
|
-
.main-hero-waves-area
|
77
|
-
display none
|
78
|
-
|
79
39
|
#post-cover
|
80
40
|
width 100%
|
81
41
|
height 100%
|
@@ -374,11 +334,21 @@
|
|
374
334
|
&:hover
|
375
335
|
color var(--efu-main)
|
376
336
|
|
377
|
-
#post
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
337
|
+
#post
|
338
|
+
#post-info
|
339
|
+
height auto
|
340
|
+
position unset
|
341
|
+
padding 1rem 2rem
|
342
|
+
background var(--efu-hovertext)
|
343
|
+
border-radius 12px 12px 0 0
|
344
|
+
+minWidth768()
|
345
|
+
min-height 250px
|
346
|
+
|
347
|
+
#post-info-bottom
|
348
|
+
display flex
|
349
|
+
position absolute
|
350
|
+
width 100%
|
351
|
+
bottom 0
|
352
|
+
border-radius 1rem 1rem 0 0
|
353
|
+
padding .5rem 0
|
354
|
+
background var(--efu-background)
|
@@ -17,13 +17,24 @@
|
|
17
17
|
width 42px
|
18
18
|
border var(--style-border-always)
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
20
|
+
&:hover
|
21
|
+
background var(--efu-lighttext)
|
22
|
+
color var(--efu-card-bg)
|
23
|
+
width 159px
|
24
|
+
border-color var(--efu-lighttext)
|
25
25
|
|
26
|
-
|
26
|
+
span.efuTalkTitle
|
27
|
+
color var(--efu-card-bg)
|
28
|
+
opacity 1
|
29
|
+
|
30
|
+
i.solitude.efuTalkIcon
|
31
|
+
width 18px
|
32
|
+
height 18px
|
33
|
+
font-size 18px
|
34
|
+
margin-left 3px
|
35
|
+
line-height 1
|
36
|
+
|
37
|
+
span.efuTalkTitle
|
27
38
|
display flex
|
28
39
|
font-size 14px
|
29
40
|
padding 0 12px
|
@@ -54,20 +65,9 @@
|
|
54
65
|
max-height 100% !important
|
55
66
|
border-radius 0 !important
|
56
67
|
|
57
|
-
#efuTalk.on span.efuTalkTitle, #efuTalk:hover span.efuTalkTitle
|
58
|
-
color var(--efu-card-bg)
|
59
|
-
opacity 1
|
60
|
-
|
61
68
|
#postChat_button
|
62
69
|
display none !important
|
63
70
|
|
64
|
-
#efuTalk i.solitude.efuTalkIcon
|
65
|
-
width 18px
|
66
|
-
height 18px
|
67
|
-
font-size 18px
|
68
|
-
margin-left 3px
|
69
|
-
line-height 1
|
70
|
-
|
71
71
|
@keyframes to_show_fromLeftBottom
|
72
72
|
from
|
73
73
|
opacity 0
|
@@ -1,9 +0,0 @@
|
|
1
|
-
section.main-hero-waves-area.waves-area
|
2
|
-
svg.waves-svg(xmlns="http://www.w3.org/2000/svg", xlink="http://www.w3.org/1999/xlink", viewBox="0 24 150 28", preserveAspectRatio="none", shape-rendering="auto")
|
3
|
-
defs
|
4
|
-
path#gentle-wave(d="M -160 44 c 30 0 58 -18 88 -18 s 58 18 88 18 s 58 -18 88 -18 s 58 18 88 18 v 44 h -352 Z")
|
5
|
-
g.parallax
|
6
|
-
use(href="#gentle-wave", x="48", y="0")
|
7
|
-
use(href="#gentle-wave", x="48", y="3")
|
8
|
-
use(href="#gentle-wave", x="48", y="5")
|
9
|
-
use(href="#gentle-wave", x="48", y="7")
|