/* 设置全站字体 /
body {
font-family: ‘Arial’, sans-serif; / 设置字体类型 /
font-size: 16px; / 设置全站字体大小 /
line-height: 1.5; / 设置行高 /
color: #333; / 设置字体颜色 */
}
/* 设置帖子标题字体 /
.Post-title {
font-family: ‘Verdana’, sans-serif; / 设置标题字体 /
font-size: 20px; / 设置标题字体大小 /
font-weight: bold; / 设置标题为加粗 /
color: #1a73e8; / 设置标题字体颜色 */
}
/* 设置帖子正文内容的字体 /
.Post-body {
font-family: ‘Georgia’, serif; / 设置正文字体 /
font-size: 18px; / 设置正文字体大小 /
line-height: 1.6; / 设置正文行高 /
color: #444; / 设置正文字体颜色 */
}
/* 设置分页文字的字体 */
.pagination a {
font-family: ‘Tahoma’, sans-serif;
font-size: 14px;
color: #666;
}
/* 设置用户信息字体 */
.UserCard {
font-family: ‘Segoe UI’, sans-serif;
font-size: 15px;
color: #555;
}
/* 设置导航栏字体 */
.navbar {
font-family: ‘Roboto’, sans-serif;
font-size: 16px;
color: #fff;
}