artie.moe/src/components/Prompt.astro
2023-06-23 20:35:01 +02:00

31 lines
593 B
Plaintext

<div class="artie font-mono fixed top-4 left-6 text-xl font-bold text-slate-300">
&gt; <span class="text-ctp-pink">art</span>ie
</div>
<style>
.artie::after {
content: "";
position: absolute;
top: 2.4px;
right: -8px;
display: inline-block;
background-color: #585b70;
vertical-align: top;
width: 6px;
height: 22px;
animation: blink 1s step-end infinite;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>