hexo-theme-solitude 1.5.4 → 1.5.6
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 +7 -6
- package/.github/ISSUE_TEMPLATE/feature_request.yml +1 -1
- package/README.md +23 -23
- package/{README_EN.md → README_zh-cn.md} +23 -23
- package/README_zh-tw.md +2 -2
- package/_config.yml +0 -12
- package/languages/en.yml +9 -6
- package/languages/zh-CN.yml +9 -6
- package/languages/zh-TW.yml +9 -6
- package/layout/includes/head/config.pug +9 -6
- package/layout/includes/inject/body.pug +7 -6
- package/layout/includes/inject/head.pug +1 -1
- package/layout/includes/page/music.pug +2 -12
- package/layout/includes/widgets/page/about/personalities.pug +1 -1
- package/layout/includes/widgets/post/copyright.pug +0 -2
- package/layout/page.pug +0 -4
- package/package.json +1 -1
- package/plugins.yml +0 -4
- package/scripts/event/cdn.js +6 -1
- package/scripts/tags/button.js +1 -1
- package/scripts/tags/bvideo.js +2 -2
- package/scripts/tags/gallery.js +54 -0
- package/scripts/tags/image.js +1 -1
- package/scripts/tags/link.js +6 -3
- package/scripts/tags/note.js +6 -0
- package/source/css/_global/function.styl +4 -0
- package/source/css/_page/_gallery/index.styl +0 -66
- package/source/css/_page/_home/home-top.styl +1 -1
- package/source/css/_page/music.styl +9 -9
- package/source/css/_page/share.styl +2 -2
- package/source/css/_widgets/_post/content.styl +7 -0
- package/source/css/_widgets/_post/copyright.styl +0 -18
- package/source/css/_widgets/_tags/button.styl +29 -49
- package/source/css/_widgets/_tags/checkbox.styl +176 -57
- package/source/css/_widgets/_tags/fold.styl +65 -79
- package/source/css/_widgets/_tags/gallery.styl +67 -0
- package/source/css/_widgets/_tags/index.styl +32 -30
- package/source/css/_widgets/_tags/label.styl +4 -3
- package/source/css/_widgets/_tags/link.styl +48 -77
- package/source/css/_widgets/_tags/media.styl +57 -0
- package/source/css/_widgets/_tags/mermaid.styl +1 -2
- package/source/css/_widgets/_tags/note.styl +1 -7
- package/source/css/_widgets/_tags/span.styl +24 -51
- package/source/css/_widgets/_tags/tabs.styl +3 -1
- package/source/css/_widgets/index.styl +1 -1
- package/source/js/covercolor/api.js +16 -16
- package/source/js/covercolor/local.js +16 -16
- package/source/js/lately.min.js +6 -0
- package/source/js/main.js +2 -33
- package/source/js/music.js +91 -139
- package/source/js/utils.js +6 -0
- package/layout/includes/page/album.pug +0 -38
- package/layout/includes/page/gallery.pug +0 -11
- package/scripts/generator/gallery.js +0 -49
- package/scripts/tags/card.js +0 -9
- package/scripts/tags/u.js +0 -7
- package/source/css/_widgets/_tags/bvideo.styl +0 -8
- package/source/css/_widgets/_tags/card.styl +0 -52
- package/source/css/_widgets/_tags/image.styl +0 -10
- package/source/css/_widgets/_tags/inline-image.styl +0 -6
- /package/.github/workflows/{npm-publish-github-packages.yml → publish.yml} +0 -0
@@ -1,52 +0,0 @@
|
|
1
|
-
#article-container
|
2
|
-
.card
|
3
|
-
width 100%
|
4
|
-
height auto
|
5
|
-
display flex
|
6
|
-
flex-direction column
|
7
|
-
padding .5rem 1rem
|
8
|
-
border-radius 0.375rem
|
9
|
-
margin .5rem 0
|
10
|
-
|
11
|
-
.card-title
|
12
|
-
display flex
|
13
|
-
align-items center
|
14
|
-
font-size 1.8rem
|
15
|
-
font-weight bold
|
16
|
-
|
17
|
-
i
|
18
|
-
margin-right 8px
|
19
|
-
font-size 20px
|
20
|
-
|
21
|
-
p
|
22
|
-
margin 0 0 0 1.5rem
|
23
|
-
|
24
|
-
&.card-red
|
25
|
-
background rgba(238, 125, 121, 0.1)
|
26
|
-
border 1px solid var(--efu-red)
|
27
|
-
color var(--efu-red)
|
28
|
-
|
29
|
-
&.card-green
|
30
|
-
background rgb(240 253 244)
|
31
|
-
border 1px solid var(--efu-green)
|
32
|
-
color var(--efu-green)
|
33
|
-
|
34
|
-
&.card-blue
|
35
|
-
background rgb(240 248 253)
|
36
|
-
border 1px solid var(--efu-blue)
|
37
|
-
color var(--efu-blue)
|
38
|
-
|
39
|
-
&.card-yellow
|
40
|
-
background rgb(255 251 240)
|
41
|
-
border 1px solid var(--efu-yellow)
|
42
|
-
color var(--efu-yellow)
|
43
|
-
|
44
|
-
&.card-purple
|
45
|
-
background rgb(243 240 253)
|
46
|
-
border 1px solid var(--efu-purple)
|
47
|
-
color var(--efu-purple)
|
48
|
-
|
49
|
-
&.card-cyan
|
50
|
-
background rgb(240 253 253)
|
51
|
-
border 1px solid var(--efu-cyan)
|
52
|
-
color var(--efu-cyan)
|
File without changes
|