diff options
Diffstat (limited to '2022/src/day14.html')
-rw-r--r-- | 2022/src/day14.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/2022/src/day14.html b/2022/src/day14.html new file mode 100644 index 0000000..c441303 --- /dev/null +++ b/2022/src/day14.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html> + +<head> + <link data-trunk rel="rust" data-wasm-opt="2" href="../Cargo.toml" data-bin="day14" /> + + <style> + html { + /* Remove touch delay: */ + touch-action: manipulation; + } + + html, + body { + overflow: hidden; + margin: 0 !important; + padding: 0 !important; + height: 100%; + width: 100%; + } + + canvas { + margin-right: auto; + margin-left: auto; + display: block; + position: absolute; + top: 0%; + left: 50%; + transform: translate(-50%, 0%); + } + </style> +</head> + +<body> + <canvas id="canvas"></canvas> +</body> + +</html> |