-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTo-do.css
More file actions
60 lines (60 loc) · 1004 Bytes
/
To-do.css
File metadata and controls
60 lines (60 loc) · 1004 Bytes
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
*{
margin: 0;
}
h1{
font-size: 50px;
text-align: center;
background-color: rgb(246, 218, 165);
}
section{
display: flex;
justify-content: center;
margin-top: 50px;
}
input{
width: 300px;
height: 30px;
border-radius: 12px;
border: 2px solid brown;
}
input::placeholder{
font-size: 16px;
color: black;
}
button{
width: 120px;
height: 30px;
font-size: 18px;
background-color: aquamarine;
border-radius: 12px;
border: 2px solid rgb(1, 68, 68);
}
button:hover{
cursor: pointer;
opacity: 0.8;
}
.container{
width: 450px;
height: 400px;
background-color: rgb(160, 251, 146);
padding: 20px;
}
div{
width:300px;
height: 200px;
background-color: rgb(220, 249, 177);
border-radius: 20px;
padding: 10px;
margin: 10px;
}
div ul li{
font-size: 19px;
}
.del{
background-color: red;
width: 42px;
height: 26px;
border-radius: 6px;
position: absolute;
left: 700px;
}