-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodolist.css
72 lines (68 loc) · 1.39 KB
/
todolist.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
body {
background-image:linear-gradient(to right,rgb(92, 79, 79), rgb(28, 25, 25));
}
.box {
width: 500px;
height: 400px;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color:whitesmoke;
border-radius: 10px;
}
#h1 {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: black;
text-align: center;
}
#taskbtn {
align-items: center;
align-content: center;
background-image: linear-gradient(to right,rgb(28, 25, 25), rgb(28, 25, 25));
color: azure;
width: 330px;
height: 40px;
margin-left: 40px;
padding-left: 20px;
}
#addbtn {
width: 50px;
height: 40px;
background-color: black;
color: azure;
margin-left: 10px;
}
.task {
border: 2px solid black;
background-color:whitesmoke;
color: black;
padding: 10px;
height:20px;
width:400px;
margin-left: 40px;
margin-top: 15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 15px;
font-weight: bold;
}
.del-btn {
width: 50px;
height: 30px;
background-color: black;
color: azure;
margin-left: 10px;
}
.task {
display: flex;
justify-content: space-between;
align-items: center;
}
.task-text {
margin-right: 10px;
}
.task button.task-btn {
margin-left: 10px;
}