kaf-cli icon indicating copy to clipboard operation
kaf-cli copied to clipboard

建议章节序号和标题使用不同的样式

Open 1nkwell opened this issue 4 months ago • 1 comments

原来样式章节序号和标题一样大小并排显示,不太优雅,也不方便阅读。

建议章节序号和标题使用不同的样式,突出显示标题。像这样:

Image

上图用的css如下

body {
  margin: 0 3%;
}
p {
  font-family: "寒蝉端黑宋";
  text-indent: 2em;
  line-height: 1.25;
  margin: 0.5em 0;
}
h2 {
  font-family: "MiSans";
  text-align: left;
  font-size: 1.8em;
  margin: 1em 0;
  border-bottom: 2px solid #ccc;
}
h2 span {
  display: block;
  font-family: "朱雀仿宋";
  font-size: 0.65em;
}

1nkwell avatar Aug 24 '25 00:08 1nkwell