summaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth@simponic.xyz>2024-08-15 00:31:13 -0700
committerElizabeth Hunt <elizabeth@simponic.xyz>2024-08-15 00:31:13 -0700
commit0b8883c236a06a14e5e6958ed47f89729b0e41aa (patch)
treed7541f4e19f881c6daa175a59c281c11bfb31c81 /static/css
parentdbd548d428f222babb4e1d6a182b90f19b192e1f (diff)
downloadhatecomputers.club-0b8883c236a06a14e5e6958ed47f89729b0e41aa.tar.gz
hatecomputers.club-0b8883c236a06a14e5e6958ed47f89729b0e41aa.zip
update about page and fix blinking cursor seizure
Diffstat (limited to 'static/css')
-rw-r--r--static/css/styles.css47
1 files changed, 26 insertions, 21 deletions
diff --git a/static/css/styles.css b/static/css/styles.css
index 886052e..e7a0efc 100644
--- a/static/css/styles.css
+++ b/static/css/styles.css
@@ -16,33 +16,38 @@
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% {
+/* i just cannot get this to look good on firefox... */
+@supports not (-moz-appearance: none) {
+ * {
cursor: url("/static/img/cursor-2.png"), auto;
+ -webkit-animation: cursor 400ms infinite;
+ animation: cursor 400ms infinite;
}
- 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;
+ @-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;
+ }
}
- 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;
+ }
}
}