mirror of
https://github.com/artiemis/artie.moe.git
synced 2026-02-14 09:01:55 +00:00
31 lines
593 B
Plaintext
31 lines
593 B
Plaintext
<div class="artie font-mono fixed top-4 left-6 text-xl font-bold text-slate-300">
|
|
> <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>
|
|
|