0%

next-主题配置

有趣的技术

一,基本配置

http://theme-next.iissnan.com/getting-started.html

https://mercer5.github.io/2020/04/08/next%E4%B8%BB%E9%A2%98%E9%85%8D%E7%BD%AE/

二,个性化配置

http://home.ustc.edu.cn/~liujunyan/blog/hexo-next-theme-config/

https://uchuhimo.me/2017/04/11/genesis/

更换网站图标

https://blog.csdn.net/Calvin_zhou/article/details/110517826

设置圆角

https://cs-cshi.github.io/hexo-blog/Hexo-NexT%20%E8%AE%BE%E7%BD%AE%E5%9C%86%E8%A7%92/

更换背景

https://sqmwin.github.io/2017/12/31/next-background-image/

https://blog.csdn.net/weixin_45877759/article/details/107005112

注意真正的位置!

更改博客透明度

https://tding.top/archives/761b6f4d.html

开启动画

https://tding.top/archives/dfac1e9c.html

折叠代码

http://tksy_1_xfgao.gitee.io/xfgblog/2022/07/02/20220702%E6%8A%98%E5%8F%A0%E4%BB%A3%E7%A0%81hexo/

https://www.toimc.com/hexo-usage-2/

给文章设置密码

https://mrlichangming.github.io/2018/10/05/hexo-Next%E4%B8%BB%E9%A1%8C%E7%BB%99%E6%96%87%E7%AB%A0%E5%8A%A0%E5%AF%86/

点击鼠标出现爱心

https://guanqr.com/tech/website/hexo-theme-next-customization/#%E6%B7%BB%E5%8A%A0%E7%82%B9%E5%87%BB%E7%88%B1%E5%BF%83%E7%89%B9%E6%95%88

配置友链格式1

https://guanqr.com/tech/website/hexo-theme-next-customization/#%E6%B7%BB%E5%8A%A0%E5%8F%8B%E6%83%85%E9%93%BE%E6%8E%A5%E9%A1%B5%E9%9D%A2

配置友链格式2

\1. 使用 hexo new page links 建立一个页面。这将会创建 source/links/index.md

\2. 打开 source/links 目录,把 index.md 文件替换成我这个(在附件中),可以按你的喜好修改。

\3. 接下来把附件中剩余三个文件也复制进这个 links 文件夹。其中,link.js.txt 要重命名去掉 .txt 后缀(邮件不让传js格式的附件)。其中 linklist.json 是友链的数据库

\4. 修改主题配置文件,在 sidebar 里面把 links 那一行前面的注释去掉(为了侧边栏显示友链按钮)

\5. 现在重新生成一下博客应该就能看到效果了。注:有些样式依赖于 NexT 主题,所以这个配置方法在不同博客上可能有差异,并不通用。比如,主题配置文件中 note – style 也会影响样式(我选的 flat)

文件一:linklist.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
{
"name": "flamiec",
"site": "https://www.flamiec.cn/",
"avatar": "https://liuliutuku.oss-cn-hangzhou.aliyuncs.com/tupian0/微信截图_20230114224609.png"
},
{
"name": "小丁的个人博客",
"site": "https://tding.top/",
"avatar": "https://tding.top/images/avatar.webp"
},
{
"name": "Kevin's Blog",
"site": "https://www.kevinly.com.cn/",
"avatar": "https://liuliutuku.oss-cn-hangzhou.aliyuncs.com/tupian0/微信截图_20230114224540.png",
"desc": "just so so"
}
]

文件二:link.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 随机排列
function shuffle(arr) {
let i = arr.length;
while (i) {
let j = Math.floor(Math.random() * i--);
[arr[j], arr[i]] = [arr[i], arr[j]];
}
}

// 渲染数据
function renderlink(data) {
var name, avatar, site, li = "";
shuffle(data);
for (var i = 0; i < data.length; i++) {
name = data[i].name;
avatar = data[i].avatar;
site = data[i].site;
li += '<div class="card">' + '<a href="' + site + '" target="_blank">' + '<div class="thumb" style="background: url( ' + avatar + ');">' + '</div>' + '</a>' + '<div class="card-header">' + '<div><a href="' + site + '" target="_blank">' + name + '</a></div>' + '</div>' + '</div>';
}
document.querySelector(".link-navigation").innerHTML = li;
}

// 获取 json 文件
fetch('/links/linklist.json')
.then(response => response.json())
.then(res => renderlink(res));

文件三:link.css

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.links-content {
margin-top: 1rem
}

.link-navigation::after {
content: " ";
display: block;
clear: both
}

.card {
width: 130px;
font-size: 1rem;
padding: 0;
border-radius: 4px;
transition-duration: .15s;
margin-bottom: 1rem;
display: block;
float: left;
box-shadow: 0 2px 6px 0 rgba(0,0,0,.12);
background: #f5f5f5
}

.card {
margin-left: 16px
}

@media(max-width:567px) {
.card {
margin-left: 16px;
width: calc((100% - 16px)/2)
}

.card:nth-child(2n+1) {
margin-left: 0
}

.card:not(:nth-child(2n+1)) {
margin-left: 16px
}
}

@media(min-width:567px) {
.card {
margin-left: 16px;
width: calc((100% - 32px)/3)
}

.card:nth-child(3n+1) {
margin-left: 0
}

.card:not(:nth-child(3n+1)) {
margin-left: 16px
}
}

@media(min-width:768px) {
.card {
margin-left: 16px;
width: calc((100% - 48px)/4)
}

.card:nth-child(4n+1) {
margin-left: 0
}

.card:not(:nth-child(4n+1)) {
margin-left: 16px
}
}

@media(min-width:1200px) {
.card {
margin-left: 16px;
width: calc((100% - 64px)/5)
}

.card:nth-child(5n+1) {
margin-left: 0
}

.card:not(:nth-child(5n+1)) {
margin-left: 16px
}
}

.card:hover {
transform: scale(1.1);
box-shadow: 0 2px 6px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04)
}

.card .thumb {
width: 100%;
height: 0;
padding-bottom: 100%;
background-size: 100% 100%!important
}

.posts-expand .post-body img {
margin: 0;
padding: 0;
border: 0
}

.card .card-header {
display: block;
text-align: center;
padding: 1rem .25rem;
font-weight: 500;
color: #333;
white-space: normal
}

.card .card-header a {
font-style: normal;
color: #2bbc8a;
font-weight: 700;
font-size: 95%;
text-decoration: none;
border: 0
}

.card .card-header a:hover {
color: #d480aa;
text-decoration: none;
border: 0
}

文件四:index.md

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
title: 友情链接
type: links
toc:
enable: false
---

<link rel="stylesheet" href="/links/link.css">
<script data-pjax src="./link.js" type="text/javascript"></script>


{% note default %}

排名不分先后,每次刷新会随机排列。

{% endnote %}


<div>
<div class="links-content">
<div class="link-navigation" id="links1"></div>
</div>
</div>

------

<div style="text-align:center;">
<span class="with-love" id="animate1"><i class="fa fa-heart"></i></span>
留言互换友链 ヽ( ̄ω ̄( ̄ω ̄〃)ゝ
<span class="with-love" id="animate2"><i class="fa fa-heart"></i></span>
</div>

------

{% note info %}
## 申请要求
1. 内容持续更新且可以稳定访问
2. 页面整洁无繁杂广告推广
{% endnote %}


{% note success %}
## 友链格式

- 名称:Hui-Shao's Blog
- 网址:[https://hui-shao.cn](https://hui-shao.cn)
- 头像:[https://hui-shao.cn/images/avatar.jpg](https://hui-shao.cn/images/avatar.jpg)
- 简介:Just do it.

{% endnote %}


可以下现成的styles.styl文件,且很干净的博客

https://blog.shipengx.com

设置下雪花背景

https://hui-shao.cn/tags/Hexo/

设置支持数学公式:

https://blog.csdn.net/ssjdoudou/article/details/103318019?spm=1001.2101.3001.6650.7&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ERate-7-103318019-blog-115798563.pc_relevant_multi_platform_whitelistv3&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ERate-7-103318019-blog-115798563.pc_relevant_multi_platform_whitelistv3&utm_relevant_index=12

next-mist主题快捷配置:

修改目录 D:\系统基本存储1\myblog\themes\next\source\css_schemes\Muse 里面的**_layout.styl**文件,在最后面加:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
////////////
////////////
////////////
// 设置外链:鼠标划过时改变字体及下划线(若有的话)颜色
a:hover, span.exturl:hover {
border-bottom-color: rgb(79, 148, 205) !important;
color: rgb(79, 148, 205) !important;
}

// 侧边栏按钮样式
.sidebar-toggle {
right: 30px !important;
left: auto !important;
bottom: 80px;
background-color: rgba(79, 148, 205, 0.75); // SteelBlue3,可以在https://tool.oschina.net/commons?type=3选取自己喜欢的颜色
border-radius: 5px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
position: fixed;
z-index: 9001;
}
.page-post-detail .sidebar-toggle-line {
background: rgb(0, 255, 255);
position: fixed;
z-index: 9001;
}

// 返回顶部按钮样式
.back-to-top {
background: none;
bottom: -100px;
box-sizing: border-box;
color: rgba(79, 148, 205, 0.75);
cursor: pointer;
font-size: 16px;
right: 30px !important;
left: auto !important;
opacity: 1;
padding: 0;
position: fixed;
text-align: center;
transition-property: bottom;
z-index: 1300;
transition-delay: 0s;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
width: 24px;
}
.back-to-top.back-to-top-on {
bottom: 30px;
}

// 设置滚动条样式
// 参考https://segmentfault.com/a/1190000003708894
::-webkit-scrollbar {
width: 10px;
height: 5px;
}
// 滚动槽
::-webkit-scrollbar-track {
background: rgb(220,220,220);
}
// 滚动条滑块
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #999;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgb(79, 148, 205);
}

// 以下为页面主体设置
// 页面背景色
body {
background-color: #eeeff0
}
// 页面圆角阴影背景色
.post-block {
background: #fff;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
border-radius: 0.5rem;
padding: 0;
}
// 调整页面上端间距
.content {
padding-top: 60px;
}
.posts-expand {
padding-top: 0px;
}
// 文章标题
.posts-expand .post-title {
color: #333;
font-weight: 700;
line-height: 1.7;
padding: 45px 20px 12px;
margin: 0;
text-align: center;
}
// 文章信息
.posts-expand .post-meta {
margin: 0;
color: #999;
font-size: 12px;
background-color: #f5f5f5;
text-align: center;
}
// 文章主体
.post-body {
padding: 20px 64px 20px 64px;
}
// 版权声明
.post-copyright {
margin: -24px 0px 0px 0px;
}
// 推荐文章
.popular-posts-header {
margin: 40px 10px 10px 10px;
}
// 文章底部tags
.posts-expand .post-tags {
text-align: center;
}
.posts-expand .post-tags a {
border-bottom: none;
font-size: 13px;
padding: 0px 5px;
border-radius: 3px;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
transition-delay: 0s;
text-align: center;
}
// 页面下端页面跳转
.post-nav {
margin: 0;
padding: 0 0 10px 0;
}

// 主页分割线
.post-eof {
height: 0px;
margin: 10px;
}
// 主页文章标题
.posts-expand .post-title-link {
color: #333;
}
.posts-expand .post-title-link:hover {
color: rgb(79, 148, 205);
}
.posts-expand .home .post-title {
text-align: center;
}
// 主页标题下划线
.posts-expand .post-title-link:hover::before {
background-color: rgb(79, 148, 205);
}
// 主页信息
.posts-expand .home .post-meta {
text-align: center;
}
// 主页文章间距
.posts-expand .post-block:not(:first-child) {
margin-top: 60px;
}
// 修复推荐文章标题显示
.post-body .note.primary h4 {
border-left: none;
}
//// readmore按钮
.post-button {
margin-top: 15px;
text-align: center;
}
//.post-button .btn {
// color: #555 !important;
// background-color: rgb(255, 255, 255);
// border-radius: 3px;
// font-size: 15px;
// box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
// border: none !important;
// transition-property: unset;
// padding: 0px 15px;
//}
//.post-button .btn:hover {
// color: rgb(255, 255, 255) !important;
// background-color: rgb(79, 148, 205);
// border-radius: 3px;
// font-size: 15px;
// box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
// background-image: none;
//}

// [Read More]按钮样式
.post-button .btn {
color: #555 !important;
background-color: rgb(255, 255, 255);
border-radius: 3px;
font-size: 15px;
box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
border: none !important;
transition-property: unset;
padding: 0px 15px;
}

.post-button .btn:hover {
color: rgb(255, 255, 255) !important;
border-radius: 3px;
font-size: 15px;
box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
background-image: linear-gradient(90deg, #a166ab 0%, #ef4e7b 25%, #f37055 50%, #ef4e7b 75%, #a166ab 100%);
}

// 文章底部页面跳转
.post-nav-item a {
color: rgb(0, 0, 0);
}
.post-nav-item a:hover {
color: rgb(79, 148, 205);
}
// 分割线样式
.post-body hr {
height: 1px;
border: none;
background-image: none;
background-color: #666;
text-align: center;
}
// 文章```代码块顶部样式
.highlight figcaption {
font-family: Source Code Pro, consolas, EB Garamond, Noto Serif SC, sans-serif;
font-size: 14px;
text-align: left;
}
// 文章``代码块的自定义样式
code {
margin: 0px 4px;
font-size: 80%;
}
// 文章```代码块diff样式
pre .addition {
background: #dfd !important;
}
pre .deletion {
background: #fdd;
}
// 页面底部页码
.pagination {
border: none;
margin-top: 60px;
text-align: center;
border-radius: 100%;
background: none !important;
box-shadow: none !important;
}
.pagination .prev:hover, .pagination .next:hover, .pagination .page-number:hover, .pagination .page-number.current {
color: #fff !important;
background: rgb(79, 148, 205);
text-align: center;
border-radius: 100%;
}
.pagination .prev, .pagination .next, .pagination .page-number {
display: inline-block;
margin: 0 8px;
width: 20px;
height: 40px;
line-height: 2.5;
border: 0;
border-radius: 100%;
transition-property: background;
text-align: center;
}
.pagination .space {
color: #222;
}

// 标签页设定
.tag-cloud a:hover{
color: rgb(79, 148, 205) !important;
}

// 归档页设定
.posts-collapse {
margin-left: 0;
background-color: #fff;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
border-radius: 0.5rem;
padding: 48px 64px 32px 64px;
}
// 去除小圆点
.posts-collapse {
.collection-year::before {
display: none;
}
.collection-title::before {
display: none;
}
}
// 消除左侧竖线
.posts-collapse::before {
display: none;
}
// 时间轴写作时间
.posts-collapse .post-meta:hover::before {
font-size: 1em;
background-color: rgb(79, 148, 205);
}
.collection-year {
font-size: 1em;
.collection-header {
margin: 0;
text-align: left !important;
}
}
// 时间轴文章标题左边圆点颜色
.posts-collapse .post-header:hover::before {
background-color: rgb(79, 148, 205);
}
// 时间轴文章标题
.posts-collapse .post-title a {
color: rgb(0, 0, 0);
font-size: 1em;
position: relative;
}
.posts-collapse .post-title a:hover {
color: rgb(79, 148, 205);
}
// 时间轴文章标题底部虚线
.posts-collapse .post-header:hover {
border-bottom-color: rgb(79, 148, 205);
}
// 年份
.posts-collapse .collection-year {
margin-bottom: 0px;
margin-top: 32px;
}
// tags 页面分类
.posts-collapse .collection-header {
margin: 0;
text-align: center;
}

// 本地搜索框
.search-popup .search-icon, .search-popup .popup-btn-close {
color: rgb(79,148,255);
}

// 调整最大字体
@media (min-width: 1200px) {
.post-body {
font-size: 1em;
}
}

//选中文字样式
::selection {
background-color: rgb(79, 148, 205);
color: rgb(255, 255, 255);
}
.highlight *::selection {
background-color: rgb(79, 148, 205);
color: rgb(255, 255, 255);
}



// 字体修改
h1, h2, h3, h4, h5, h6 {
font-family: 'Cinzel Decorative','EB Garamond', "Noto Serif SC", sans-serif;
}
body {
font-family: 'EB Garamond', "Noto Serif SC", sans-serif;
}
.post-body {
font-family: 'EB Garamond', "Noto Serif SC", sans-serif;
color: #333; // 页面字体加粗
}
.posts-expand .post-meta {
font-family: 'EB Garamond', "Noto Serif SC", sans-serif;
}
pre, code {
font-family: 'Source Code Pro', consolas, Menlo, monospace;
}
.site-title {
font-family: 'Ma Shan Zheng', 'Cinzel Decorative', 'EB Garamond', "Noto Serif SC", sans-serif;
font-weight: bold;
}
blockquote {
font-family: 'EB Garamond', 'STKaiti', 'KaiTi', 'SimKai', 'Noto Serif SC', 'sans-serif';
}

// 站顶设置
// 注意,这里webkit-backdrop-filter前有一条横线,不同的浏览器将选择性地使用-webkit-backdrop-filter属性或backdrop-filter
// 背景模糊效果移动端支持似乎不好,需要将背景透明度关掉
// 背景模糊效果对搜索功能有影响
.header {
-webkit-backdrop-filter: saturate(180%) blur(1em);
//backdrop-filter: saturate(180%) blur(1em);
//background: linear-gradient(90deg, rgba(247,149,51,0.101961) 0, rgba(243,112,85,0.101961) 15%, rgba(239,78,123,0.101961) 30%, rgba(161,102,171,0.101961) 44%, rgba(80,115,184,0.101961) 58%, rgba(16,152,173,0.101961) 72%, rgba(7,179,155,0.101961) 86%, rgba(109,186,130,0.101961) 100%);
position:fixed;
z-index: 1;
top:0px;
width:100%;
}
.content {
padding: 120px 24px 0 24px;
}

// 进度条
.reading-progress-bar {
position:fixed;
z-index: 9001;
}

// 站点名横线设置
.brand:hover {
.logo-line-before i, .logo-line-after i {
background: rgb(79, 148, 205) !important;
}
}

// 设置menu
.menu .menu-item a {
font-weight: bold;
}
.menu-item-active a, .menu .menu-item a:hover, .menu .menu-item span.exturl:hover{
background: #ddd;
font-weight: bold;
background-color: rgb(79, 148, 205);
color: #fff !important;
}
.menu .menu-item .badge {
display: none !important;
}



// 设置图片阴影
.post-body iframe, .post-body img, .post-body video {
margin-top: 20px;
margin-bottom: 20px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}



// 以下为移动端样式
// 移动端左上角菜单按钮
.site-nav-toggle {
top: 35px;
left: 10px;
}
.btn-bar {
background-color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
.menu {
text-align: center;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
padding: 10px 10px 10px 10px;
}
.site-nav {
top: initial;
background-color: rgba(255, 255, 255, 0.75);
border-top: none;
border-bottom: none;
position: relative;
z-index: 1024;
}

}
// 移动端顶部
@media (max-width: 767px) {
.site-subtitle{
letter-spacing: 0px !important;
padding-bottom: 0px !important;
}
.menu .menu-item {
margin: 0px 10px !important;
}
.header {
background: linear-gradient(90deg, rgba(247,149,51,1) 0, rgba(243,112,85,1) 15%, rgba(239,78,123,1) 30%, rgba(161,102,171,1) 44%, rgba(80,115,184,1) 58%, rgba(16,152,173,1) 72%, rgba(7,179,155,1) 86%, rgba(109,186,130,1) 100%);
}
}
// 移动端样式
@media (max-width: 767px) {
// 归档页
.posts-collapse {
padding: 16px 15px 8px 15px;
margin: 0;
.post-title a {
font-size: 1em;
text-align: center !important;
}
.post-meta {
font-size: 1em;
}
}
// 消除页边空白
.posts-expand {
margin: 0px;
}
.post-body {
padding: 20px 15px;
}
.posts-expand .post-title {
padding: 45px 15px 12px;
text-align: center !important;
}
.content{
padding-top: 100px;
padding-left: 0;
padding-right: 0;
}
// 页面下部空白
.main-inner {
padding-bottom: 35px;
}
// 页码
.pagination {
margin-top: 48px;
}
// 文章标题
.posts-expand .post-title {
font-size: 24px;
text-align: center !important;
}
// 字体大小
.post-body {
font-size: 16px !important;
}
.post-copyright {
font-size: 14px;
}

}

如何让next主题的mist风格的主页显示的文章块里的[阅读全文]按钮居中对齐:

选择themes\next\source\css_schemes\Mist_posts-expand.styl,

解决next主题mist文本不居中

https://blog.csdn.net/weixin_42631693/article/details/105092942