-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (56 loc) · 849 Bytes
/
styles.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
body {
width: 350px;
max-height: 600px;
overflow-y: auto;
}
#task-list {
max-height: 400px;
overflow-y: auto;
}
.task-item {
margin-bottom: 10px;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
}
.tag-container {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
}
.tag {
padding: 2px 5px;
border-radius: 3px;
cursor: pointer;
opacity: 0.5;
transition: opacity 0.3s;
}
.tag.active {
opacity: 1;
}
.tag.Todo {
background-color: orange;
}
.tag.Process {
background-color: blue;
color: white;
}
.tag.Test {
background-color: black;
color: white;
}
.tag.Done {
background-color: green;
color: white;
}
.date-container {
font-size: 0.8em;
color: #666;
}
#export-csv {
font-size: 0.9em;
}
#speech-input.listening {
background-color: #dc3545;
color: white;
}