For the complete documentation index, see llms.txt. This page is also available as Markdown.

Snippets

  1. CSS to Custom Cursor

/* Apply custom cursor to the entire body */
body {
  cursor: url('https://img.icons8.com/?size=70&id=14102&format=png&color=000000') 16 16, auto !important;
}

/* Crosshair cursor for links */
a {
  cursor: crosshair !important;
}

Last updated