Compare commits

..

No commits in common. "80118913adeabac66ab0eb2f1a807a3993a14c81" and "9dfc935d48104128391cd064f0cb15ba1d074ccc" have entirely different histories.

3 changed files with 394 additions and 436 deletions

682
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -56,11 +56,7 @@
#back-to-top { #back-to-top {
width: 3rem; width: 3rem;
height: 3rem; height: 3rem;
/* border: #a7a7a7 1.5px solid; */ border: #a7a7a7 1.5px solid;
border-top: var(--deep-blue) 1.5px dotted;
border-left: var(--deep-blue) 1.5px dotted;
border-right: var(--deep-blue) 2.5px solid;
border-bottom: var(--deep-blue) 2.5px solid;
border-radius: 999px; border-radius: 999px;
background: rgba(255, 255, 255, 0.92); background: rgba(255, 255, 255, 0.92);
color: #222; color: #222;
@ -122,8 +118,7 @@
transition: transition:
opacity 0.2s ease, opacity 0.2s ease,
transform 0.27s ease, transform 0.27s ease,
visibility 0.2s ease, visibility 0.2s ease;
box-shadow 0.2s ease;
} }
#theme-toggle-fab.show, #theme-toggle-fab.show,
@ -135,8 +130,7 @@
#theme-toggle-fab.show:hover, #theme-toggle-fab.show:hover,
#back-to-top.show:hover { #back-to-top.show:hover {
transform: translateY(-2.5px); transform: translateY(-2px);
box-shadow: 2px 3px 0px var(--deep-blue);
} }
:global(.dark) #theme-toggle-fab, :global(.dark) #theme-toggle-fab,

View file

@ -193,10 +193,6 @@ const t = getTranslations(lang);
justify-content: center; justify-content: center;
text-decoration: none; text-decoration: none;
border: #536493 1.5px solid; border: #536493 1.5px solid;
border-top: #536493 2.5px dotted;
border-left: #536493 2.5px dotted;
border-right: #536493 2.5px solid;
border-bottom: #536493 2.5px solid;
background: rgba(255, 255, 255, 0.92); background: rgba(255, 255, 255, 0.92);
color: #222; color: #222;
/* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16); */ /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16); */
@ -221,8 +217,7 @@ const t = getTranslations(lang);
} }
.back-button.show:hover { .back-button.show:hover {
transform: translateY(-2.5px); transform: translateY(-2px);
box-shadow: 2px 3px 0px var(--deep-blue);
} }
.back-button:hover { .back-button:hover {
@ -374,86 +369,87 @@ const t = getTranslations(lang);
} }
} }
details {
margin: 1.5rem 0;
overflow: hidden;
border-top: 2px solid #1e3a5f;
border-radius: 0 0 0.5rem 0.5rem;
background: rgba(128, 128, 128, 0.14);
}
details summary { details {
display: flex; margin: 1.5rem 0;
align-items: center; overflow: hidden;
gap: 0.5rem; border-top: 2px solid #1e3a5f;
padding: 0.8rem 0.9rem; border-radius: 0 0 0.5rem 0.5rem;
cursor: pointer; background: rgba(128, 128, 128, 0.14);
font-weight: 600; }
user-select: none;
list-style: none;
}
details summary::-webkit-details-marker { details summary {
display: none; display: flex;
} align-items: center;
gap: 0.5rem;
padding: 0.8rem 0.9rem;
cursor: pointer;
font-weight: 600;
user-select: none;
list-style: none;
}
details summary::before { details summary::-webkit-details-marker {
content: ""; display: none;
display: inline-block; }
font-size: 1.25rem;
line-height: 1;
transition: transform 0.2s ease;
}
details[open] summary::before { details summary::before {
transform: rotate(90deg); content: "";
} display: inline-block;
font-size: 1.25rem;
line-height: 1;
transition: transform 0.2s ease;
}
/* 展开内容 */ details[open] summary::before {
details > :not(summary) { transform: rotate(90deg);
box-sizing: border-box; }
margin-top: 0;
margin-bottom: 0;
padding-right: 1rem;
}
/* 为列表序号预留空间 */ /* 展开内容 */
details > ol, details > :not(summary) {
details > ul { box-sizing: border-box;
padding: 0.6rem 1rem 1rem 3rem; margin-top: 0;
} margin-bottom: 0;
padding-right: 1rem;
}
details li { /* 为列表序号预留空间 */
margin: 0.8rem 0; details > ol,
} details > ul {
padding: 0.6rem 1rem 1rem 3rem;
}
blockquote { details li {
margin: 1.25rem 0; margin: 0.8rem 0;
padding: 0.75rem 1rem; }
border-left: 4px solid var(--deep-red);
background: rgba(128, 128, 128, 0.1);
border-radius: 0 0.4rem 0.4rem 0;
}
blockquote p { blockquote {
margin: 0; margin: 1.25rem 0;
} padding: 0.75rem 1rem;
border-left: 4px solid var(--deep-red);
background: rgba(128, 128, 128, 0.1);
border-radius: 0 0.4rem 0.4rem 0;
}
blockquote p + p { blockquote p {
margin-top: 0.75rem; margin: 0;
} }
/* 块级公式:超出屏幕时只滚动公式,不撑宽整篇文章 */ blockquote p + p {
.katex-display { margin-top: 0.75rem;
}
/* 块级公式:超出屏幕时只滚动公式,不撑宽整篇文章 */
.katex-display {
max-width: 100%; max-width: 100%;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
padding: 0.25rem 0; padding: 0.25rem 0;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
/* 避免 KaTeX 内部元素强行把父容器撑宽 */ /* 避免 KaTeX 内部元素强行把父容器撑宽 */
.katex-display > .katex { .katex-display > .katex {
min-width: max-content; min-width: max-content;
} }
</style> </style>