diff options
| author | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-04-02 23:28:55 -0600 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-04-02 23:28:55 -0600 |
| commit | c32ca84e8a1a87994d5233a2d51c640a368b88bc (patch) | |
| tree | 7cc52811c81c47bdf56e38b28eda9671f07603eb /static/css | |
| parent | d0fa8924938c17a10028f7a13dfac346635ba61c (diff) | |
| download | hatecomputers.club-c32ca84e8a1a87994d5233a2d51c640a368b88bc.tar.gz hatecomputers.club-c32ca84e8a1a87994d5233a2d51c640a368b88bc.zip | |
cute cat cursor
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/styles.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/static/css/styles.css b/static/css/styles.css index 7486016..ba58018 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -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 { |
