1
0
mirror of https://github.com/kuohuanhuan/x-markdown-css.git synced 2024-11-25 06:18:19 +00:00

Compare commits

..

3 Commits

5 changed files with 12 additions and 18 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "x-markdown-css",
"version": "0.0.0-20230302.1",
"version": "0.0.0-20230302.2",
"lockfileVersion": 3,
"requires": true,
"packages": {

View File

@ -1,6 +1,6 @@
{
"name": "x-markdown-css",
"version": "0.0.0-20230302.1",
"version": "0.0.0-20230302.2",
"description": "A simple and customizable Markdown CSS for everyone.",
"keywords": [
"markdown",

View File

@ -1,7 +1,7 @@
code {
font-size: .85rem;
font-weight: 600;
font-family: var(--xm-font-mono);
font-family: var(--xm-font-code);
color: var(--xm-c-dark);
&::before,
&::after {

View File

@ -1,2 +1,2 @@
$font-sans: 'Open Sans', 'Inter', 'Roboto', 'Helvetica', 'Arial', 'Sarasa Gothic TC', 'Sarasa Gothic SC', 'Noto Sans TC', 'Noto Sans SC', 'Microsoft JhengHei', 'Microsoft YaHei', -apple-system, sans-serif;
$font-mono: 'DM Mono', 'Fira Code', 'Jetbrains Mono', 'Input Mono', 'Menlo', 'MesloLGS NF', 'Ubuntu', monospace;
$font-regular: 'Open Sans', 'Inter', 'Roboto', 'Helvetica', 'Arial', 'Sarasa Gothic TC', 'Sarasa Gothic SC', 'Noto Sans TC', 'Noto Sans SC', 'Microsoft JhengHei', 'Microsoft YaHei', -apple-system, sans-serif;
$font-code: 'DM Mono', 'Fira Code', 'Jetbrains Mono', 'Input Mono', 'Menlo', 'MesloLGS NF', 'Ubuntu', monospace;

View File

@ -1,5 +1,5 @@
.markdown-body {
font-family: var(--xm-font-sans) !important;
font-family: var(--xm-font-regular) !important;
color: var(--xm-c-general);
pre {
&:not(.shiki, .highlight) {
@ -12,7 +12,7 @@
.highlight {
margin: .5rem 0;
font-size: 1.05rem;
font-family: var(--xm-font-mono) !important;
font-family: var(--xm-font-code) !important;
line-height: 1.4;
&.shiki-light {
background: var(--xm-c-shiki-light) !important;
@ -54,11 +54,9 @@
margin-bottom: 0;
}
}
p {
&:first-of-type::before {
content: none;
}
&:first-of-type::after {
p:first-of-type {
&::before,
&::after {
content: none;
}
}
@ -67,12 +65,10 @@
margin-top: 1rem;
}
}
html:not(.dark) .shiki-dark,
.dark .shiki-light {
display: none;
}
html:not(.dark) .shiki-dark {
display: none;
}
.item {
text-decoration: none;
opacity: .6;
@ -90,9 +86,7 @@ html:not(.dark) .shiki-dark {
text-decoration: none;
border: 0 !important;
opacity: 0;
&:hover {
text-decoration: none;
}
&:hover,
&:focus {
text-decoration: none;
}