-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (66 loc) · 1.32 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body{
background-color: #e11010;
height:100vh ;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.container1{
border-radius: 10px;
background-color: rgb(53, 46, 77);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container1 input{
padding: 5px;
border-radius: 5px;
outline: none;
border: none;
}
input:focus {
outline: none;
border: 2px rgb(50, 50, 222) solid;
}
.addbtn{
padding: 5px;
margin-left: 10px;
color: white;
background-color: rgb(43, 43, 230);
border: none;
border-radius: 10px;
}
.container1 button:hover{
background-color: rgb(106, 106, 218);
}
ul{
color: white;
width: 100%;
padding: 0px;
/* display: flex; */
}
ul li{
display: flex;
justify-content: space-around;
background-color: rgba(76, 84, 91, 0.199);
list-style: none;
padding: 7px;
margin-top: 7px;
border-radius: 8px;
cursor: pointer;
}
ul button{
background-color: rgb(157, 12, 22);
border: none;
color: white;
padding: 4px;
border-radius: 5px;
padding-right: 8px;
padding-left: 8px;
}
.completed{
text-decoration: line-through;
color: rgb(177, 180, 183);
}