Skip to content

Instantly share code, notes, and snippets.

@pentium2004
pentium2004 / index.html
Last active May 15, 2026 20:15
Plumber Dash Deluxe - single-file HTML platformer
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Plumber Dash Deluxe</title>
<style>
:root{--sky1:#5cc8ff;--sky2:#b9efff;--panel:rgba(7,18,38,.72);--gold:#ffd34d;--red:#e83b3b;--green:#3bd16f;--ink:#101826}
*{box-sizing:border-box;-webkit-tap-highlight-color:transparent} html,body{margin:0;height:100%;overflow:hidden;background:#0b1531;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;color:white}
#wrap{position:fixed;inset:0;display:grid;place-items:center;background:radial-gradient(circle at 50% 0%,#2b74ff 0,#0b1531 55%,#050916 100%)}