summaryrefslogtreecommitdiff
path: root/src/index.html
blob: 9ff8fd3de3690086b601fa79ad1013f19f53403b (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device.width, initial-scale=1">
		<link rel="shortcut icon" href="favicon.png">
		<title>bluerose</title>
		<style>
			body {
				font-family: monospace;
				background-color: #222;
				color: white;
			}
			#root {
				width: 500px;
				height: 500px;
			}
			button {
				font-family: monospace;
			}

			ul {
				list-style: none;
			}

			li {
				user-select: none;
			}

			li.selected {
				background-color: white;
				color: #222;
			}

			li.selected li {
				background-color: #222;
				color: white;
			}

			li:before {
				content: 'x ';
			}

			li.visible:before {
				content: '👁 ';
			}
		</style>
		<script type="module" src="main.js"></script>
	</head>
	<body style="margin: 0; padding: 0; overflow: hidden">
		<noscript>
			<h1>You need Javascript enabled to use this site</h1>
		</noscript>

		<div id="root"></div>
	</body>
</html>