-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.css
58 lines (55 loc) · 958 Bytes
/
todo.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
57
58
/* *{
padding: auto;
margin: auto;
} */
body{
background-color: teal;
color: bisque;
text-align: center;
}
#find{
background-color:crimson;
margin: 10px ;
margin-left: 50px;
width: 300px;
padding: 10px;
text-align: left;
color:beige;
border-radius: 5px;
border: bisque;
}
li{
list-style-type: none;
border: 2px dotted bisque;
max-width: 300px;
margin: 10px auto;
padding: 20px;
background-color: crimson;
cursor:pointer;
border-radius: 5px;
}
#btn1{
margin: 10px ;
margin-left: 50px;
padding: 10px 120px;
background-color: crimson;
color:beige;
border-radius: 5px;
border: bisque;
}
p{
color: red;
font-weight: bolder;
margin-bottom: 0px;
margin-top: 25px;
padding-left: 20px;
}
#btn1:hover{
background-color: #ff0963;
}
#btn1:active{
background-color: #b9285d;
}
.hide{
display: none !important;
}