Merge branch 'master' of gitlab.com:tempest_dawn/tildeashe

main
Ashelyn Dawn 2 years ago
commit d363bbfc1a

@ -7,6 +7,7 @@
<script src="https://unpkg.com/ansi_up@5.1.0/ansi_up.js"></script>
</head>
<body>
<input autofocus id="input"/>
<div id="container">
<div id="target">
<noscript>
@ -47,8 +48,9 @@
white-space: pre-wrap;
word-break: break-all;
font-family: 'Courier New', Courier, monospace;
height: 450px;
width: 600px;
line-height: 18px;
height: 24em;
width: 64ch;
position: relative;
overflow: hidden;
user-select: none;
@ -68,6 +70,11 @@
opacity: .8;
}
#input {
pointer-events: none;
opacity: 0;
}
@keyframes blink {
0%, 49% {
color: var(--foreground-color);
@ -97,6 +104,10 @@
window.addEventListener('resize', scale);
scale();
document.getElementById("input").addEventListener("change", ev => {
ev.target.value = ""
})
</script>
<noscript>
<style>

Loading…
Cancel
Save