first-update

This commit is contained in:
2026-03-17 14:36:31 +08:00
parent 72f08aee7c
commit 4eddf05e79
516 changed files with 115270 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
/* 添加流式输出的闪烁光标动画 */
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.blinking-cursor {
animation: blink 1s infinite;
display: inline-block;
font-weight: bold;
color: #666;
}