hexo-theme-solitude 1.1.3 → 1.2.2
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 +244 -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} +61 -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 +14 -0
- package/layout/includes/widgets/third-party/search/index.pug +7 -0
- package/layout/includes/widgets/third-party/search/local-search.pug +13 -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 +835 -0
- package/source/css/_page/category.styl +141 -0
- package/source/css/_page/equipment.styl +101 -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 +131 -0
- package/source/css/_page/link.styl +433 -0
- package/source/css/_page/moment.styl +179 -0
- package/source/css/_page/rss.styl +87 -0
- package/source/css/_page/says.styl +347 -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 +154 -0
- package/source/css/_search/local-search.styl +131 -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 +151 -134
- package/source/js/extend/search/local-search.js +137 -162
- package/source/js/main.js +655 -505
- package/source/js/utils.js +168 -145
- 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,354 @@
|
|
1
|
+
#console
|
2
|
+
display flex
|
3
|
+
position fixed
|
4
|
+
width 100vw
|
5
|
+
height 100vh
|
6
|
+
top 0
|
7
|
+
left 0
|
8
|
+
z-index 9999
|
9
|
+
justify-content center
|
10
|
+
opacity 0
|
11
|
+
transition .3s ease-out
|
12
|
+
flex-direction column
|
13
|
+
align-items center
|
14
|
+
pointer-events none
|
15
|
+
-webkit-user-select none
|
16
|
+
|
17
|
+
&.show
|
18
|
+
opacity 1
|
19
|
+
pointer-events all
|
20
|
+
|
21
|
+
&.show .close-btn i
|
22
|
+
transform rotate(0)
|
23
|
+
|
24
|
+
.console-card-group
|
25
|
+
display flex
|
26
|
+
justify-content space-between
|
27
|
+
align-items center
|
28
|
+
margin 0 30px
|
29
|
+
transform translateY(20px)
|
30
|
+
transition .3s
|
31
|
+
max-width 1400px
|
32
|
+
|
33
|
+
+maxWidth1300()
|
34
|
+
justify-content center
|
35
|
+
|
36
|
+
+maxWidth768()
|
37
|
+
display none
|
38
|
+
|
39
|
+
+maxHeight800()
|
40
|
+
display none
|
41
|
+
|
42
|
+
&.show
|
43
|
+
.console-card-group
|
44
|
+
transform translateY(0)
|
45
|
+
opacity 1
|
46
|
+
transition-delay .1s
|
47
|
+
|
48
|
+
.console-card-group-left
|
49
|
+
margin-right .5rem
|
50
|
+
width 40%
|
51
|
+
height 100%
|
52
|
+
|
53
|
+
+maxWidth1300()
|
54
|
+
display none
|
55
|
+
|
56
|
+
.console-card-group-right
|
57
|
+
display flex
|
58
|
+
flex-direction column
|
59
|
+
justify-content center
|
60
|
+
height 100%
|
61
|
+
width 60%
|
62
|
+
overflow hidden
|
63
|
+
|
64
|
+
+maxWidth1300()
|
65
|
+
width 100%
|
66
|
+
margin 0
|
67
|
+
|
68
|
+
.console-card
|
69
|
+
background var(--sco-maskbg)
|
70
|
+
border-radius 12px
|
71
|
+
overflow hidden
|
72
|
+
border var(--style-border)
|
73
|
+
box-shadow var(--sco-shadow-border)
|
74
|
+
padding 40px
|
75
|
+
|
76
|
+
.console-card.tags
|
77
|
+
height calc(100% - 172px)
|
78
|
+
|
79
|
+
.console-mask
|
80
|
+
background var(--sco-maskbgdeep)
|
81
|
+
backdrop-filter saturate(180%) blur(20px)
|
82
|
+
-webkit-backdrop-filter blur(20px)
|
83
|
+
width 100vw
|
84
|
+
height 100vh
|
85
|
+
top 0
|
86
|
+
left 0
|
87
|
+
position absolute
|
88
|
+
z-index -1
|
89
|
+
-webkit-backface-visibility hidden
|
90
|
+
-webkit-transform-style preserve-3d
|
91
|
+
transform translateZ(0)
|
92
|
+
|
93
|
+
&.show
|
94
|
+
.console-mask
|
95
|
+
backdrop-filter saturate(180%) blur(20px)
|
96
|
+
-webkit-backdrop-filter blur(20px)
|
97
|
+
transform translateZ(0)
|
98
|
+
animation .6s ease 0s 1 normal none running to_show
|
99
|
+
|
100
|
+
.author-content-item-tips
|
101
|
+
opacity .8
|
102
|
+
font-size .6rem
|
103
|
+
margin-bottom .5rem
|
104
|
+
|
105
|
+
.author-content-item-title
|
106
|
+
font-size 36px
|
107
|
+
font-weight 700
|
108
|
+
line-height 1
|
109
|
+
|
110
|
+
.aside-list-item
|
111
|
+
.thumbnail
|
112
|
+
display flex
|
113
|
+
align-items center
|
114
|
+
|
115
|
+
&:hover
|
116
|
+
.thumbnail
|
117
|
+
color var(--sco-white)
|
118
|
+
|
119
|
+
.content
|
120
|
+
display flex
|
121
|
+
flex-direction column
|
122
|
+
height 100%
|
123
|
+
margin-top .5rem
|
124
|
+
|
125
|
+
.comment
|
126
|
+
-webkit-line-clamp 2
|
127
|
+
display -webkit-box
|
128
|
+
overflow hidden
|
129
|
+
-webkit-box-orient vertical
|
130
|
+
line-height 24px
|
131
|
+
font-size 14px
|
132
|
+
|
133
|
+
&::before
|
134
|
+
content ''
|
135
|
+
width 100%
|
136
|
+
height 100%
|
137
|
+
position absolute
|
138
|
+
top 0
|
139
|
+
left 0
|
140
|
+
|
141
|
+
&:hover
|
142
|
+
.comment
|
143
|
+
color var(--sco-white)
|
144
|
+
|
145
|
+
time
|
146
|
+
font-size 12px
|
147
|
+
color var(--sco-secondtext)
|
148
|
+
margin-top auto
|
149
|
+
|
150
|
+
&:hover
|
151
|
+
time
|
152
|
+
color var(--sco-white)
|
153
|
+
|
154
|
+
.aside-list
|
155
|
+
display flex
|
156
|
+
flex-wrap wrap
|
157
|
+
flex-direction row
|
158
|
+
justify-content space-between
|
159
|
+
margin-top 1.5rem
|
160
|
+
|
161
|
+
.button-group
|
162
|
+
display flex
|
163
|
+
margin 1rem auto 0 auto
|
164
|
+
justify-content center
|
165
|
+
width fit-content
|
166
|
+
|
167
|
+
.console-btn-item
|
168
|
+
width 60px
|
169
|
+
height 60px
|
170
|
+
transition .3s
|
171
|
+
cursor pointer
|
172
|
+
.button-group
|
173
|
+
.console-btn-item
|
174
|
+
&:not(:last-child)
|
175
|
+
margin-right .5rem
|
176
|
+
|
177
|
+
&:hover
|
178
|
+
a
|
179
|
+
background var(--sco-main)
|
180
|
+
|
181
|
+
a
|
182
|
+
width 100%
|
183
|
+
height 100%
|
184
|
+
background var(--sco-card-bg)
|
185
|
+
border var(--style-border)
|
186
|
+
border-radius 60px
|
187
|
+
display flex
|
188
|
+
align-items center
|
189
|
+
justify-content center
|
190
|
+
color var(--sco-fontcolor)
|
191
|
+
|
192
|
+
i
|
193
|
+
font-size 24px
|
194
|
+
|
195
|
+
&.on
|
196
|
+
a
|
197
|
+
background var(--sco-orange)
|
198
|
+
color var(--sco-white)
|
199
|
+
transition .3s
|
200
|
+
|
201
|
+
&:not(.on)
|
202
|
+
a:hover
|
203
|
+
background var(--sco-main) !important
|
204
|
+
|
205
|
+
&:hover
|
206
|
+
a
|
207
|
+
color var(--sco-white)
|
208
|
+
|
209
|
+
.console-card.tags
|
210
|
+
.card-tag-cloud
|
211
|
+
margin-top 1.5rem
|
212
|
+
display flex
|
213
|
+
flex-wrap wrap
|
214
|
+
|
215
|
+
a
|
216
|
+
color var(--sco-fontcolor) !important
|
217
|
+
margin 6px 4px
|
218
|
+
padding 2px 8px
|
219
|
+
border-radius 8px
|
220
|
+
background var(--sco-card-bg)
|
221
|
+
border var(--style-border)
|
222
|
+
font-size 14px !important
|
223
|
+
font-weight 700
|
224
|
+
|
225
|
+
&:hover
|
226
|
+
background var(--sco-main)
|
227
|
+
color var(--sco-white) !important
|
228
|
+
|
229
|
+
sup
|
230
|
+
opacity .6
|
231
|
+
|
232
|
+
.close-btn
|
233
|
+
width 100%
|
234
|
+
height 60px
|
235
|
+
position fixed
|
236
|
+
right max('calc((100% - 1400px) / 2)', someValue)
|
237
|
+
top 0
|
238
|
+
font-size 35px
|
239
|
+
color var(--sco-fontcolor)
|
240
|
+
cursor pointer
|
241
|
+
transition .3s
|
242
|
+
display flex
|
243
|
+
align-items center
|
244
|
+
justify-content center
|
245
|
+
max-width 1400px
|
246
|
+
|
247
|
+
i
|
248
|
+
font-size 32px
|
249
|
+
margin-right 1.5rem
|
250
|
+
margin-left auto
|
251
|
+
line-height 1
|
252
|
+
transform rotate(-30deg)
|
253
|
+
transition .6s
|
254
|
+
|
255
|
+
i:hover
|
256
|
+
color var(--sco-hovertext)
|
257
|
+
background var(--sco-main-op)
|
258
|
+
border-radius 32px
|
259
|
+
|
260
|
+
.console-card.history
|
261
|
+
margin-top 8px
|
262
|
+
padding 0
|
263
|
+
background 0 0
|
264
|
+
box-shadow none
|
265
|
+
border none
|
266
|
+
overflow hidden
|
267
|
+
border-radius 0
|
268
|
+
|
269
|
+
.item-headline
|
270
|
+
display none
|
271
|
+
|
272
|
+
.console-card.history
|
273
|
+
.card-archive-list
|
274
|
+
display flex
|
275
|
+
flex-direction row
|
276
|
+
justify-content space-between
|
277
|
+
flex-wrap wrap
|
278
|
+
height 164px
|
279
|
+
|
280
|
+
li.card-archive-list-item
|
281
|
+
flex 0 0 24%
|
282
|
+
|
283
|
+
.card-archive-list-link
|
284
|
+
border-radius 8px
|
285
|
+
margin-top 8px
|
286
|
+
display flex
|
287
|
+
flex-direction column
|
288
|
+
align-content space-between
|
289
|
+
border var(--style-border)
|
290
|
+
transition all .2s ease 0s
|
291
|
+
background var(--sco-maskbgdeep)
|
292
|
+
padding 8px 16px
|
293
|
+
|
294
|
+
&:hover
|
295
|
+
background var(--sco-main)
|
296
|
+
color var(--sco-white)
|
297
|
+
cursor pointer
|
298
|
+
|
299
|
+
#card-newest-comments
|
300
|
+
height 100%
|
301
|
+
|
302
|
+
.button-group
|
303
|
+
i
|
304
|
+
font-size 1rem
|
305
|
+
|
306
|
+
#consoleMusic
|
307
|
+
+maxWidth1300()
|
308
|
+
display none
|
309
|
+
|
310
|
+
+maxHeight800()
|
311
|
+
display none
|
312
|
+
|
313
|
+
#consoleCommentBarrage
|
314
|
+
+maxWidth1300()
|
315
|
+
display none
|
316
|
+
|
317
|
+
+maxHeight800()
|
318
|
+
display none
|
319
|
+
|
320
|
+
#consoleHideAside
|
321
|
+
+maxWidth768()
|
322
|
+
display none
|
323
|
+
|
324
|
+
#card-newest-comments
|
325
|
+
.aside-list-item
|
326
|
+
background: var(--sco-card-bg)
|
327
|
+
border-radius: 12px
|
328
|
+
border: var(--style-border)
|
329
|
+
padding: 12px 16px
|
330
|
+
width: 49%
|
331
|
+
display: flex
|
332
|
+
flex-direction: column
|
333
|
+
height: 150px
|
334
|
+
transition: .3s
|
335
|
+
position: relative
|
336
|
+
|
337
|
+
&:hover
|
338
|
+
background: var(--sco-main)
|
339
|
+
color: var(--sco-white)
|
340
|
+
|
341
|
+
&:not(:last-child)
|
342
|
+
margin-bottom: .5rem
|
343
|
+
|
344
|
+
.thumbnail img
|
345
|
+
width: 20px
|
346
|
+
height: 20px
|
347
|
+
margin-right: 8px
|
348
|
+
border-radius: 20px
|
349
|
+
|
350
|
+
.name
|
351
|
+
text-overflow: ellipsis
|
352
|
+
overflow: hidden
|
353
|
+
white-space: nowrap
|
354
|
+
font-weight: 700
|
@@ -0,0 +1,83 @@
|
|
1
|
+
#rightMenu
|
2
|
+
display none
|
3
|
+
position fixed
|
4
|
+
padding 0 .25rem
|
5
|
+
width 9rem
|
6
|
+
height fit-content
|
7
|
+
top 10%
|
8
|
+
left 10%
|
9
|
+
background-color var(--sco-maskbgdeep)
|
10
|
+
-webkit-backdrop-filter blur(20px)
|
11
|
+
backdrop-filter blur(20px)
|
12
|
+
transform translateZ(0)
|
13
|
+
color var(--sco-fontcolor)
|
14
|
+
border-radius 12px
|
15
|
+
z-index 99994
|
16
|
+
border var(--style-border)
|
17
|
+
user-select none
|
18
|
+
box-shadow var(--sco-shadow-black)
|
19
|
+
transition border .3s
|
20
|
+
|
21
|
+
#rightMenu:hover
|
22
|
+
border var(--style-border-hover)
|
23
|
+
box-shadow var(--sco-shadow-theme)
|
24
|
+
|
25
|
+
#rightMenu .rightMenu-group
|
26
|
+
padding .35rem .3rem
|
27
|
+
transition .3s
|
28
|
+
|
29
|
+
#rightMenu .rightMenu-line
|
30
|
+
border-top 1px dashed var(--sco-theme-op)
|
31
|
+
|
32
|
+
#rightMenu .rightMenu-group.rightMenu-small
|
33
|
+
display flex
|
34
|
+
justify-content space-between
|
35
|
+
|
36
|
+
#rightMenu .rightMenu-group .rightMenu-item
|
37
|
+
border-radius 8px
|
38
|
+
transition .3s
|
39
|
+
cursor pointer
|
40
|
+
|
41
|
+
#rightMenu .rightMenu-line .rightMenu-item
|
42
|
+
margin .25rem 0
|
43
|
+
padding .25rem 0
|
44
|
+
|
45
|
+
#rightMenu .rightMenu-group.rightMenu-line .rightMenu-item
|
46
|
+
display flex
|
47
|
+
|
48
|
+
#rightMenu .rightMenu-group .rightMenu-item:hover
|
49
|
+
background-color var(--sco-main)
|
50
|
+
color var(--sco-white)
|
51
|
+
box-shadow var(--sco-shadow-main)
|
52
|
+
|
53
|
+
#rightMenu .rightMenu-group .rightMenu-item i
|
54
|
+
display inline-block
|
55
|
+
text-align center
|
56
|
+
line-height 1.5rem
|
57
|
+
width 1.5rem
|
58
|
+
padding 0 .25rem
|
59
|
+
|
60
|
+
#rightMenu .rightMenu-line .rightMenu-item i
|
61
|
+
margin 0 .25rem
|
62
|
+
|
63
|
+
#rightMenu .rightMenu-group .rightMenu-item span
|
64
|
+
line-height 1.5rem
|
65
|
+
|
66
|
+
.rightMenu-small .rightMenu-item
|
67
|
+
width 30px
|
68
|
+
height 30px
|
69
|
+
line-height 30px
|
70
|
+
display flex
|
71
|
+
align-items center
|
72
|
+
justify-content center
|
73
|
+
|
74
|
+
#rightmenu-mask
|
75
|
+
position fixed
|
76
|
+
width 100vw
|
77
|
+
height 100vh
|
78
|
+
background 0 0
|
79
|
+
top 0
|
80
|
+
left 0
|
81
|
+
display none
|
82
|
+
margin 0 !important
|
83
|
+
z-index 99993
|