From da971b4a0fd309538aad449caedf4f6e900fc42b Mon Sep 17 00:00:00 2001 From: tylermurphy534 Date: Sun, 4 Dec 2022 23:25:49 -0500 Subject: ritchie --- data/cursor.png | Bin 0 -> 13269 bytes data/rotchie.png | Bin 0 -> 7860 bytes index.html | 16 +++++++--------- style.css | 25 +++++++++---------------- 4 files changed, 16 insertions(+), 25 deletions(-) create mode 100644 data/cursor.png create mode 100644 data/rotchie.png diff --git a/data/cursor.png b/data/cursor.png new file mode 100644 index 0000000..7dde816 Binary files /dev/null and b/data/cursor.png differ diff --git a/data/rotchie.png b/data/rotchie.png new file mode 100644 index 0000000..31828ed Binary files /dev/null and b/data/rotchie.png differ diff --git a/index.html b/index.html index 3dbdc86..a1a7a19 100644 --- a/index.html +++ b/index.html @@ -53,11 +53,9 @@

Call 1-800-1ST-YEAR to get a sprinkler to go off in a dorm near you!

-
-

- important stuff -

-
+

+ important stuff +

@@ -105,16 +103,16 @@
- + - - + + - +
diff --git a/style.css b/style.css index c338da7..e797951 100644 --- a/style.css +++ b/style.css @@ -4,6 +4,7 @@ html, body, #mainBod { } #mainBod { + cursor: url("data/rotchie.png"), auto; top: 0; bottom: 0; left: 0; right: 0; overflow: auto; @@ -41,18 +42,21 @@ html, body, #mainBod { background-color: black; color: orange; animation: across 2s linear infinite; + margin-left: 10%; } -.wrapper { - animation: across_parent 2s linear infinite; - width: 80%; - margin-left: 10%; +a { + cursor: url("data/cursor.png"), pointer !important; } td a { color: yellow; } +.clickable:hover { + cursor: url("data/cursor.png"), pointer !important; +} + td:hover { background-color: orange; } @@ -296,20 +300,9 @@ html.dither>body>div>div{ transform: translateX(0%); } 50% { - transform: translateX(-100%); - } -} - -@keyframes across_parent { - 0%, - 100% { - transform: translateX(0%); - } - 50% { - transform: translateX(100%); + transform: translateX(calc(80vw - 100%)); } } - @keyframes scale { from { transform: scale3d(100%, 100%, 100%); -- cgit v1.2.3-freya