Hexo修改默认显示宽度

背景

在我们安装完next主题后,默认的界面宽度比较窄。这时可以选择手动修改样式,增加默认显示宽度。

步骤

1.首先在next主题的_config文件上查看Schemes对应的是哪个主题。

2.打开themes\next\source\css_schemes\Gemini\index.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
header{ width: 90% !important; }
header.post-header {
width: auto !important;
}
.container .main-inner { width: 90%; }
.content-wrap { width: calc(100% - 260px); }

.header {
+tablet() {
width: auto !important;
}
+mobile() {
width: auto !important;
}
}

.container .main-inner {
+tablet() {
width: auto !important;
}
+mobile() {
width: auto !important;
}
}

.content-wrap {
+tablet() {
width: 100% !important;
}
+mobile() {
width: 100% !important;
}
}

3.上面两步完成后,hexo clean,hexo g,hexo d。刷新界面即可。

坚持原创,您的支持是继续创作的动力!
0%