first commit

This commit is contained in:
RISE
2026-05-21 10:26:55 +08:00
commit fa321e5083
333 changed files with 48498 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
.page {
padding: 2em
}
.htmlText {
height: 70vh;
overflow: auto;
white-space: pre-wrap;
line-height: 1.6;
margin-bottom: 1em;
padding-bottom: 1em;
}
.end::after {
content: "|";
-webkit-animation: blink .3s linear infinite alternate;
animation: blink .3s linear infinite alternate;
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes blink {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}