summaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorsimponic <simponic@hatecomputers.club>2024-04-06 15:43:18 -0400
committersimponic <simponic@hatecomputers.club>2024-04-06 15:43:18 -0400
commit83cc6267fd5ce2f61200314424c5f400f65ff2ba (patch)
treeeafb35310236a15572cbb6e16ff8d6f181bfe240 /static/css
parent569d2788ebfb90774faf361f62bfe7968e091465 (diff)
parentcad8e2c4ed5e3bab61ff243f8677f8a46eaeafb0 (diff)
downloadhatecomputers.club-83cc6267fd5ce2f61200314424c5f400f65ff2ba.tar.gz
hatecomputers.club-83cc6267fd5ce2f61200314424c5f400f65ff2ba.zip
Merge pull request 'testing | dont be recursive for external domains | finalize oauth' (#5) from dont-be-authoritative into main
Reviewed-on: https://git.hatecomputers.club/hatecomputers/hatecomputers.club/pulls/5
Diffstat (limited to 'static/css')
-rw-r--r--static/css/styles.css16
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 {