You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
960 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>~ashe</title>
<script src="https://unpkg.com/ansi_up@5.1.0/ansi_up.js"></script>
</head>
<body>
<div id="target"></div>
<style>
html, body {
--background-color: rgb(37, 29, 51);
--foreground-color: white;
background: var(--background-color);
color: var(--foreground-color);
}
#target {
white-space: pre;
font-family: 'Courier New', Courier, monospace;
}
#target::after {
content: '█';
display: inline-block;
/* animation: blink 2.4s infinite; */
opacity: .8;
}
@keyframes blink {
0%, 49% {
color: var(--foreground-color);
border: solid 1px transparent;
}
50%, 99% {
color: transparent;
border: solid .5px var(--foreground-color);
}
}
</style>
</body>
</html>