hexo-theme-solitude 1.1.3 → 1.2.1
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/LICENSE +674 -19
- package/_config.yml +243 -193
- package/languages/en-US.yml +1 -0
- package/languages/zh-CN.yml +8 -8
- package/layout/404.pug +24 -0
- package/layout/archive.pug +11 -0
- package/layout/category.pug +16 -0
- package/layout/includes/console.pug +42 -0
- package/layout/includes/footer.pug +71 -0
- package/layout/includes/head/config.pug +79 -0
- package/layout/includes/head/pwa.pug +59 -0
- package/layout/includes/head.pug +29 -0
- package/layout/includes/header.pug +4 -0
- package/layout/includes/inject/body.pug +68 -0
- package/layout/{partial/compoment/inject/head.ejs → includes/inject/head.pug} +59 -35
- package/layout/includes/layout.pug +35 -0
- package/layout/{partial/loading.ejs → includes/loading.pug} +19 -17
- package/layout/includes/mixins/articleSort.pug +14 -0
- package/layout/includes/mixins/pagination.pug +8 -0
- package/layout/includes/nav.pug +22 -0
- package/layout/includes/page/about.pug +10 -0
- package/layout/includes/page/categories.pug +8 -0
- package/layout/includes/page/default.pug +2 -0
- package/layout/includes/page/echarts.pug +7 -0
- package/layout/includes/page/equipment.pug +3 -0
- package/layout/includes/page/links.pug +35 -0
- package/layout/includes/page/moments.pug +5 -0
- package/layout/includes/page/rss.pug +22 -0
- package/layout/includes/page/says.pug +20 -0
- package/layout/includes/page/tags.pug +8 -0
- package/layout/includes/page/tlink.pug +9 -0
- package/layout/includes/recent-posts.pug +9 -0
- package/layout/includes/sidebar.pug +17 -0
- package/layout/includes/widgets/aside/aside.pug +18 -0
- package/layout/includes/widgets/aside/asideAllInfo.pug +8 -0
- package/layout/includes/widgets/aside/asideArchive.pug +9 -0
- package/layout/includes/widgets/aside/asideFlipCard.pug +5 -0
- package/layout/includes/widgets/aside/asideHistory.pug +8 -0
- package/layout/includes/widgets/aside/asideInfoCard.pug +22 -0
- package/layout/includes/widgets/aside/asideNewestPost.pug +16 -0
- package/layout/includes/widgets/aside/asidePower.pug +19 -0
- package/layout/includes/widgets/aside/asideSwitch.pug +26 -0
- package/layout/includes/widgets/aside/asideTag.pug +11 -0
- package/layout/includes/widgets/aside/asideToc.pug +5 -0
- package/layout/includes/widgets/aside/asideWebInfo.pug +40 -0
- package/layout/includes/widgets/aside/asideWelcome.pug +12 -0
- package/layout/includes/widgets/home/banner.pug +16 -0
- package/layout/includes/widgets/home/bbTimeList.pug +8 -0
- package/layout/includes/widgets/home/categoryBar.pug +10 -0
- package/layout/includes/widgets/home/categoryGroup.pug +9 -0
- package/layout/includes/widgets/home/hometop.pug +9 -0
- package/layout/includes/widgets/home/postList.pug +26 -0
- package/layout/includes/widgets/home/rencentPost.pug +26 -0
- package/layout/includes/widgets/home/topGroup.pug +27 -0
- package/layout/includes/widgets/nav/left.pug +10 -0
- package/layout/includes/widgets/nav/menu.pug +16 -0
- package/layout/includes/widgets/nav/right.pug +23 -0
- package/layout/includes/widgets/page/about/authorinfo.pug +12 -0
- package/layout/includes/widgets/page/about/award.pug +34 -0
- package/layout/includes/widgets/page/about/contentinfo.pug +38 -0
- package/layout/includes/widgets/page/about/hobbies.pug +33 -0
- package/layout/includes/widgets/page/about/motto.pug +19 -0
- package/layout/includes/widgets/page/about/other.pug +61 -0
- package/layout/includes/widgets/page/about/personalities.pug +16 -0
- package/layout/includes/widgets/page/about/skillsinfo.pug +41 -0
- package/layout/includes/widgets/page/banner.pug +14 -0
- package/layout/includes/widgets/page/equipment/content.pug +23 -0
- package/layout/includes/widgets/page/links/banner.pug +30 -0
- package/layout/includes/widgets/page/links/linksCard.pug +18 -0
- package/layout/includes/widgets/page/links/linksItem.pug +14 -0
- package/layout/includes/widgets/page/moments/angle.pug +24 -0
- package/layout/includes/widgets/page/moments/index.pug +18 -0
- package/layout/includes/widgets/page/says/saysBottom.pug +11 -0
- package/layout/includes/widgets/page/says/saysContent.pug +6 -0
- package/layout/includes/widgets/page/says/saysFunction.pug +10 -0
- package/layout/includes/widgets/page/says/saysMeta.pug +7 -0
- package/layout/includes/widgets/post/award.pug +48 -0
- package/layout/includes/widgets/post/copyright.pug +27 -0
- package/layout/includes/widgets/post/postMeta.pug +55 -0
- package/layout/includes/widgets/post/postNav.pug +25 -0
- package/layout/includes/widgets/post/wave.pug +9 -0
- package/layout/includes/widgets/randomlink.pug +32 -0
- package/layout/includes/widgets/rightside/index.pug +74 -0
- package/layout/includes/widgets/third-party/comments/comment.pug +14 -0
- package/layout/includes/widgets/third-party/comments/gitalk.pug +0 -0
- package/layout/{partial/compoment/third-party/comments/twikoo.ejs → includes/widgets/third-party/comments/twikoo.pug} +8 -9
- package/layout/includes/widgets/third-party/comments/valine.pug +0 -0
- package/layout/includes/widgets/third-party/music.pug +3 -0
- package/layout/includes/widgets/third-party/pjax.pug +30 -0
- package/layout/includes/widgets/third-party/search/algolia-search.pug +16 -0
- package/layout/includes/widgets/third-party/search/index.pug +7 -0
- package/layout/includes/widgets/third-party/search/local-search.pug +15 -0
- package/layout/index.pug +20 -0
- package/layout/page.pug +32 -0
- package/layout/post.pug +43 -0
- package/layout/tag.pug +19 -0
- package/package.json +4 -4
- package/scripts/event/page.js +20 -2
- package/scripts/filter/checkThemeConfig.js +0 -1
- package/scripts/filter/randomPosts.js +0 -1
- package/scripts/helper/{charts.js → echarts.js} +27 -28
- package/scripts/helper/stylus.js +23 -0
- package/scripts/tags/bvideo.js +1 -36
- package/source/css/_comment/index.styl +121 -0
- package/source/css/_comment/twikoo.styl +515 -0
- package/source/css/_extra/console.styl +354 -0
- package/source/css/_extra/rightmenu.styl +83 -0
- package/source/css/_global/animation.css +756 -0
- package/source/css/_global/function.styl +83 -0
- package/source/css/_global/index.styl +120 -0
- package/source/css/_global/var.styl +1 -0
- package/source/css/_layout/articleSort.styl +199 -0
- package/source/css/_layout/base.styl +392 -0
- package/source/css/_layout/footer.styl +359 -0
- package/source/css/_layout/header.styl +1331 -0
- package/source/css/_layout/index.styl +293 -0
- package/source/css/_layout/sidebar.styl +226 -0
- package/source/css/_mode/index.styl +52 -0
- package/source/css/_page/about.styl +944 -0
- package/source/css/_page/category.styl +141 -0
- package/source/css/_page/equipment.styl +108 -0
- package/source/css/_page/error.styl +161 -0
- package/source/css/_page/home.styl +58 -0
- package/source/css/_page/homeTop.styl +1035 -0
- package/source/css/_page/index.styl +22 -0
- package/source/css/_page/link.styl +433 -0
- package/source/css/_page/moment.styl +186 -0
- package/source/css/_page/rss.styl +87 -0
- package/source/css/_page/says.styl +353 -0
- package/source/css/_page/tag.styl +56 -0
- package/source/css/_post/commentBarrage.styl +149 -0
- package/source/css/_post/externalTags.styl +694 -0
- package/source/css/_post/highlight.styl +96 -0
- package/source/css/_post/index.styl +935 -0
- package/source/css/_post/pagination.styl +467 -0
- package/source/css/_post/postContent.styl +957 -0
- package/source/css/_post/relatedPost.styl +160 -0
- package/source/css/_post/reward.styl +217 -0
- package/source/css/_search/algolia-search.styl +206 -0
- package/source/css/_search/local-search.styl +112 -0
- package/source/css/_widgets/aside/allinfo.styl +134 -0
- package/source/css/_widgets/aside/flip.styl +68 -0
- package/source/css/_widgets/aside/history.styl +35 -0
- package/source/css/_widgets/aside/index.styl +156 -0
- package/source/css/_widgets/aside/info.styl +263 -0
- package/source/css/_widgets/aside/newPost.styl +55 -0
- package/source/css/_widgets/aside/power.styl +90 -0
- package/source/css/_widgets/aside/toc.styl +85 -0
- package/source/css/_widgets/aside/welcome.styl +14 -0
- package/source/css/_widgets/index.styl +3 -0
- package/source/css/index.styl +40 -0
- package/source/js/commentBarrage.js +8 -5
- package/source/js/extend/console/comment.js +60 -63
- package/source/js/extend/covercolor/local.js +1 -1
- package/source/js/extend/search/algolia-search.js +104 -111
- package/source/js/extend/search/local-search.js +7 -7
- package/source/js/main.js +655 -505
- package/source/js/utils.js +131 -137
- package/layout/404.ejs +0 -34
- package/layout/archive.ejs +0 -10
- package/layout/category.ejs +0 -18
- package/layout/index.ejs +0 -20
- package/layout/layout.ejs +0 -30
- package/layout/page/about.ejs +0 -15
- package/layout/page/categories.ejs +0 -12
- package/layout/page/circle.ejs +0 -5
- package/layout/page/echarts.ejs +0 -1
- package/layout/page/equipment.ejs +0 -2
- package/layout/page/links.ejs +0 -46
- package/layout/page/page.ejs +0 -3
- package/layout/page/rss.ejs +0 -39
- package/layout/page/says.ejs +0 -17
- package/layout/page/tags.ejs +0 -12
- package/layout/page/tlink.ejs +0 -11
- package/layout/page.ejs +0 -45
- package/layout/partial/body.ejs +0 -7
- package/layout/partial/compoment/about/authorinfo.ejs +0 -18
- package/layout/partial/compoment/about/award.ejs +0 -59
- package/layout/partial/compoment/about/contentinfo.ejs +0 -33
- package/layout/partial/compoment/about/hobbies.ejs +0 -53
- package/layout/partial/compoment/about/motto.ejs +0 -17
- package/layout/partial/compoment/about/other.ejs +0 -76
- package/layout/partial/compoment/about/personalities.ejs +0 -11
- package/layout/partial/compoment/about/skillsinfo.ejs +0 -62
- package/layout/partial/compoment/aside/aside.ejs +0 -28
- package/layout/partial/compoment/aside/asideAllInfo.ejs +0 -6
- package/layout/partial/compoment/aside/asideArchive.ejs +0 -11
- package/layout/partial/compoment/aside/asideFlipCard.ejs +0 -72
- package/layout/partial/compoment/aside/asideHistory.ejs +0 -49
- package/layout/partial/compoment/aside/asideInfoCard.ejs +0 -39
- package/layout/partial/compoment/aside/asideNewestPost.ejs +0 -31
- package/layout/partial/compoment/aside/asidePower.ejs +0 -31
- package/layout/partial/compoment/aside/asideSwitch.ejs +0 -41
- package/layout/partial/compoment/aside/asideTag.ejs +0 -5
- package/layout/partial/compoment/aside/asideToc.ejs +0 -11
- package/layout/partial/compoment/aside/asideWebInfo.ejs +0 -60
- package/layout/partial/compoment/aside/asideWelcome.ejs +0 -33
- package/layout/partial/compoment/circle/angle.ejs +0 -26
- package/layout/partial/compoment/circle/banner.ejs +0 -11
- package/layout/partial/compoment/circle/content.ejs +0 -19
- package/layout/partial/compoment/dorakika/rightmenu.ejs +0 -100
- package/layout/partial/compoment/equipment/list.ejs +0 -37
- package/layout/partial/compoment/home/homeCategoryBar.ejs +0 -11
- package/layout/partial/compoment/home/postList.ejs +0 -37
- package/layout/partial/compoment/hometop/bbTimeList.ejs +0 -15
- package/layout/partial/compoment/hometop/categoryGroup.ejs +0 -19
- package/layout/partial/compoment/hometop/groupTag.ejs +0 -30
- package/layout/partial/compoment/hometop/topGroup.ejs +0 -41
- package/layout/partial/compoment/inject/body.ejs +0 -70
- package/layout/partial/compoment/links/angle.ejs +0 -26
- package/layout/partial/compoment/links/banner.ejs +0 -42
- package/layout/partial/compoment/links/linksCard.ejs +0 -27
- package/layout/partial/compoment/links/linksItem.ejs +0 -21
- package/layout/partial/compoment/mixins/articleSort.ejs +0 -26
- package/layout/partial/compoment/mixins/pagination.ejs +0 -11
- package/layout/partial/compoment/nav/left.ejs +0 -22
- package/layout/partial/compoment/nav/menu.ejs +0 -25
- package/layout/partial/compoment/nav/right.ejs +0 -42
- package/layout/partial/compoment/post/award.ejs +0 -60
- package/layout/partial/compoment/post/copyright.ejs +0 -39
- package/layout/partial/compoment/post/postMeta.ejs +0 -85
- package/layout/partial/compoment/post/postNav.ejs +0 -41
- package/layout/partial/compoment/post/wave.ejs +0 -14
- package/layout/partial/compoment/says/banner.ejs +0 -10
- package/layout/partial/compoment/says/saysBottom.ejs +0 -18
- package/layout/partial/compoment/says/saysContent.ejs +0 -10
- package/layout/partial/compoment/says/saysFunction.ejs +0 -15
- package/layout/partial/compoment/third-party/comments/comment.ejs +0 -12
- package/layout/partial/compoment/third-party/comments/twikoo_k.ejs +0 -29
- package/layout/partial/compoment/third-party/music.ejs +0 -5
- package/layout/partial/compoment/third-party/pjax.ejs +0 -31
- package/layout/partial/compoment/third-party/search/algolia-search.ejs +0 -20
- package/layout/partial/compoment/third-party/search/index.ejs +0 -10
- package/layout/partial/compoment/third-party/search/local-search.ejs +0 -22
- package/layout/partial/compoment/tlink/banner.ejs +0 -10
- package/layout/partial/console.ejs +0 -68
- package/layout/partial/footer.ejs +0 -109
- package/layout/partial/head.ejs +0 -37
- package/layout/partial/header.ejs +0 -6
- package/layout/partial/hometop.ejs +0 -15
- package/layout/partial/nav.ejs +0 -34
- package/layout/partial/pwa.ejs +0 -40
- package/layout/partial/sidebar.ejs +0 -31
- package/layout/post.ejs +0 -52
- package/layout/tag.ejs +0 -19
- package/scripts/helper/randomLinks.js +0 -16
- package/scripts/helper/themeJsExport.js +0 -79
- package/source/css/commentBarrage.css +0 -174
- package/source/css/custom.css +0 -901
- package/source/css/main.css +0 -16285
- package/source/css/search/algolia-search.css +0 -141
- package/source/css/search/local-search.css +0 -138
- package/source/css/var.css +0 -189
- /package/source/js/{rightmenu.js → rightside.js} +0 -0
@@ -0,0 +1,353 @@
|
|
1
|
+
if hexo-config('says.home_mini')
|
2
|
+
.bber-logo,
|
3
|
+
.bber-gotobb
|
4
|
+
line-height 25px
|
5
|
+
transition .3s
|
6
|
+
cursor pointer
|
7
|
+
|
8
|
+
&:hover
|
9
|
+
opacity .8
|
10
|
+
color var(--sco-theme)
|
11
|
+
|
12
|
+
.bber-logo
|
13
|
+
margin-right 1rem
|
14
|
+
|
15
|
+
.bber-gotobb
|
16
|
+
margin-left 1rem
|
17
|
+
|
18
|
+
i
|
19
|
+
&.bber-gotobb
|
20
|
+
font-size 16px
|
21
|
+
|
22
|
+
if hexo-config('says.enable')
|
23
|
+
.author-content.author-content-item.essayPage
|
24
|
+
height 19rem
|
25
|
+
color var(--sco-white)
|
26
|
+
overflow hidden
|
27
|
+
margin-top 0
|
28
|
+
|
29
|
+
#bber
|
30
|
+
margin-top 1rem
|
31
|
+
width 100%
|
32
|
+
|
33
|
+
if hexo-config('says.style') == 2
|
34
|
+
.meta
|
35
|
+
display flex
|
36
|
+
align-items center
|
37
|
+
line-height 1.5
|
38
|
+
position relative
|
39
|
+
width 100%
|
40
|
+
margin-bottom 4px
|
41
|
+
|
42
|
+
.avatar
|
43
|
+
margin 0
|
44
|
+
width 50px
|
45
|
+
height 50px
|
46
|
+
border-radius 10px
|
47
|
+
|
48
|
+
.info
|
49
|
+
display flex
|
50
|
+
flex-direction column
|
51
|
+
margin-left 10px
|
52
|
+
|
53
|
+
span.bber_nick
|
54
|
+
color #6dbdc3
|
55
|
+
font-size .9rem
|
56
|
+
|
57
|
+
time.bber_date
|
58
|
+
font-size 14px
|
59
|
+
opacity .6
|
60
|
+
|
61
|
+
.goComment
|
62
|
+
position: absolute
|
63
|
+
top: 0
|
64
|
+
right: 0
|
65
|
+
|
66
|
+
div
|
67
|
+
&.bber-content
|
68
|
+
display flex
|
69
|
+
flex-direction initial
|
70
|
+
flex-wrap wrap
|
71
|
+
border-radius 12px
|
72
|
+
width 100%
|
73
|
+
height 100%
|
74
|
+
|
75
|
+
& > section
|
76
|
+
& > ul
|
77
|
+
& > li
|
78
|
+
&.item
|
79
|
+
margin-bottom 1rem
|
80
|
+
|
81
|
+
.bber-reply
|
82
|
+
cursor pointer
|
83
|
+
margin 0 4px
|
84
|
+
|
85
|
+
if hexo-config('says.style') == 1
|
86
|
+
.bber-bottom
|
87
|
+
display flex
|
88
|
+
justify-content space-between
|
89
|
+
width 100%
|
90
|
+
-webkit-user-select none
|
91
|
+
user-select none
|
92
|
+
|
93
|
+
.bber-info
|
94
|
+
display flex
|
95
|
+
align-items center
|
96
|
+
|
97
|
+
.fa-rectangles-mixed
|
98
|
+
margin-right 8px
|
99
|
+
|
100
|
+
.bber-info-time
|
101
|
+
color var(--sco-fontcolor)
|
102
|
+
font-size .7rem
|
103
|
+
background-color var(--sco-gray-op)
|
104
|
+
padding 0 8px
|
105
|
+
border-radius 20px
|
106
|
+
cursor default
|
107
|
+
display flex
|
108
|
+
align-items center
|
109
|
+
|
110
|
+
i
|
111
|
+
margin-right 8px
|
112
|
+
font-size 16px
|
113
|
+
|
114
|
+
.datafrom
|
115
|
+
order 2
|
116
|
+
color var(--sco-secondtext)
|
117
|
+
font-size .7rem
|
118
|
+
margin-left 8px
|
119
|
+
small
|
120
|
+
font-size .7rem
|
121
|
+
|
122
|
+
.bber-content-link
|
123
|
+
display flex
|
124
|
+
margin-left .5rem
|
125
|
+
color var(--sco-secondtext)
|
126
|
+
font-size .7rem
|
127
|
+
align-items center
|
128
|
+
background-color rgba(245, 108, 108, .13)
|
129
|
+
padding 0 8px
|
130
|
+
border-radius 20px
|
131
|
+
|
132
|
+
&:hover
|
133
|
+
background-color var(--sco-main)
|
134
|
+
color var(--sco-white)
|
135
|
+
|
136
|
+
i
|
137
|
+
margin-right 3px
|
138
|
+
font-size 16px
|
139
|
+
|
140
|
+
.count
|
141
|
+
color var(--sco-secondtext)
|
142
|
+
font-size .8rem
|
143
|
+
|
144
|
+
p
|
145
|
+
margin 0
|
146
|
+
|
147
|
+
.datafrom
|
148
|
+
i
|
149
|
+
margin-right 4px
|
150
|
+
|
151
|
+
.bber-music
|
152
|
+
width 100%
|
153
|
+
height 90px
|
154
|
+
margin .5rem 0
|
155
|
+
border-radius 8px
|
156
|
+
overflow hidden
|
157
|
+
border var(--style-border-always)
|
158
|
+
background var(--sco-secondbg)
|
159
|
+
|
160
|
+
.aplayer-lrc
|
161
|
+
display none
|
162
|
+
|
163
|
+
.aplayer
|
164
|
+
margin 0
|
165
|
+
|
166
|
+
.aplayer-info
|
167
|
+
.aplayer-music
|
168
|
+
height 23px
|
169
|
+
|
170
|
+
.aplayer-title
|
171
|
+
font-size .8rem
|
172
|
+
font-weight 700
|
173
|
+
margin 0
|
174
|
+
color var(--sco-black)
|
175
|
+
|
176
|
+
.aplayer-controller
|
177
|
+
align-items center
|
178
|
+
|
179
|
+
.aplayer-bar-wrap
|
180
|
+
padding 0
|
181
|
+
|
182
|
+
.aplayer-bar
|
183
|
+
background var(--sco-gray)
|
184
|
+
height 8px
|
185
|
+
border-radius 12px
|
186
|
+
transition .3s
|
187
|
+
overflow hidden
|
188
|
+
|
189
|
+
.aplayer-played
|
190
|
+
height 100%
|
191
|
+
border-radius 12px
|
192
|
+
|
193
|
+
.aplayer-thumb
|
194
|
+
display none
|
195
|
+
|
196
|
+
.aplayer-loaded
|
197
|
+
height 100%
|
198
|
+
border-radius 12px
|
199
|
+
|
200
|
+
&:hover
|
201
|
+
.aplayer-bar
|
202
|
+
height 12px
|
203
|
+
|
204
|
+
.aplayer-time
|
205
|
+
position initial
|
206
|
+
|
207
|
+
&.aplayer-withlrc
|
208
|
+
.aplayer-pic
|
209
|
+
height 82px
|
210
|
+
width 82px
|
211
|
+
margin 4px
|
212
|
+
border-radius 4px
|
213
|
+
|
214
|
+
.bber-video
|
215
|
+
position relative
|
216
|
+
padding 30% 50%
|
217
|
+
margin 0.5rem 0
|
218
|
+
|
219
|
+
.bber-content-img
|
220
|
+
height 100px
|
221
|
+
margin .2rem auto .3rem 0
|
222
|
+
border-radius 12px
|
223
|
+
overflow hidden
|
224
|
+
display flex
|
225
|
+
position relative
|
226
|
+
|
227
|
+
img
|
228
|
+
object-fit cover
|
229
|
+
max-height 100%
|
230
|
+
border-radius 12px
|
231
|
+
min-height 100px
|
232
|
+
height 100px
|
233
|
+
|
234
|
+
.bber-content
|
235
|
+
.datacont
|
236
|
+
order 0
|
237
|
+
font-size .8rem
|
238
|
+
font-weight 700
|
239
|
+
color var(--sco-fontcolor)
|
240
|
+
width 100%
|
241
|
+
line-height 1.38
|
242
|
+
border-radius 12px
|
243
|
+
margin-bottom .5rem
|
244
|
+
display flex
|
245
|
+
flex-direction column
|
246
|
+
text-align justify
|
247
|
+
|
248
|
+
.timeline
|
249
|
+
#waterfall
|
250
|
+
opacity 0
|
251
|
+
transition .3s
|
252
|
+
|
253
|
+
&.show
|
254
|
+
opacity 1
|
255
|
+
|
256
|
+
ul
|
257
|
+
li
|
258
|
+
&.item
|
259
|
+
position relative
|
260
|
+
width 32%
|
261
|
+
border var(--style-border-always)
|
262
|
+
border-radius 12px
|
263
|
+
padding 1rem 1rem .5rem
|
264
|
+
transition .3s
|
265
|
+
display flex
|
266
|
+
flex-direction column
|
267
|
+
flex-wrap nowrap
|
268
|
+
justify-content space-between
|
269
|
+
align-items flex-start
|
270
|
+
background var(--sco-card-bg)
|
271
|
+
box-shadow var(--sco-shadow-border)
|
272
|
+
margin-right 2%
|
273
|
+
|
274
|
+
+maxWidth1300()
|
275
|
+
width 49%
|
276
|
+
margin-right 1%
|
277
|
+
|
278
|
+
+maxWidth768()
|
279
|
+
width 100%
|
280
|
+
margin-right 0
|
281
|
+
padding 16px 20px
|
282
|
+
|
283
|
+
hr
|
284
|
+
display flex
|
285
|
+
position relative
|
286
|
+
margin 8px 0
|
287
|
+
border 1px dashed var(--sco-theme-op)
|
288
|
+
width 100%
|
289
|
+
|
290
|
+
&:hover
|
291
|
+
border var(--style-border-hover)
|
292
|
+
ul
|
293
|
+
&.list
|
294
|
+
display flex
|
295
|
+
flex-direction row
|
296
|
+
flex-wrap wrap
|
297
|
+
justify-content space-between
|
298
|
+
|
299
|
+
li
|
300
|
+
&.item
|
301
|
+
display flex
|
302
|
+
flex-direction column
|
303
|
+
flex-wrap nowrap
|
304
|
+
align-items flex-start
|
305
|
+
|
306
|
+
#bber .bber-video video,
|
307
|
+
#bber .bber-video iframe
|
308
|
+
position absolute
|
309
|
+
width 100%
|
310
|
+
height 100%
|
311
|
+
left 0
|
312
|
+
top 0
|
313
|
+
margin 0
|
314
|
+
border-radius 8px
|
315
|
+
border var(--style-border)
|
316
|
+
|
317
|
+
#bber-tips
|
318
|
+
font-size 14px
|
319
|
+
display flex
|
320
|
+
justify-content center
|
321
|
+
margin-top 1rem
|
322
|
+
|
323
|
+
#bber-talk
|
324
|
+
width 100%
|
325
|
+
height 25px
|
326
|
+
line-height 25px
|
327
|
+
display flex
|
328
|
+
flex-direction column
|
329
|
+
|
330
|
+
.li-style
|
331
|
+
width auto
|
332
|
+
max-width 100%
|
333
|
+
height 25px
|
334
|
+
text-align center
|
335
|
+
overflow hidden
|
336
|
+
text-overflow ellipsis
|
337
|
+
transition .3s
|
338
|
+
font-weight 700
|
339
|
+
margin auto
|
340
|
+
cursor pointer
|
341
|
+
white-space nowrap
|
342
|
+
|
343
|
+
#bbtalk
|
344
|
+
overflow hidden
|
345
|
+
width 100%
|
346
|
+
text-overflow ellipsis
|
347
|
+
white-space nowrap
|
348
|
+
|
349
|
+
#bbTimeList
|
350
|
+
.li-style
|
351
|
+
&:hover
|
352
|
+
color var(--sco-theme)
|
353
|
+
transition .3s
|
@@ -0,0 +1,56 @@
|
|
1
|
+
#tag
|
2
|
+
#tag-page-tags
|
3
|
+
display flex
|
4
|
+
flex-direction row
|
5
|
+
flex-wrap wrap
|
6
|
+
margin 0 -0.25rem
|
7
|
+
margin-bottom 0.5rem
|
8
|
+
position absolute
|
9
|
+
z-index 1
|
10
|
+
width 100%
|
11
|
+
padding 1rem 2rem
|
12
|
+
left 0
|
13
|
+
top 0
|
14
|
+
max-height 64px
|
15
|
+
overflow hidden
|
16
|
+
background var(--sco-card-bg)
|
17
|
+
backdrop-filter saturate(180%) blur(20px)
|
18
|
+
transition .1s ease-out
|
19
|
+
|
20
|
+
a
|
21
|
+
padding .1rem .5rem
|
22
|
+
margin .25rem .25rem
|
23
|
+
line-height 1.6
|
24
|
+
border-radius 8px
|
25
|
+
color var(--sco-fontcolor) !important
|
26
|
+
border var(--style-border-always)
|
27
|
+
display flex
|
28
|
+
align-items center
|
29
|
+
|
30
|
+
&.select
|
31
|
+
order -1
|
32
|
+
color var(--sco-card-bg) !important
|
33
|
+
background var(--sco-theme)
|
34
|
+
box-shadow var(--sco-shadow-theme)
|
35
|
+
|
36
|
+
&:hover
|
37
|
+
color var(--sco-white) !important
|
38
|
+
background var(--sco-theme)
|
39
|
+
box-shadow var(--sco-shadow-theme)
|
40
|
+
|
41
|
+
&.select .tagsPageCount
|
42
|
+
background var(--sco-card-bg)
|
43
|
+
color var(--sco-lighttext)
|
44
|
+
+maxWidth768()
|
45
|
+
display none
|
46
|
+
span.tags-punctuation
|
47
|
+
margin-right 2px
|
48
|
+
font-size .7rem
|
49
|
+
font-weight 700
|
50
|
+
display flex;
|
51
|
+
align-items center
|
52
|
+
transition .3s
|
53
|
+
|
54
|
+
+minWidth1300()
|
55
|
+
#tag
|
56
|
+
padding: 4rem 2rem 1rem 2rem
|
@@ -0,0 +1,149 @@
|
|
1
|
+
.comment-barrage
|
2
|
+
position fixed
|
3
|
+
bottom 0
|
4
|
+
right 20px
|
5
|
+
padding 0 0 20px 10px
|
6
|
+
display flex
|
7
|
+
flex-direction column
|
8
|
+
justify-content flex-end
|
9
|
+
align-items flex-end
|
10
|
+
z-index 999
|
11
|
+
transition all 0.3s ease 0s
|
12
|
+
user-select none
|
13
|
+
|
14
|
+
+maxWidth768()
|
15
|
+
display none !important
|
16
|
+
|
17
|
+
.comment-barrage-item
|
18
|
+
min-width 300px
|
19
|
+
max-width 300px
|
20
|
+
width fit-content
|
21
|
+
min-height 80px
|
22
|
+
max-height 150px
|
23
|
+
margin 4px
|
24
|
+
padding 8px 14px
|
25
|
+
background var(--sco-maskbgdeep)
|
26
|
+
border-radius 8px
|
27
|
+
color var(--sco-fontcolor)
|
28
|
+
animation 0.6s cubic-bezier(0.42, 0, 0.3, 1.11) 0s 1 normal none running barrageIn
|
29
|
+
transition all 0.3s ease 0s
|
30
|
+
display flex
|
31
|
+
flex-direction column
|
32
|
+
border var(--style-border)
|
33
|
+
backdrop-filter saturate(180%) blur(20px)
|
34
|
+
position fixed
|
35
|
+
box-shadow var(--sco-shadow-border)
|
36
|
+
overflow hidden
|
37
|
+
|
38
|
+
&:hover
|
39
|
+
border var(--style-border-hover)
|
40
|
+
box-shadow var(--sco-shadow-main)
|
41
|
+
|
42
|
+
&.out
|
43
|
+
opacity 0
|
44
|
+
animation 0.6s cubic-bezier(0.42, 0, 0.3, 1.11) 0s 1 normal none running barrageOut
|
45
|
+
|
46
|
+
&.hovered
|
47
|
+
opacity 0
|
48
|
+
|
49
|
+
.comment-barrage-close
|
50
|
+
color var(--sco-secondtext)
|
51
|
+
cursor pointer
|
52
|
+
line-height 1
|
53
|
+
margin 4px
|
54
|
+
|
55
|
+
&:hover
|
56
|
+
color var(--sco-main)
|
57
|
+
|
58
|
+
.scoicon
|
59
|
+
color var(--sco-fontcolor)
|
60
|
+
font-size 18px !important
|
61
|
+
|
62
|
+
pre
|
63
|
+
display none
|
64
|
+
|
65
|
+
li
|
66
|
+
display none
|
67
|
+
|
68
|
+
p
|
69
|
+
img:not(.tk-owo-emotion)
|
70
|
+
display none
|
71
|
+
|
72
|
+
img.tk-owo-emotion
|
73
|
+
width 16px
|
74
|
+
padding 0
|
75
|
+
margin 0
|
76
|
+
transform translateY(2px)
|
77
|
+
|
78
|
+
blockquote
|
79
|
+
display none
|
80
|
+
|
81
|
+
br
|
82
|
+
display none
|
83
|
+
|
84
|
+
.barrageHead
|
85
|
+
height 30px
|
86
|
+
padding 0 0 6px
|
87
|
+
line-height 30px
|
88
|
+
font-size 12px
|
89
|
+
border-bottom var(--style-border)
|
90
|
+
display flex
|
91
|
+
justify-content space-between
|
92
|
+
align-items center
|
93
|
+
font-weight 700
|
94
|
+
|
95
|
+
.barrageTitle
|
96
|
+
color var(--sco-card-bg)
|
97
|
+
margin-right 8px
|
98
|
+
background var(--sco-fontcolor)
|
99
|
+
line-height 1
|
100
|
+
padding 4px
|
101
|
+
border-radius 4px
|
102
|
+
white-space nowrap
|
103
|
+
|
104
|
+
&:hover
|
105
|
+
background var(--sco-main)
|
106
|
+
color var(--sco-white)
|
107
|
+
|
108
|
+
.barrageAvatar
|
109
|
+
width 16px
|
110
|
+
height 16px
|
111
|
+
margin 0 8px 0 auto
|
112
|
+
border-radius 50%
|
113
|
+
background var(--sco-secondbg)
|
114
|
+
|
115
|
+
.barrageContent
|
116
|
+
height calc(100% - 30px)
|
117
|
+
overflow hidden
|
118
|
+
width fit-content
|
119
|
+
max-height 48px
|
120
|
+
font-size 14px !important
|
121
|
+
font-weight 400 !important
|
122
|
+
|
123
|
+
a
|
124
|
+
pointer-events none
|
125
|
+
font-size 14px !important
|
126
|
+
|
127
|
+
&::-webkit-scrollbar
|
128
|
+
height 0
|
129
|
+
width 4px
|
130
|
+
|
131
|
+
&::-webkit-scrollbar-button
|
132
|
+
display none
|
133
|
+
|
134
|
+
p
|
135
|
+
margin 8px 0
|
136
|
+
line-height 1.3
|
137
|
+
overflow hidden
|
138
|
+
text-overflow ellipsis
|
139
|
+
-webkit-line-clamp 2
|
140
|
+
display -webkit-box
|
141
|
+
-webkit-box-orient vertical
|
142
|
+
font-size 14px
|
143
|
+
max-width 270px
|
144
|
+
|
145
|
+
.barrageContent
|
146
|
+
h1, h2, h3, h4
|
147
|
+
font-size 14px !important
|
148
|
+
font-weight 400 !important
|
149
|
+
margin 8px 0 !important
|