Markdown(md)文档开发-Typora
Markdown(md)文档开发-Typora
/* 以下为自定义内容 */
h2 {
counter-increment: h2;
counter-reset: h3;
position: relative;
left: 0;
top: 0;
}
h2:before {
content: counter(h2, decimal) '.';
margin-right: 4px;
padding-left: 0.8em;
}
h2::after {
content: "";
position: absolute;
left: 0;
top: 0.19em;
height: 1em;
width: 0.3em;
background-color: #40a9ff;
}
h2::after {
opacity: 0.8;
}
h3 {
counter-increment: h3;
counter-reset: h4;
position: relative;
left: 0;
top: 0;
}
h3:before {
content: counter(h3, decimal-leading-zero) '.';
margin-right: 4px;
padding-left: 0.8em;
}
h3::after {
content: "";
position: absolute;
left: 0;
top: 0.19em;
height: 1em;
width: 0.3em;
background-color: #40a9ff;
}
h3::after {
opacity: 0.6;
}
h4 {
counter-increment: h4;
counter-reset: h5;
position: relative;
left: 0;
top: 0;
}
h4:before {
content: counter(h4, upper-alpha) '.';
margin-right: 4px;
padding-left: 0.8em;
}
h4::after {
content: "";
position: absolute;
left: 0;
top: 0.19em;
height: 1em;
width: 0.3em;
background-color: #40a9ff;
}
h4::after {
opacity: 0.5;
}
h5 {
counter-increment: h5;
counter-reset: h6;
position: relative;
left: 0;
top: 0;
}
h5:before {
content: counter(h5, lower-alpha) '.';
margin-right: 4px;
padding-left: 0.8em;
}
h5::after {
content: "";
position: absolute;
left: 0;
top: 0.19em;
height: 1em;
width: 0.3em;
background-color: #40a9ff;
}
h5::after {
opacity: 0.2;
}
h6 {
counter-increment: h6;
counter-reset: h7;
position: relative;
left: 0;
top: 0;
}
h6:before {
content: counter(h6, lower-roman) '.';
margin-right: 4px;
padding-left: 0.8em;
}
h6::after {
content: "";
position: absolute;
left: 0;
top: 0.19em;
height: 1em;
width: 0.3em;
background-color: #40a9ff;
}
h6::after {
opacity: 0.1;
}Last updated