cute cat cursor
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Elizabeth Hunt 2024-04-02 23:28:55 -06:00
parent d0fa892493
commit c32ca84e8a
Signed by: simponic
GPG Key ID: 2909B9A7FF6213EE
3 changed files with 16 additions and 0 deletions

View File

@ -15,6 +15,22 @@
padding: 0;
color: var(--text-color);
font-family: "ComicSans", sans-serif;
cursor: url("/static/img/cursor-1.png"), auto;
-webkit-animation: cursor 400ms infinite;
animation: cursor 400ms infinite;
}
@-webkit-keyframes cursor {
0% {cursor: url("/static/img/cursor-2.png"), auto;}
50% {cursor: url("/static/img/cursor-1.png"), auto;}
100% {cursor: url("/static/img/cursor-2.png"), auto;}
}
@keyframes cursor {
0% {cursor: url("/static/img/cursor-2.png"), auto;}
50% {cursor: url("/static/img/cursor-1.png"), auto;}
100% {cursor: url("/static/img/cursor-2.png"), auto;}
}
body {

BIN
static/img/cursor-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

BIN
static/img/cursor-2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 B