进一步打造自己的Blog。
一、搜索服务
安装 hexo-generator-searchdb
在站点的根目录下执行以下命令:
|
|
编辑主题配置文件_config.yml,新增以下内容到任意位置:
|
|
二、开启打赏功能
主题的_config.yml:
|
|
三、字体
全局字体:编辑 next/source/css/_variables/custom.styl,
|
|
四、背景图片
next/source/css/_custom/custom.styl文件:
|
|
五、背景颜色
定义颜色变量:themes/next/source/css/_variables/custom.styl
|
|
定义完后,其实body的背景已经换了。
头部背景色:
themes/next/source/css/_schemes/Mist/sidebar/_header.styl:
|
|
footer背景色:
|
|
六、代码风格
主题_config.yml:
|
|
七、内容宽度
themes/next/source/css/_variables/custom.styl
|
|
八、文章目录序号关闭
主题_config.yml:
|
|
九、无序列表
不喜欢空心的,我们换成实心的列表:
文章列表:
source/css/_common/components/post/post-expand.styl:
页面列表:
next/source/css/_custom/custom.styl:
|
|
参考:https://github.com/iissnan/hexo-theme-next/issues/559
十、文章访问次数
主题_config.yml:
|
|
十一、表格样式
这个背景色下面表格边界不太明显,我们修改为:
next/source/css/_variables/base.styl
|
|
十二、修改文章内链接文本样式
将链接文本设置为蓝色,鼠标划过时文字颜色加深,并显示下划线。
修改文件themes\next\source\css_common\components\post\post.styl,添加如下css样式:
|
|
选择.post-body是为了不影响标题,选择p是为了不影响首页“阅读全文”的显示样式。
十三、修改Pages链接文本样式
修改文件themes\next\source\css_common\components\post\post-expand.styl,添加如下css样式,: