-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
107 lines (90 loc) · 1.44 KB
/
style.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
* {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
text-align: center;
max-width: 800px;
margin: 20px auto;
}
ul {
list-style: none;
}
p {
border: 1px solid black;
padding: 10px 0;
margin: 10px;
}
button {
background-color: #008cba;
/* Green */
border: none;
color: white;
padding: 16px 32px;
text-align: center;
display: inline-block;
font-size: 1rem;
margin: 4px 2px;
padding: 0 10px;
transition-duration: 0.4s;
cursor: pointer;
}
.add-button {
background-color: white;
color: black;
border: 2px solid #4caf50;
}
.add-button:hover {
background-color: #4caf50;
color: white;
}
.delete-button {
background-color: white;
color: black;
border: 2px solid #008cba;
}
.delete-button:hover {
background-color: #008cba;
color: white;
}
.complete-button {
background-color: white;
color: black;
border: 2px solid #555555;
}
.complete-button:hover {
background-color: #555555;
color: white;
}
.urgent-button {
background-color: white;
color: black;
border: 2px solid #f44336;
}
.urgent-button:hover {
background-color: #f44336;
color: white;
}
.edit-button {
background-color: white;
color: black;
border: 2px solid #e7e7e7;
}
.edit-button:hover {
background-color: #e7e7e7;
}
.hidden {
display: none;
}
.completed {
text-decoration: line-through;
}
.urgent {
font-size: 18px;
color: #f44336;
}