aboutsummaryrefslogtreecommitdiff
path: root/2022/src/day09.html
diff options
context:
space:
mode:
Diffstat (limited to '2022/src/day09.html')
-rw-r--r--2022/src/day09.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/2022/src/day09.html b/2022/src/day09.html
new file mode 100644
index 0000000..d3ed12b
--- /dev/null
+++ b/2022/src/day09.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <link data-trunk rel="rust" data-wasm-opt="2" href="../Cargo.toml" data-bin="day9" />
+
+ <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>