summaryrefslogtreecommitdiff
path: root/frontend/app/views/page/cursors.css
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-09-26 14:56:02 +0200
committerJules Laplace <julescarbon@gmail.com>2020-09-26 14:56:02 +0200
commita17b76ac75f506f5da6fe8adf9c36632b60d4226 (patch)
treeabb0af0c4409b830dea2ef808c146223ee973933 /frontend/app/views/page/cursors.css
parent2231a6e1c05b07bb7ec5906716aedec93d02429c (diff)
refactor to use app-rooted js imports
Diffstat (limited to 'frontend/app/views/page/cursors.css')
-rw-r--r--frontend/app/views/page/cursors.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/frontend/app/views/page/cursors.css b/frontend/app/views/page/cursors.css
new file mode 100644
index 0000000..56fb088
--- /dev/null
+++ b/frontend/app/views/page/cursors.css
@@ -0,0 +1,21 @@
+/* cursors */
+/* keep in separate file so they don't conflict. a copy of this lives in site.css */
+
+.tile.hand_up {
+ cursor: url(/static/img/hand_up.png) 40 10, pointer;
+}
+.tile.hand_right {
+ cursor: url(/static/img/hand_right.png) 90 40, pointer;
+}
+.tile.hand_down {
+ cursor: url(/static/img/hand_down.png) 60 90, pointer;
+}
+.tile.hand_left {
+ cursor: url(/static/img/hand_left.png) 10 60, pointer;
+}
+
+.tile.link {
+ cursor: pointer;
+ border: 1px solid #31f;
+ background-color: rgba(48,16,255,0.1);
+} \ No newline at end of file