新增显示标题附有章节的功能
This commit is contained in:
parent
2fc499b657
commit
e28ffbdb2e
32
vue.css
32
vue.css
@ -369,16 +369,21 @@ h2 {
|
|||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
line-height: 1.225;
|
line-height: 1.225;
|
||||||
margin: 35px 0px 15px 0px;
|
margin: 35px 0px 15px 0px;
|
||||||
|
counter-increment: h1-counter;
|
||||||
|
counter-reset: h2-counter;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
line-height: 1.43;
|
line-height: 1.43;
|
||||||
margin: 20px 0px 7px 0px;
|
margin: 20px 0px 7px 0px;
|
||||||
|
counter-increment: h2-counter;
|
||||||
|
counter-reset: h3-counter;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
|
counter-increment: h3-counter;
|
||||||
}
|
}
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
@ -390,6 +395,33 @@ h6 {
|
|||||||
color: #777;
|
color: #777;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h2::before {
|
||||||
|
content: counter(h1-counter);
|
||||||
|
left: -2rem;
|
||||||
|
font-size: 1.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3::before {
|
||||||
|
content: counter(h1-counter)"."counter(h2-counter);
|
||||||
|
left: -2.4rem;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4::before {
|
||||||
|
content: counter(h1-counter)"."counter(h2-counter)"."counter(h3-counter);
|
||||||
|
left: -2.8rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1::before,
|
||||||
|
h2::before,
|
||||||
|
h3::before,
|
||||||
|
h4::before {
|
||||||
|
color: #42B983;
|
||||||
|
position: absolute;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
p,
|
p,
|
||||||
blockquote,
|
blockquote,
|
||||||
ul,
|
ul,
|
||||||
|
Loading…
Reference in New Issue
Block a user