Hexo博客Next主题-首页文章摘要添加边框

\hexo\node_modules\hexo-theme-next\source\css\_common\components\post\index.styl​,在该文件中搜索.post-block​,修改如下:

1
2
3
4
5
6
7
8
9
10
11
.use-motion {
if (hexo-config('motion.transition.post_block')) {
.post-block, {
padding: 25px;
-webkit-box-shadow: 0 0 5px rgba(202, 203, 203, 0.5);
-moz-box-shadow: 0 0 5px rgba(202, 203, 204, 0.5);
}
.pagination, .comments {
visibility: hidden;
}
}

修改后显示效果如下: