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,392 @@
|
|
1
|
+
*
|
2
|
+
box-sizing border-box
|
3
|
+
|
4
|
+
html
|
5
|
+
line-height 1.15
|
6
|
+
-webkit-text-size-adjust 100%
|
7
|
+
text-size-adjust 100%
|
8
|
+
height: 100%;
|
9
|
+
font-size: 20px
|
10
|
+
overflow-y: overlay
|
11
|
+
|
12
|
+
main
|
13
|
+
display block
|
14
|
+
|
15
|
+
body
|
16
|
+
position relative
|
17
|
+
min-height 100%
|
18
|
+
background var(--sco-background)
|
19
|
+
color var(--sco-fontcolor)
|
20
|
+
font-size 16px
|
21
|
+
font-family "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"
|
22
|
+
line-height 2
|
23
|
+
-webkit-tap-highlight-color transparent
|
24
|
+
margin 0
|
25
|
+
|
26
|
+
::selection
|
27
|
+
background var(--sco-fontcolor)
|
28
|
+
color var(--sco-background)
|
29
|
+
|
30
|
+
i.scoicon
|
31
|
+
font-size 22px
|
32
|
+
line-height 1
|
33
|
+
|
34
|
+
svg.scoicon
|
35
|
+
width 1em
|
36
|
+
height 1em
|
37
|
+
vertical-align -0.15em
|
38
|
+
fill currentColor
|
39
|
+
overflow hidden
|
40
|
+
|
41
|
+
svg.scoicon.tab
|
42
|
+
width 1.5em
|
43
|
+
height 1.5em
|
44
|
+
vertical-align -0.15em
|
45
|
+
fill currentColor
|
46
|
+
overflow hidden
|
47
|
+
padding-right 5px
|
48
|
+
|
49
|
+
#page img
|
50
|
+
border-radius 12px
|
51
|
+
|
52
|
+
#page p a:not(.headerlink)
|
53
|
+
text-decoration none
|
54
|
+
border-bottom 2px solid var(--sco-lighttext)
|
55
|
+
color var(--sco-fontcolor)
|
56
|
+
font-weight 700
|
57
|
+
padding 0 4px
|
58
|
+
border-radius 4px 4px 0 0
|
59
|
+
|
60
|
+
#page p a:hover
|
61
|
+
text-decoration none
|
62
|
+
|
63
|
+
h1
|
64
|
+
font-size 2em
|
65
|
+
margin .67em 0
|
66
|
+
|
67
|
+
h1, h2, h3, h4, h5, h6
|
68
|
+
position relative
|
69
|
+
margin 1rem 0 .7rem
|
70
|
+
color var(--sco-fontcolor)
|
71
|
+
font-weight 700
|
72
|
+
|
73
|
+
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code
|
74
|
+
font-size inherit !important
|
75
|
+
|
76
|
+
hr
|
77
|
+
box-sizing content-box
|
78
|
+
height 0
|
79
|
+
overflow visible
|
80
|
+
display: none
|
81
|
+
|
82
|
+
pre
|
83
|
+
font-family monospace, monospace
|
84
|
+
|
85
|
+
a
|
86
|
+
color var(--sco-fontcolor)
|
87
|
+
text-decoration none
|
88
|
+
transition all .2s ease 0s
|
89
|
+
overflow-wrap break-word
|
90
|
+
-webkit-user-drag none
|
91
|
+
|
92
|
+
abbr[title]
|
93
|
+
border-bottom none
|
94
|
+
text-decoration underline dotted
|
95
|
+
|
96
|
+
b, strong
|
97
|
+
font-weight bolder
|
98
|
+
|
99
|
+
code, kbd, samp
|
100
|
+
font-family monospace, monospace
|
101
|
+
font-size 1em
|
102
|
+
|
103
|
+
small
|
104
|
+
font-size 80%
|
105
|
+
|
106
|
+
sub, sup
|
107
|
+
font-size 75%
|
108
|
+
line-height 0
|
109
|
+
position relative
|
110
|
+
vertical-align baseline
|
111
|
+
|
112
|
+
sub
|
113
|
+
bottom -.25em
|
114
|
+
|
115
|
+
sup
|
116
|
+
top -.5em
|
117
|
+
|
118
|
+
button, input, optgroup, select, textarea
|
119
|
+
font-family inherit
|
120
|
+
font-size 100%
|
121
|
+
line-height 1.15
|
122
|
+
margin 0
|
123
|
+
|
124
|
+
button, input
|
125
|
+
overflow visible
|
126
|
+
|
127
|
+
input::placeholder
|
128
|
+
color var(--sco-gray)!important
|
129
|
+
|
130
|
+
button, select
|
131
|
+
text-transform none
|
132
|
+
|
133
|
+
[type=button], [type=reset], [type=submit], button
|
134
|
+
appearance button
|
135
|
+
|
136
|
+
fieldset
|
137
|
+
padding .35em .75em .625em
|
138
|
+
|
139
|
+
legend
|
140
|
+
box-sizing border-box
|
141
|
+
color inherit
|
142
|
+
display table
|
143
|
+
max-width 100%
|
144
|
+
padding 0
|
145
|
+
white-space normal
|
146
|
+
|
147
|
+
progress
|
148
|
+
vertical-align baseline
|
149
|
+
|
150
|
+
textarea
|
151
|
+
overflow auto
|
152
|
+
|
153
|
+
[type=checkbox], [type=radio]
|
154
|
+
box-sizing border-box
|
155
|
+
padding 0
|
156
|
+
|
157
|
+
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button
|
158
|
+
height auto
|
159
|
+
|
160
|
+
[type=search]
|
161
|
+
appearance textfield
|
162
|
+
outline-offset -2px
|
163
|
+
|
164
|
+
[type=search]::-webkit-search-decoration
|
165
|
+
appearance none
|
166
|
+
|
167
|
+
input[type=checkbox] + label::before, input[type=radio] + label::before
|
168
|
+
content ''
|
169
|
+
display inline-block
|
170
|
+
width 16px
|
171
|
+
height 16px
|
172
|
+
border 1px solid #999
|
173
|
+
background-color #fff
|
174
|
+
margin-right 5px
|
175
|
+
vertical-align middle
|
176
|
+
|
177
|
+
::-webkit-file-upload-button
|
178
|
+
appearance button
|
179
|
+
font inherit
|
180
|
+
|
181
|
+
summary
|
182
|
+
display list-item
|
183
|
+
|
184
|
+
template
|
185
|
+
display none
|
186
|
+
|
187
|
+
[hidden]
|
188
|
+
display none
|
189
|
+
|
190
|
+
input::placeholder
|
191
|
+
color var(--sco-fontcolor)
|
192
|
+
|
193
|
+
.table-wrap
|
194
|
+
overflow-x scroll
|
195
|
+
margin 0 0 1rem
|
196
|
+
|
197
|
+
table
|
198
|
+
display table
|
199
|
+
width 100%
|
200
|
+
border-spacing 0
|
201
|
+
border-collapse collapse
|
202
|
+
empty-cells show
|
203
|
+
|
204
|
+
table thead
|
205
|
+
background rgba(153, 169, 191, .1)
|
206
|
+
|
207
|
+
table td, table th
|
208
|
+
padding .3rem .6rem
|
209
|
+
border 1px solid var(--light-grey)
|
210
|
+
vertical-align middle
|
211
|
+
|
212
|
+
::selection
|
213
|
+
background #0079ff
|
214
|
+
color #f7f7f7
|
215
|
+
|
216
|
+
button
|
217
|
+
padding 0
|
218
|
+
outline 0
|
219
|
+
border none
|
220
|
+
background 0 0
|
221
|
+
cursor pointer
|
222
|
+
|
223
|
+
a:hover
|
224
|
+
color var(--sco-lighttext)
|
225
|
+
|
226
|
+
img
|
227
|
+
max-width 100%
|
228
|
+
transition all .2s ease 0s;
|
229
|
+
border-style none
|
230
|
+
|
231
|
+
img:not([src]), img[src=""]
|
232
|
+
opacity 0
|
233
|
+
|
234
|
+
.img-alt
|
235
|
+
margin -.5rem 0 .5rem
|
236
|
+
color #858585
|
237
|
+
|
238
|
+
.img-alt:hover
|
239
|
+
text-decoration none !important
|
240
|
+
|
241
|
+
.is-center
|
242
|
+
text-align center
|
243
|
+
display flex
|
244
|
+
flex-wrap wrap
|
245
|
+
justify-content center
|
246
|
+
flex-direction row
|
247
|
+
align-items center
|
248
|
+
|
249
|
+
.copy-true
|
250
|
+
user-select all
|
251
|
+
|
252
|
+
.pull-left
|
253
|
+
float left
|
254
|
+
|
255
|
+
.pull-right
|
256
|
+
float right
|
257
|
+
|
258
|
+
.button--animated
|
259
|
+
position relative
|
260
|
+
z-index 1
|
261
|
+
transition color 1s ease 0s
|
262
|
+
|
263
|
+
.button--animated::before
|
264
|
+
position absolute
|
265
|
+
inset 0
|
266
|
+
z-index -1
|
267
|
+
background var(--btn-hover-color)
|
268
|
+
content ""
|
269
|
+
transition transform .5s ease-out 0s
|
270
|
+
transform scaleX(0)
|
271
|
+
transform-origin 0 50%
|
272
|
+
|
273
|
+
.button--animated:hover::before
|
274
|
+
transition-timing-function cubic-bezier(.45, 1.64, .47, .66)
|
275
|
+
transform scaleX(1)
|
276
|
+
|
277
|
+
blockquote
|
278
|
+
border-left .2rem solid #49b1f5
|
279
|
+
border: var(--style-border-always);
|
280
|
+
background-color: var(--sco-secondbg);
|
281
|
+
color: var(--sco-secondtext);
|
282
|
+
border-radius: 8px;
|
283
|
+
margin: 1rem 0;
|
284
|
+
padding: .5rem .8rem
|
285
|
+
|
286
|
+
.pullquote
|
287
|
+
position relative
|
288
|
+
max-width 45%
|
289
|
+
font-size 110%
|
290
|
+
|
291
|
+
.left
|
292
|
+
left 0
|
293
|
+
margin 1em .5em 0 0
|
294
|
+
|
295
|
+
.right
|
296
|
+
right 0
|
297
|
+
margin 1em 0 0 .5em
|
298
|
+
|
299
|
+
|
300
|
+
blockquote a
|
301
|
+
color var(--blockquote-color)
|
302
|
+
|
303
|
+
blockquote p
|
304
|
+
margin 0 !important
|
305
|
+
padding: 0
|
306
|
+
|
307
|
+
li, ul
|
308
|
+
list-style none
|
309
|
+
display block
|
310
|
+
margin 0
|
311
|
+
padding 0
|
312
|
+
|
313
|
+
.li-style
|
314
|
+
width 100%
|
315
|
+
height 25px
|
316
|
+
text-align center
|
317
|
+
|
318
|
+
.fireworks
|
319
|
+
position fixed
|
320
|
+
top 0
|
321
|
+
left 0
|
322
|
+
z-index 9999
|
323
|
+
pointer-events none
|
324
|
+
|
325
|
+
.katex-wrap
|
326
|
+
overflow auto
|
327
|
+
|
328
|
+
.katex-wrap::-webkit-scrollbar
|
329
|
+
display none
|
330
|
+
|
331
|
+
.video-container
|
332
|
+
position relative
|
333
|
+
overflow hidden
|
334
|
+
margin-bottom .8rem
|
335
|
+
padding-top 56.25%
|
336
|
+
height 0
|
337
|
+
|
338
|
+
.video-container iframe
|
339
|
+
position absolute
|
340
|
+
top 0
|
341
|
+
left 0
|
342
|
+
margin-top 0
|
343
|
+
width 100%
|
344
|
+
height 100%
|
345
|
+
|
346
|
+
::-webkit-scrollbar
|
347
|
+
width 6px
|
348
|
+
height 6px
|
349
|
+
|
350
|
+
::-webkit-scrollbar-thumb
|
351
|
+
background var(--sco-scrollbar)
|
352
|
+
border-radius 8px
|
353
|
+
cursor pointer
|
354
|
+
|
355
|
+
::-webkit-scrollbar-thumb:hover
|
356
|
+
background var(--sco-main)
|
357
|
+
opacity 1
|
358
|
+
display block !important
|
359
|
+
|
360
|
+
::-webkit-scrollbar-track
|
361
|
+
background-color var(--sco-none)
|
362
|
+
|
363
|
+
[data-theme=dark] img
|
364
|
+
filter brightness(1)
|
365
|
+
|
366
|
+
a.extend.next
|
367
|
+
right 0
|
368
|
+
|
369
|
+
a.extend.prev
|
370
|
+
left 0
|
371
|
+
|
372
|
+
.table-wrap
|
373
|
+
margin 1rem 0
|
374
|
+
border-radius 8px
|
375
|
+
|
376
|
+
table td, table th
|
377
|
+
border var(--style-border-always)
|
378
|
+
|
379
|
+
table thead
|
380
|
+
background var(--sco-secondbg)
|
381
|
+
|
382
|
+
b, strong
|
383
|
+
color var(--sco-lighttext)
|
384
|
+
|
385
|
+
h1, h2, h3, h4, h5, h6
|
386
|
+
margin-top 1rem
|
387
|
+
padding-top 0
|
388
|
+
padding-left 0 !important
|
389
|
+
font-weight 700
|
390
|
+
|
391
|
+
figure
|
392
|
+
margin-top .5rem !important
|
@@ -0,0 +1,359 @@
|
|
1
|
+
#footer
|
2
|
+
position: relative
|
3
|
+
background: linear-gradient(180deg, var(--sco-card-bg-none) 0, var(--sco-card-bg) 25%)
|
4
|
+
display: flex
|
5
|
+
flex-direction: column
|
6
|
+
margin-top: .5rem
|
7
|
+
|
8
|
+
&:before
|
9
|
+
position: absolute !important
|
10
|
+
width: 100% !important
|
11
|
+
height: 100% !important
|
12
|
+
content: '' !important
|
13
|
+
z-index: -1
|
14
|
+
|
15
|
+
#footer-wrap
|
16
|
+
position: relative
|
17
|
+
color: var(--sco-fontcolor)
|
18
|
+
display: flex
|
19
|
+
flex-wrap: wrap
|
20
|
+
justify-content: space-around
|
21
|
+
padding: 20px 50px 0 50px
|
22
|
+
text-align: left
|
23
|
+
max-width: 1200px
|
24
|
+
margin: 0 auto
|
25
|
+
margin-top: 1rem
|
26
|
+
|
27
|
+
a
|
28
|
+
padding: 4px 12px
|
29
|
+
border-radius: 5px
|
30
|
+
color: var(--sco-fontcolor)
|
31
|
+
height: 44px
|
32
|
+
line-height: 36px
|
33
|
+
|
34
|
+
&:hover
|
35
|
+
cursor: pointer
|
36
|
+
border-radius: 5px
|
37
|
+
color: var(--sco-hovertext)
|
38
|
+
background-color: var(--sco-none)
|
39
|
+
|
40
|
+
.footer-separator
|
41
|
+
margin: 0 .2rem
|
42
|
+
|
43
|
+
.icp-icon
|
44
|
+
padding: 0 4px
|
45
|
+
vertical-align: text-bottom
|
46
|
+
max-height: 1.4em
|
47
|
+
width: auto
|
48
|
+
|
49
|
+
h1
|
50
|
+
font-size: 1.5rem
|
51
|
+
margin: 0
|
52
|
+
|
53
|
+
h3
|
54
|
+
padding: 0 12px
|
55
|
+
|
56
|
+
p
|
57
|
+
margin: 0 0 0 .2rem
|
58
|
+
font-size: .8rem
|
59
|
+
opacity: .8
|
60
|
+
|
61
|
+
i
|
62
|
+
margin-right: .5rem
|
63
|
+
width: 22px
|
64
|
+
font-size: 18px
|
65
|
+
display: inline-block
|
66
|
+
|
67
|
+
#letlogo
|
68
|
+
display: flex
|
69
|
+
flex-direction: column
|
70
|
+
align-self: center
|
71
|
+
margin: auto 0
|
72
|
+
max-width: 200px
|
73
|
+
|
74
|
+
#letlink
|
75
|
+
display: flex
|
76
|
+
flex-direction: row
|
77
|
+
justify-content: space-around
|
78
|
+
margin: 0 0 1rem 0
|
79
|
+
|
80
|
+
.link_group
|
81
|
+
display: flex
|
82
|
+
flex-direction: column
|
83
|
+
margin-right: 20px
|
84
|
+
min-width: 180px
|
85
|
+
|
86
|
+
#weblogo i
|
87
|
+
font-size: 2rem
|
88
|
+
line-height: 2rem
|
89
|
+
letter-spacing: -10px
|
90
|
+
|
91
|
+
div#footer_deal
|
92
|
+
justify-content: center
|
93
|
+
display: flex
|
94
|
+
padding-top: 2rem
|
95
|
+
align-items: center
|
96
|
+
|
97
|
+
div#sco-footer-bar
|
98
|
+
display: none
|
99
|
+
|
100
|
+
a.footer-bar-link
|
101
|
+
padding: 4px 16px
|
102
|
+
background: var(--sco-secondbg)
|
103
|
+
border-radius: 20px
|
104
|
+
margin-top: 8px
|
105
|
+
font-size: 14px
|
106
|
+
cursor: pointer
|
107
|
+
border: var(--style-border-always)
|
108
|
+
|
109
|
+
&:hover
|
110
|
+
background: var(--sco-main)
|
111
|
+
color: var(--sco-white)
|
112
|
+
transform: scale(1.1)
|
113
|
+
border-color: var(--sco-main)
|
114
|
+
|
115
|
+
.footer-logo
|
116
|
+
font-size: 24px
|
117
|
+
|
118
|
+
.footer-bar-description
|
119
|
+
color: var(--sco-secondtext)
|
120
|
+
font-weight: 700
|
121
|
+
|
122
|
+
.post div#sco-footer-bar
|
123
|
+
display: flex
|
124
|
+
flex-direction: column
|
125
|
+
align-items: center
|
126
|
+
margin-top: 16px
|
127
|
+
|
128
|
+
#sco-footer
|
129
|
+
display: flex
|
130
|
+
flex-direction: row
|
131
|
+
width: 100%
|
132
|
+
max-width: 1200px
|
133
|
+
justify-content: space-between
|
134
|
+
flex-wrap: wrap
|
135
|
+
margin: 1rem auto 3rem
|
136
|
+
padding: 0 1rem
|
137
|
+
|
138
|
+
.footer-links
|
139
|
+
display: flex
|
140
|
+
flex-direction: column
|
141
|
+
|
142
|
+
.footer-item
|
143
|
+
font-size: .8rem
|
144
|
+
line-height: .8rem
|
145
|
+
color: var(--sco-fontcolor)
|
146
|
+
margin-right: auto
|
147
|
+
overflow: hidden
|
148
|
+
white-space: nowrap
|
149
|
+
text-overflow: ellipsis
|
150
|
+
max-width: 120px
|
151
|
+
cursor: pointer
|
152
|
+
padding: 8px
|
153
|
+
border-radius: 12px
|
154
|
+
|
155
|
+
&:hover
|
156
|
+
color: var(--sco-theme)
|
157
|
+
background: var(--sco-main-op-light)
|
158
|
+
|
159
|
+
.footer-group
|
160
|
+
min-width: 120px
|
161
|
+
|
162
|
+
.footer-title-group
|
163
|
+
display: flex
|
164
|
+
align-items: center
|
165
|
+
margin: 1rem 0 .7rem 0
|
166
|
+
|
167
|
+
a
|
168
|
+
margin-left: 8px
|
169
|
+
|
170
|
+
&:hover i
|
171
|
+
color: var(--sco-main)
|
172
|
+
opacity: 1
|
173
|
+
|
174
|
+
i
|
175
|
+
line-height: 1
|
176
|
+
color: var(--sco-secondtext)
|
177
|
+
transition: .3s
|
178
|
+
font-size: 16px
|
179
|
+
opacity: .6
|
180
|
+
|
181
|
+
.footer-title
|
182
|
+
margin 0
|
183
|
+
|
184
|
+
.footer-title
|
185
|
+
color: var(--sco-secondtext)
|
186
|
+
font-size: .8rem
|
187
|
+
margin-left: 8px !important
|
188
|
+
|
189
|
+
.random-friends-btn
|
190
|
+
display: flex
|
191
|
+
|
192
|
+
#footer-bar
|
193
|
+
padding: 1rem
|
194
|
+
color: var(--sco-fontcolor)
|
195
|
+
margin-top: 1rem
|
196
|
+
background: var(--sco-secondbg)
|
197
|
+
display: flex
|
198
|
+
overflow: hidden
|
199
|
+
z-index: 1002
|
200
|
+
transition: .3s
|
201
|
+
border-top: var(--style-border-always)
|
202
|
+
|
203
|
+
.footer-bar-links
|
204
|
+
display: flex
|
205
|
+
justify-content: space-between
|
206
|
+
max-width: 1400px
|
207
|
+
width: 100%
|
208
|
+
margin: 0 auto
|
209
|
+
flex-wrap: wrap
|
210
|
+
align-items: center
|
211
|
+
line-height: 1
|
212
|
+
|
213
|
+
.footer-bar-left
|
214
|
+
display: flex
|
215
|
+
flex-wrap: wrap
|
216
|
+
min-height: 32px
|
217
|
+
align-items: center
|
218
|
+
|
219
|
+
.footer-bar-link
|
220
|
+
margin-top: 8px
|
221
|
+
margin-bottom: 8px
|
222
|
+
margin-right: 1rem
|
223
|
+
color: var(--sco-fontcolor)
|
224
|
+
font-size: .8rem
|
225
|
+
font-weight: 700
|
226
|
+
white-space: nowrap
|
227
|
+
|
228
|
+
&:hover
|
229
|
+
color: var(--sco-theme)
|
230
|
+
|
231
|
+
.footer-bar-right
|
232
|
+
display: flex
|
233
|
+
flex-direction: row
|
234
|
+
flex-wrap: wrap
|
235
|
+
align-items: center
|
236
|
+
|
237
|
+
> div > div.footer-bar-left > span
|
238
|
+
margin-right: 1rem
|
239
|
+
|
240
|
+
#cookies-window
|
241
|
+
min-width: 300px
|
242
|
+
background: var(--sco-maskbgdeep)
|
243
|
+
color: var(--sco-fontcolor)
|
244
|
+
padding: 8px 16px
|
245
|
+
display: flex
|
246
|
+
flex-direction: column
|
247
|
+
bottom: 20px
|
248
|
+
right: 20px
|
249
|
+
position: fixed
|
250
|
+
border-radius: 12px
|
251
|
+
transition: .3s
|
252
|
+
z-index: 1002
|
253
|
+
user-select: none
|
254
|
+
backdrop-filter: saturate(180%) blur(20px)
|
255
|
+
-webkit-backdrop-filter: saturate(180%) blur(20px)
|
256
|
+
transform: translateZ(0)
|
257
|
+
border: var(--style-border)
|
258
|
+
animation: barrageIn .6s cubic-bezier(.42, 0, .3, 1.11)
|
259
|
+
|
260
|
+
&.cw-hide
|
261
|
+
opacity: 0
|
262
|
+
animation: barrageOut .6s cubic-bezier(.42, 0, .3, 1.11)
|
263
|
+
z-index: -1
|
264
|
+
|
265
|
+
.cookies-window-title
|
266
|
+
padding-bottom: 4px
|
267
|
+
border-bottom: var(--style-border)
|
268
|
+
font-size: 12px
|
269
|
+
font-weight: 700
|
270
|
+
|
271
|
+
.cookies-window-content
|
272
|
+
font-size: 14px
|
273
|
+
display: flex
|
274
|
+
justify-content: space-around
|
275
|
+
align-items: center
|
276
|
+
|
277
|
+
.cookie-to
|
278
|
+
margin-right: 4px
|
279
|
+
font-weight: 700
|
280
|
+
|
281
|
+
.cookies-link
|
282
|
+
margin-left: auto
|
283
|
+
font-size: 16px
|
284
|
+
|
285
|
+
.cookies-link i.scoicon
|
286
|
+
font-size: 16px
|
287
|
+
|
288
|
+
a.deal_link
|
289
|
+
display: flex
|
290
|
+
margin: 1rem 27px
|
291
|
+
color: var(--sco-card-bg)
|
292
|
+
border-radius: 3rem
|
293
|
+
width: 32px
|
294
|
+
height: 32px
|
295
|
+
background: var(--sco-fontcolor)
|
296
|
+
justify-content: center
|
297
|
+
align-items: center
|
298
|
+
transition: .3s
|
299
|
+
|
300
|
+
&:hover
|
301
|
+
color: var(--sco-white)
|
302
|
+
background: var(--sco-main)
|
303
|
+
transform: scale(1.1)
|
304
|
+
|
305
|
+
blockquote footer
|
306
|
+
padding: 0 0 .5rem
|
307
|
+
|
308
|
+
blockquote footer cite::before
|
309
|
+
padding: 0 .3em
|
310
|
+
content: "—"
|
311
|
+
|
312
|
+
img.footer_mini_logo
|
313
|
+
width: 50px
|
314
|
+
height: 50px
|
315
|
+
margin: 0 1rem
|
316
|
+
cursor: pointer
|
317
|
+
transition: cubic-bezier(0, 0, 0, 1.29) .5s
|
318
|
+
-webkit-user-select: none
|
319
|
+
border-radius: 50px
|
320
|
+
|
321
|
+
&:hover
|
322
|
+
-webkit-backface-visibility: hidden
|
323
|
+
-webkit-transform-style: preserve-3d
|
324
|
+
transform: scale(1.2)
|
325
|
+
|
326
|
+
#footer_deal i
|
327
|
+
font-size: .9rem
|
328
|
+
line-height: .9rem
|
329
|
+
height: .9rem
|
330
|
+
|
331
|
+
@media screen and (max-width: 768px)
|
332
|
+
img.footer_mini_logo
|
333
|
+
display: none
|
334
|
+
|
335
|
+
div#footer_deal
|
336
|
+
flex-wrap: wrap
|
337
|
+
flex-direction: row
|
338
|
+
|
339
|
+
#footer
|
340
|
+
background: linear-gradient(180deg, var(--sco-background) 0, var(--sco-card-bg) 25%)
|
341
|
+
margin-top: 0
|
342
|
+
z-index: 999
|
343
|
+
|
344
|
+
#letlink
|
345
|
+
flex-direction: column !important
|
346
|
+
text-align: center !important
|
347
|
+
|
348
|
+
#letlogo
|
349
|
+
display: none !important
|
350
|
+
|
351
|
+
#footer-wrap
|
352
|
+
margin-top: 1rem !important
|
353
|
+
|
354
|
+
@media screen and (max-width: 1300px)
|
355
|
+
#cookies-window
|
356
|
+
display: none
|
357
|
+
|
358
|
+
[data-theme=dark] #sco-footer .footer-item:hover
|
359
|
+
background: var(--sco-theme-op)
|