remove annoying cursor

This commit is contained in:
vitrinekast 2024-12-09 10:49:23 +01:00
parent ad1ece0f1b
commit 467a6638a0

View File

@ -21,21 +21,10 @@ header {
font-family: monospace; font-family: monospace;
} }
@keyframes cursor-animate {
from {
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" style="font-size: 22px;"><text y="22">⛏</text></svg>'),
auto;
}
to {
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" style="font-size: 22px;"><text y="22">♻</text></svg>'),
auto;
}
}
body { body {
font-family: sans-serif; font-family: sans-serif;
background-color: var(--background); background-color: var(--background);
animation: 1s cursor-animate linear infinite;
color: var(--text); color: var(--text);
} }