修改标题CSS样式

举例如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.post-body h3{
box-sizing: border-box;
font-family: FangSong;//字体设置为仿宋
font-style: italic; //字体样式设置为斜体
text-align: center;//字体居中
margin-top: 3em;
text-decoration:underline //字体下面设置线
// border-bottom: 1px solid #2f2f2f; //边框底部设置分界线
// content: '';
// width: 100px;
// display: block;
// margin: 0 auto;
// height: 1px;
}

修改点击各网页连接字体

举例子如下:

next 主题中 修改点击各个网页链接的字体 主要是确定CSS文件的位置

1
2
3
4
.posts-expand .post-title-link{
font-family : FangSong;
font-weight :bold; //字体加粗
}

Markdown 添加分割线

用连续的三个-

1
---

显示结果如果如下