-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (105 loc) · 2.55 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<script src="bundle.js"></script>
<style>
* {
font-family: tahoma;
font-size: 10pt;
}
.div1 {
max-width: 220px;
border-radius: 5px;
background-color: lightgray;
border: 2px;
border-style: outset;
}
.title {
/*background-color: #868585;*/
padding: 3px;
padding-left: 8px;
font-weight: bold;
/*color: #dedede;*/
color: #4d4d4d;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.text {
display: inline-block;
flex-grow: 1;
}
.button {
display: inline-block;
color: #4d4d4d;
}
@keyframes anim01 {
from {
opacity: 0;
height: 0px;
}
to {
opacity: 1;
height: 25px;
}
}
.item {
display: flex;
background-color: #c9c9c9;
border-radius: 4px;
margin: 2px;
margin-bottom: 4px;
margin-top: 4px;
padding: 3px;
padding-left: 5px;
padding-right: 8px;
border: 1px;
/*border-style: outset;*/
color: #4d4d4d;
animation-name: anim01;
animation-duration: 0.2s;
box-sizing: border-box;
}
.itemdone {
background-color: #6d6d6d;
}
.items {
background-color: gray;
padding: 0px;
border: 1px;
border-style: inset;
}
.item > input {
margin-left: 0px;
margin-right: 5px;
}
.item > span {
position: relative;
top: 1px;
vertical-align: middle;
}
.item.removing {
animation: anim01 reverse 1s;
}
.itemsOuter {
padding: 4px;
}
.addSection {
display: flex;
padding: 4px;
padding-top: 0px;
}
.xmark {
display: inline-block;
font-weight: bold;
cursor: pointer;
user-select: none;
}
.xmark:hover {
color: #eee;
}
</style>
</head>
<body>
<div id='root'></div>
</body>
</html>