-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (63 loc) · 996 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
*{
box-sizing : content-box;
margin : 0;
padding: 0;
}
body{
background: rgb(233, 228, 221);
min-height: 100vh;
}
header{
font-size: 2rem;
margin: 2%;
}
header,
form {
display: flex;
justify-content: center;
align-items: center;
padding: 0.5 rem;
}
form{
margin-bottom: 3%;
}
form button,
form input{
font-size: 1.4rem;
border: none;
padding: 0.5rem;
background: white;
color: rgb(66, 66, 221);
}
form button{
cursor: pointer;
}
.todo-container{
display: flex;
justify-content: center;
align-items: center;
/* min-width: 30rem; */
}
.todo-div{
display: flex;
justify-content: space-between;
align-items: center;
margin: 5%;
padding: 0.5rem;
border: .1rem solid white;
width: 100%;
}
.todo-div li{
list-style: none;
}
.delete-btn{
cursor: pointer;
color: red;
}
.delete-btn :hover{
color: black;
}
.todo-item,
.delete-btn{
border: none;
}