improve: comment color

This commit is contained in:
fen
2024-01-29 16:32:16 +08:00
parent bda7541682
commit 0a40b1e7ee
3 changed files with 14 additions and 8 deletions

View File

@@ -227,9 +227,9 @@
}
},
"node_modules/@picocss/pico": {
"version": "1.5.10",
"resolved": "https://registry.npmjs.org/@picocss/pico/-/pico-1.5.10.tgz",
"integrity": "sha512-+LafMsrwPxXQMk6sI///TmSInCwwZmq+K7SikyL3N/4GhhwzyPC+TQLUEqmrLyjluR+uIpFFcqjty30Rtr6GxQ=="
"version": "1.5.11",
"resolved": "https://registry.npmjs.org/@picocss/pico/-/pico-1.5.11.tgz",
"integrity": "sha512-cDaFiSyNPtuSTwSQt/05xsw8+g2ek4/S58tgh9Nc7miJCCdUrY9PAyl4OPWRJtYgJDdEvkUA9GuGj0J4nDP4Cw=="
},
"node_modules/@sindresorhus/is": {
"version": "0.7.0",

File diff suppressed because one or more lines are too long

View File

@@ -10,6 +10,11 @@ body {
text-underline-offset: 0.2rem;
}
button {
display: inline-block;
width: auto;
}
// Theme
[data-theme="light"],
:root:not([data-theme="dark"]) {
@@ -315,10 +320,10 @@ h1, h2, h3, h4, h5 { line-height: 1.25; }
content: "OP";
margin-left: .25rem;
color: var(--muted-color);
padding: 0 .375rem;
padding: 1px .375rem;
border: 1px solid var(--muted-color);
font-size: .75rem;
border-radius: var(--border-radius);
border-radius: 2rem;
}
.comment-author {
@@ -330,9 +335,11 @@ h1, h2, h3, h4, h5 { line-height: 1.25; }
border-radius: 48px;
}
cite {
cite,
cite a {
font-style: normal;
font-weight: 700;
color: var(--h5-color);
}
}