-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (62 loc) · 1.16 KB
/
style.css
File metadata and controls
90 lines (62 loc) · 1.16 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
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
padding: 10px 10px 50px 50px;
background-color: grey;
}
.container {
max-width: 1000px;
margin: 0 auto;
background: white;
padding: 20px;
}
.button-group {
margin-bottom: 20px;
text-align: center;
padding: 10px;
}
button {
padding: 10px 15px;
cursor: pointer;
border: none;
border-radius: 4px;
margin: 0 5px;
font-size: 14px;
}
.filter-btn {
background-color: #3d89db;
color: white;
}
.filter-btn:hover {
background-color: #1c518a;
}
.toggle-btn {
background-color: #5e6164;
color: white;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
th{
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
td{
padding: 12px;
text-align:left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #333;
color: white;
}
.row-completed {
background-color: #d4edda;
color: #155724;
}
.row-incomplete {
background-color: #f8d7da;
color: #721c24;
}