35 lines
441 B
Plaintext
35 lines
441 B
Plaintext
|
|
.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;
|
|
}
|
|
}
|
|
|