修改hexo的主题next中的Pisces主题宽度 2020-03-10 | hexo | 字数统计: 102 在source/css/_schemes/Picses/_layout.styl文件末尾添加如下代码。 12345678910111213141516171819202122232425262728293031323334// 以下为新增代码!!header{ width: 80% !important; }header.post-header { width: auto !important;}.container .main-inner { width: 80%; }.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; }}