diff --git a/assets/css/elements.css b/assets/css/elements.css index 6615afd..abb3fdc 100644 --- a/assets/css/elements.css +++ b/assets/css/elements.css @@ -11,6 +11,7 @@ box-sizing: border-box; font-size: calc(10px + 1vmin); + cursor: url('/cursors/arrow.cur'), auto; } *, ::before, ::after { box-sizing: inherit; } @@ -35,7 +36,6 @@ body { code { background-color: black; color: lime; - /* font-size: 0.75rem; /* Why tho?? */ font-family: "fsex300", monospace; } @@ -45,3 +45,5 @@ pre > code { display: inline-block; width: 100%; } + +a:hover { cursor: url('/cursors/finger.cur'), auto; } diff --git a/public/cursors/arrow.cur b/public/cursors/arrow.cur new file mode 100644 index 0000000..7128d5b Binary files /dev/null and b/public/cursors/arrow.cur differ diff --git a/public/cursors/finger.cur b/public/cursors/finger.cur new file mode 100644 index 0000000..cea3d76 Binary files /dev/null and b/public/cursors/finger.cur differ