-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 893 Bytes
/
index.html
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
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Async Todo Purity App</title>
<style>
.checked {
color: grey;
}
li button {
display: none;
}
li.checked button {
display: initial;
}
li.highlighted {
background-color: yellow;
}
#spinner {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.1);
background-image: url(./spinner.svg);
background-position: center;
background-repeat: no-repeat;
display: none;
}
#spinner.visible {
display: initial;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./index.js"></script>
</body>
</html>