blob: cce7183aa84b7283ca4d8e4ff37468e2924d445c (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<!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>
|