-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (76 loc) · 1.32 KB
/
style.css
File metadata and controls
84 lines (76 loc) · 1.32 KB
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
body {
background-color: lightsteelblue;
text-align: center;
font-family: sans-serif;
}
h1 {
margin-bottom: 50px;
font-size: 50px;
}
form {
margin: auto;
background-color: lightcoral;
border-style: dotted;
border-width: 5px;
border-color: bisque;
padding: 30px;
width: 600px;
border-radius: 10px;
}
.ToDoList {
background-color: bisque;
margin: auto;
width: 500px;
border-radius: 10px;
padding-bottom: 10px;
margin-bottom: 10px;
}
.showCount{
background-color: bisque;
margin: auto;
width: 150px;
padding: 20px;
border-radius: 60px;
}
.divOfToDo {
margin: auto;
text-align: left;
background: white;
border-radius: 5px;
width: 300px;
margin-bottom: 5px;
display: flex;
justify-content: space-between;
}
.listOfToDo {
flex: 1;
}
#addBtn{
background-color: bisque;
border-radius: 10px;
}
.checkBtn {
background-color: lightgreen;
border-radius: 10px;
}
.deleteBtn {
background-color: lightcoral;
border-radius: 10px;
}
.mark {
color: grey;
text-decoration-line: line-through;
flex: 1;
}
.reset {
flex: 1;
}
.counter{
margin: auto;
margin-top: 10px;
margin-bottom: 10px;
background-color: bisque;
padding: 40px;
border-radius: 50px;
width: 150px;
}