hexo-theme-solitude 1.4.5 → 1.4.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/.github/FUNDING.yml +1 -1
- package/.github/ISSUE_TEMPLATE/bug_report.yml +2 -2
- package/_config.yml +211 -215
- package/languages/en-US.yml +5 -2
- package/languages/zh-CN.yml +5 -2
- package/languages/zh-TW.yml +5 -2
- package/layout/404.pug +2 -2
- package/layout/includes/head/config.pug +7 -7
- package/layout/includes/head/opengraph.pug +5 -4
- package/layout/includes/head/pwa.pug +2 -3
- package/layout/includes/inject/body.pug +15 -18
- package/layout/includes/inject/head.pug +3 -2
- package/layout/includes/mixins/pagination.pug +1 -1
- package/layout/includes/page/says.pug +44 -7
- package/layout/includes/widgets/home/bbTimeList.pug +13 -7
- package/layout/includes/widgets/page/banner.pug +8 -13
- package/layout/page.pug +0 -2
- package/package.json +4 -4
- package/scripts/event/init.js +18 -17
- package/scripts/event/welcome.js +1 -1
- package/scripts/generator/gallery.js +29 -27
- package/scripts/helper/getArchiveLength.js +5 -9
- package/scripts/helper/related_post.js +28 -39
- package/scripts/helper/stylus.js +5 -9
- package/source/css/_global/animation.styl +307 -0
- package/source/css/_page/index.styl +0 -2
- package/source/css/index.styl +0 -1
- package/source/js/comment/twikoo_commentBarrage.js +76 -75
- package/source/js/covercolor/local.js +11 -10
- package/source/js/music.js +89 -49
- package/.github/ISSUE_TEMPLATE/config.yml +0 -13
- package/.github/ISSUE_TEMPLATE/feature_request.yml +0 -14
- package/layout/includes/page/rss.pug +0 -20
- package/layout/includes/widgets/home/bb/json.pug +0 -23
- package/layout/includes/widgets/home/bb/local.pug +0 -13
- package/layout/includes/widgets/home/bb/memos.pug +0 -27
- package/layout/includes/widgets/page/says/json.pug +0 -82
- package/layout/includes/widgets/page/says/local.pug +0 -44
- package/layout/includes/widgets/page/says/memos.pug +0 -111
- package/source/css/_global/animation.css +0 -813
- package/source/css/_page/rss.styl +0 -82
- /package/.github/workflows/{npm-publish.yml → npm-publish-github-packages.yml} +0 -0
@@ -1,82 +0,0 @@
|
|
1
|
-
.rss-plan-list
|
2
|
-
display flex
|
3
|
-
width 100%
|
4
|
-
flex-direction row
|
5
|
-
flex-wrap wrap
|
6
|
-
margin-left -4px
|
7
|
-
position relative
|
8
|
-
|
9
|
-
.rss-plan-item
|
10
|
-
border-radius 12px
|
11
|
-
display flex
|
12
|
-
flex-direction column
|
13
|
-
justify-content space-between
|
14
|
-
min-width 240px
|
15
|
-
height 240px
|
16
|
-
margin 4px auto
|
17
|
-
overflow hidden
|
18
|
-
text-decoration none
|
19
|
-
width calc(100% / 3 - 8px)
|
20
|
-
filter brightness(1)
|
21
|
-
transition .3s
|
22
|
-
|
23
|
-
+maxWidth1024()
|
24
|
-
width calc(100% / 2 - 8px)
|
25
|
-
|
26
|
-
&first-child
|
27
|
-
width 100%
|
28
|
-
|
29
|
-
+maxWidth768()
|
30
|
-
width 100%
|
31
|
-
|
32
|
-
&.rss-plan-wechat
|
33
|
-
background #27c125
|
34
|
-
overflow hidden
|
35
|
-
|
36
|
-
&.rss-plan-mail
|
37
|
-
background var(--sco-blue)
|
38
|
-
|
39
|
-
&.rss-plan-rss
|
40
|
-
background var(--sco-orange)
|
41
|
-
|
42
|
-
&:hover
|
43
|
-
filter brightness(1.1)
|
44
|
-
|
45
|
-
img.rss-plan-icon
|
46
|
-
bottom -40px
|
47
|
-
right -10px
|
48
|
-
filter blur(0)
|
49
|
-
opacity 1
|
50
|
-
|
51
|
-
.rss-plan-description
|
52
|
-
font-size 16px
|
53
|
-
color var(--sco-white)
|
54
|
-
margin 26px 0 0 30px
|
55
|
-
line-height 20px
|
56
|
-
|
57
|
-
img.rss-plan-icon
|
58
|
-
position absolute
|
59
|
-
bottom -50px
|
60
|
-
right -20px
|
61
|
-
height 140px
|
62
|
-
user-select none
|
63
|
-
-webkit-user-drag none
|
64
|
-
transition all 1.2s cubic-bezier(.39, .575, .565, 1)
|
65
|
-
transform-origin bottom right
|
66
|
-
filter blur(8px)
|
67
|
-
opacity .6
|
68
|
-
|
69
|
-
.rss-plan-info-group
|
70
|
-
position relative
|
71
|
-
margin 0 0 26px 30px
|
72
|
-
color var(--sco-white)
|
73
|
-
|
74
|
-
.rss-plan-title
|
75
|
-
font-size 36px
|
76
|
-
font-weight 700
|
77
|
-
width fit-content
|
78
|
-
line-height 1
|
79
|
-
|
80
|
-
.rss-plan-info
|
81
|
-
width fit-content
|
82
|
-
opacity .6
|
File without changes
|