-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathindex.html
89 lines (78 loc) · 1.63 KB
/
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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="icon"
href='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">⛱️</text></svg>'
/>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>todo-list · @thi.ng/umbrella</title>
<style>
html {
font: 100%/1.2 Helvetica, Arial, sans-serif;
}
#app {
width: 640px;
margin: auto;
font-size: 1.2em;
}
#toolbar {
margin: 1em 0;
}
.task {
background: #ccc;
padding: 10px;
margin-bottom: 2px;
}
.done,
.done input[type="text"] {
background: #cfc !important;
text-decoration: line-through;
}
.task input[type="text"] {
display: inline-block;
width: 580px;
border: 0;
background: #ccc;
margin-left: 0.5em;
}
.task input,
button {
vertical-align: middle;
font-size: 1.2em;
}
button {
background: #000;
color: #fff;
border: 0;
margin-right: 2px;
}
button:disabled {
background: #ccc;
}
small {
padding: 0 1em;
font-size: 14px;
font-weight: 400;
}
a:link,
a:visited {
color: #000;
}
</style>
<script>
window.goatcounter = { path: (p) => location.host + p };
</script>
<script
data-goatcounter="https://thing.goatcounter.com/count"
async
src="//gc.zgo.at/count.js"
></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.ts"></script>
</body>
</html>