friday 2/13

i did this

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  overflow: hidden;
  cursor: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#snakeCanvas {
  display: block;
}

.hint {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(0, 255, 200, 0.6);
}

and this

​
CODY MENHART​
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>Neon Snake Playground</title>
  <link rel="stylesheet" href="style.css" />
</head>
<body>
  <canvas id="snakeCanvas"></canvas>
  <div class="hint">
    Move your mouse or finger · Click for ripples · Press SPACE for auto‑slither
  </div>
  <script src="script.js"></script>
</body>
</html>

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top