-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.32 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
<!doctype html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Test</title>
<style>
html { margin: 20px; padding: 0; }
body {
font: 16px/1.4 sans;
background: #eee; color: #4d4d4d;
max-width: 550px; margin: 0 auto;
}
ul { list-style: none; padding: 0; }
input { font-size: 1rem; padding: .5rem; border: none; width: 85%; box-sizing: border-box; }
.task { padding: .5em; background: white; margin: .5rem 0; padding: 0 .5rem; }
.task > input:nth-child(1) { width: 9% }
/*.task > input:nth-child(2) { width: calc(100% - 3em); background: none }*/
.task > input:nth-child(2) { width: calc(100% - 5em); background: none }
.done { background: #eee; opacity: .5; }
.done > input { text-decoration: line-through; }
.info:before { content: "✔"; color: white; background: silver; display: block; width: 1.3em; margin: auto; font-size: 60px; margin-bottom: .2em; }
.info { text-align: center; font: 30px sans; padding-top: 4rem; color: silver}
.span-input { width: 1.3rem; display: inline-block; }
.well-hidden, .hidden { display: none; }
body { position: relative; }
.rx-building {background:orange}
</style>
</head><body>
<div id="svg-container"></div>
<script src="./viz.js"></script>
<script src="./todojs.js"></script>
<div id="main"></div>
</body></html>