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.

94 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
3 years ago
<meta name="viewport" content="width=device-width, initial-scale=1">
3 years ago
<title>ashe@tilde.club</title>
<script src="https://unpkg.com/ansi_up@5.1.0/ansi_up.js"></script>
</head>
<body>
3 years ago
<div id="container">
3 years ago
<div id="target"></div>
</div>
<style>
html, body {
--background-color: rgb(37, 29, 51);
--foreground-color: white;
color: var(--foreground-color);
3 years ago
margin: 0;
padding: 0;
}
3 years ago
a {
color: currentColor!important;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
3 years ago
background: #392e41;
3 years ago
}
3 years ago
#container {
3 years ago
background: var(--background-color);
white-space: pre-wrap;
word-break: break-all;
font-family: 'Courier New', Courier, monospace;
3 years ago
height: 450px;
width: 600px;
position: relative;
overflow: hidden;
user-select: none;
3 years ago
box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
3 years ago
}
#target {
position: absolute;
bottom: 0;
min-height: 100%;
}
#target::after {
content: '█';
display: inline-block;
3 years ago
animation: blink 2.4s infinite;
opacity: .8;
}
@keyframes blink {
0%, 49% {
color: var(--foreground-color);
3 years ago
border: none;
/* margin: .5px; */
}
50%, 99% {
color: transparent;
3 years ago
/* border: solid .5px var(--foreground-color); */
margin: 0px;
}
}
</style>
3 years ago
<script>
function scale() {
const container = document.getElementById('container');
const height = window.innerHeight;
const width = window.innerWidth;
const scaleX = width / 600;
const scaleY = height / 450;
const scale = 0 || Math.min(scaleX, scaleY);
container.style.transform = `scale(${scale})`;
}
window.addEventListener('resize', scale);
scale();
</script>
</body>
</html>