-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.04 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
<html>
<head>
<title>Webpack demo</title>
<style>
.toDo{
background-color: #eee;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
width: 200px;
}
.selected{
text-decoration: line-through;
color: #888;
}
.del{
width: 20px;
height: 20px;
background-color: #f55;
position: relative;
display: inline-block;
margin-left: 40px;
}
.del::before,
.del::after{
position: absolute;
top: 9px;
left: 0;
content: '';
background-color: #fff;
width: 100%;
height: 2px;
}
.del::after{
content: '';
transform: rotate(-45deg);
}
.del::before{
content: '';
transform: rotate(45deg);
}
label{
border-bottom: 1px solid #888
margin:10px 0 ;
}
</style>
</head>
<body>
<div id="hello"></div>
<script src="dist/bundle.js" type="text/javascript"></script>
</body>
</html>