<!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: '👁 ';
			}

			.draggable-window {
				border: 1px solid white;
				background-color: #222;
			}

			.draggable-header {
				padding: 10px;
				text-align: center;
				font-weight: bold;
				background-color: white;
				color: #222;
			}
		</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>