style(markdown): improve selectors

This commit is contained in:
郭桓桓 2023-03-02 21:18:14 +08:00
parent decfa2c47c
commit 8da53d8cde
Signed by: kuohuanhuan
GPG Key ID: FD846A0A797B0D75
1 changed files with 12 additions and 17 deletions

View File

@ -1,13 +1,11 @@
.markdown-body { .markdown-body {
color: var(--xm-c-general); color: var(--xm-c-general);
font-family: var(--xm-font-display) !important; font-family: var(--xm-font-display) !important;
pre { pre:not(.shiki, .highlight) {
&:not(.shiki, .highlight) {
margin: 0; margin: 0;
padding: 0; padding: 0;
background: transparent; background: transparent;
} }
}
.shiki, .shiki,
.highlight { .highlight {
margin: .5rem 0; margin: .5rem 0;
@ -81,7 +79,7 @@ html:not(.dark) .shiki-dark,
.header-anchor { .header-anchor {
float: left; float: left;
margin-top: .125rem; margin-top: .125rem;
margin-left: -1.2rem; margin-left: -1.25rem;
padding-right: .5rem; padding-right: .5rem;
border: 0 !important; border: 0 !important;
font-size: .875rem; font-size: .875rem;
@ -92,12 +90,8 @@ html:not(.dark) .shiki-dark,
text-decoration: none; text-decoration: none;
} }
} }
h1, @for $i from 1 through 6 {
h2, h#{$i} {
h3,
h4,
h5,
h6 {
&:hover, &:hover,
&:focus { &:focus {
.header-anchor { .header-anchor {
@ -105,3 +99,4 @@ h6 {
} }
} }
} }
}