-
Notifications
You must be signed in to change notification settings - Fork 0
/
toDOList.css
85 lines (81 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
73
74
75
76
77
78
79
80
81
82
83
84
85
.darkTheme{
main{
background: #444;
}
#task{
background-color: #444;
color: antiquewhite;
}
.task{
background-color: #445;
color: bisque;
}
}
body{
background-color:darkslategrey;
display: grid;
align-items: center;
padding: 20px;
}
.button{
border-radius: 30%;
height: 25px;
width: fit-content;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 5px;
}
main{
background-color: #fff;
padding: 5px;
margin:10pxpx;
width: 80%;
max-width: 700px;
box-shadow: 0 0 0 5px rgba(0, 0, 200, 0.2);
}
.title{
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
font-weight: 500;
background-color: cadetblue;
color:black;
width: 50%;
align-self: center;
margin: auto auto;
}
#taskList{
margin: 10px;
}
#task{
padding: 10px;
align-self: center center;
margin:auto auto;
width: 60%;
}
.task{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 300;
list-style: circle;
align-self: center;
background: #eee;
border-radius: 40px;
margin-bottom: 10px;
width: 70%;
}
.delete-btn{
height: fit-content;
width: fit-content;
border-radius: 20%;
}
.Edit-btn{
height: fit-content;
width: fit-content;
border-radius: 20%;
}
.taskContainer{
border-radius: 10%;
border: silver;
width: 60%;
align-self: center;
margin: auto auto;
background-color: antiquewhite;
}