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%); + transform: translateX(calc(80vw - 100%)); } } - -@keyframes across_parent { - 0%, - 100% { - transform: translateX(0%); - } - 50% { - transform: translateX(100%); - } -} - @keyframes scale { from { transform: scale3d(100%, 100%, 100%);