-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (62 loc) · 1.02 KB
/
style.css
File metadata and controls
64 lines (62 loc) · 1.02 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
:root {
--mainWhite: #f5f5f5;
--mainGreen: #80cfa9;
--mainBlack: #333333;
--mainRed: #d62828;
--mainBlue: #11b5e4;
}
body {
background: var(--mainWhite);
color: #333333;
}
.btn-green {
border-color: var(--mainGreen);
background: transparent;
color: var(--mainGreen);
}
.btn-green:hover {
background: var(--mainGreen);
color: var(--mainBlack);
}
.form-control {
border-color: var(--mainGreen) !important;
}
.feedback {
display: none;
}
.item {
display: flex;
justify-content: space-between;
}
.item-icon {
font-size: 1.2rem;
cursor: pointer;
}
.complete-item {
color: var(--mainGreen);
}
.complete-item:hover {
color: var(--mainGreen);
}
.edit-item {
color: var(--mainBlue);
}
.edit-item:hover {
color: var(--mainBlue);
}
.delete-item {
color: var(--mainRed);
}
.delete-item:hover {
color: var(--mainRed);
}
.completed {
text-decoration: line-through;
opacity: 0.5;
}
.visibility {
opacity: 0.5;
}
.showItem {
display: block;
}