-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (56 loc) · 990 Bytes
/
style.css
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
body {
background-color: #ff851b;
}
#app{
width:400px;
margin: auto;
border: solid;
background-color: saddlebrown;
border-color: dimgrey;
border-radius: 25px;
}
#app h1{
text-align: center;
background-color: #7fa7ff;
border-radius: 25px;
color: #ffffff;
}
#app ul {
list-style-type: none;
color: rgba(0, 0, 0, 0.64);
padding-right: 40px;
}
#app li {
border: solid;
border-color: orange;
background-color: white;
overflow: hidden;
}
#app li span {
cursor: pointer;
}
.cancel{
float: right;
}
.cancelled {
text-decoration: line-through;
}
.destroy {
background-image: url("image/delete-mini.png");
width: 15px;
height: 15px;
background-color: transparent;
border: medium none;
float: left;
}
.destroy:hover {
background-position: -15px;
cursor: pointer;
}
#add {
width: 79%;
height: 50px;
font-size: 2em;
color: rgba(0, 0, 0, 0.69);
margin-left: 40px;
}