aboutsummaryrefslogtreecommitdiff
path: root/2022/src/day09.html
blob: d3ed12bd169336ae1d20636f4d51573da4808d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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>