杂项
列表优化
css
/* 优化 ul>li 列表显示效果(styl里直接删除即可) */
.container.post-content ul > li {
list-style-type: disc;
}标题图标旋转
配合风车标题图标很好看
css
/* 标题图标旋转 */
.container.post-content h1:before,
h2:before,
h3:before,
h4:before,
h5:before,
h6:before {
animation: avatar_turn_around 1s linear infinite;
}css
#content-inner, #footer {
animation: 1s ease 0s 1 normal none running bottom-top;
}