-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (97 loc) · 1.62 KB
/
style.css
File metadata and controls
113 lines (97 loc) · 1.62 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.taskmanager {
max-width: 400px;
margin: 0 auto;
padding: 20px;
}
.tasks-container-title {
text-align: center;
font-weight: normal;
font-size: 60px;
color: #333;
padding-top: 50px;
font-family: Arial;
}
.completed-tasks-container {
padding: 10px;
margin: 10px;
font-family: Arial;
font-weight: normal;
font-size: xx-large;
}
input[type="text"] {
width: 95.5%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
}
.main-btns {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s ease;
}
.main-btns:hover {
background-color: #45a049;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px;
background-color: #f9f9f9;
border-radius: 4px;
margin-bottom: 4px;
}
li span {
flex-grow: 1;
color: #333;
}
li button {
background-color: #f9f9f9;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
width: 35px;
height: 35px;
font-size: 17px;
}
.btns {
display: inline-block;
text-align: center;
padding: 0;
}
.btn-direction:hover {
background-color: #b0daff;
}
p {
font-family: sans-serif;
font-size: 17px;
}
.completed-tasks {
justify-content: center;
text-align: center;
font-family: sans-serif;
}
#completed-tasked-list {
display: inline-block;
}
.btn-delete:hover {
background-color: #f2b6a0;
}
.task:hover {
background-color: #f1f6f9;
}