Hacker News new | ask | show | jobs
by bluu00 2062 days ago
custom cursor; dark bg - dark cursor; so yea; see how the cursor transitions when on text by flipping sideways to blue; idk I thought its 'cute';
1 comments

The cursor is completely invisible for me, whether over text or links or anywhere else
oh yess.

look at this,

  :root {
      ...
      cursor: none !important
    }

  html {
      ...
      cursor: none !important
    }
and this,

  * {
      cursor: url(cursor.19bbb4e3.png), none !important [0]
  }


  #cursor {
      background: rgba(200, 200, 255, .2);
      transition-property: width, height, border-radius, transform;
      transition-timing-function: ease-out;
      transition-duration: .1s;
      pointer-events: none;
      transform: translate(-50%, -50%);
      border-radius: 100%;
      position: absolute;
      left: -1000px;
      z-index: 99999;
      width: 36px;
      height: 36px
    }
[-1] : https://azumbrunnen.me/main.39afc03c.css [0] : https://azumbrunnen.me/cursor.19bbb4e3.png

He kinda messed up, mayb?