-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (90 loc) · 1.6 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (90 loc) · 1.6 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
body {
font-family: Arial, sans-serif;
background: #1e1e1e;
color: #fff;
display: flex;
justify-content: center;
padding: 50px 0;
}
.container {
background: #2c2c2c;
padding: 20px;
border-radius: 10px;
width: 400px;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.input-container {
display: flex;
gap: 10px;
margin-bottom: 10px;
}
input, select {
padding: 8px;
border-radius: 5px;
border: none;
}
button {
padding: 8px 12px;
border-radius: 5px;
border: none;
background: #4caf50;
color: white;
cursor: pointer;
}
button:hover {
background: #45a049;
}
#searchInput {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border-radius: 5px;
}
ul {
list-style: none;
padding: 0;
margin-top: 20px;
}
li {
background: #3c3c3c;
margin-bottom: 10px;
padding: 10px;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
li.completed {
text-decoration: line-through;
opacity: 0.6;
}
.priority {
font-weight: bold;
padding: 2px 6px;
border-radius: 3px;
margin-left: 10px;
}
.priority.Alta {
background: #f44336;
}
.priority.Média {
background: #ff9800;
}
.priority.Baixa {
background: #4caf50;
}
.filters {
display: flex;
justify-content: space-around;
margin-top: 10px;
}
.filters button {
background: #555;
}
.filters button:hover {
background: #777;
}