-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.css
More file actions
68 lines (65 loc) · 1.17 KB
/
todo.css
File metadata and controls
68 lines (65 loc) · 1.17 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
.header {
background-color: #cd853f;
border-radius: 2%;
}
.btnAdd {
background-color: #bcbf8f; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline;
font-size: 14px;
margin-left: 35%;
transition: background-color #00FF00 , 10s;
}
.msg {
background-color: #fff8dc;
height: 100px;
}
.inputArea {
background-color: #f5deb3;
}
.mainList {
background-color: #fff8dc;
position: relative;
}
.completedList{
background-color: #f5deb3;
}
#task {
margin-left: 20%;
}
.btnClear {
background-color: #bcbf8f; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline;
font-size: 14px;
margin-left: 35%;
}
.checkbox {
height: 25px;
width: 25px;
background-color: #eee;
}
.error{
position: relative;
animation: shake .1s linear;
animation-iteration-count: 3;
}
@keyframes shake {
0% { left: -5px; }
100% { right: -5px; }
}
.btnAdd:hover {
background-color: #32CD32;
color: black;
}
.btnClear:hover {
background-color: #32CD32;
}