修改nexT Pisces主题内容区宽度
问题
默认的宽度觉得有点窄,想改宽一点
方法
在官网的指引下找到了方案
在测试后发现布局乱了,蓝瘦。。。
测试版本为,hexo:v3.3.8,hexo-theme-next:v5.1.2
上面的方案如下:
1 2 3 4 5 6
|
header{ width: 90%; } .container .main-inner { width: 90%; } .content-wrap { width: calc(100% - 260px); }
|
改进方法
没办法,手动修改样式。。。
以下代码受上面方案启发,经过试验,在source/css/_schemes/Picses/_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
|
$white_max_width = 1200px
header{ width: 90% !important; max-width: $white_max_width; } header.post-header { width: auto !important; } .container .main-inner { width: 90%; max-width: $white_max_width; } .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() { padding: 0 !important; width: 100% !important; } }
|
修改样式后,需要 hexo clean 后再部署才会生效
结束
Till I reach the end, then I’ll start again
《Try Everything》