Hexo Theme Aurora 主题图片居中显示的解决方案

random-pic-api

简介

记录一下如何将 hexo-theme-aurora 主题的博客图片居中显示

修改文件: node_modules/hexo-theme-aurora/source/static/css/a14e1a22.css:

1
2
3
4
5
6
7
.post-html img {
margin: auto;
cursor: zoom-in;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 0.15s;
}