blob: d72991ea184fa81ea1ef07a0fd18f447febdb3f0 (
about) (
plain) (
blame)
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
|
<style>
hr {
background-color: #ccc;
}
.header-anchor {
opacity: 0.5;
}
.tag {
font-family: monospace;
font-size: 70%;
background-color: lightgray;
padding: 3px;
border-radius: 5px;
}
.TODO {
color: brown;
}
.DOING {
color: yellowgreen;
}
.WAITING, .MEETING {
color: orange;
}
.INACTIVE {
color: gray;
}
.NEXT {
color: red;
}
.CANCELLED, .DONE, .WONTFIX {
color: green;
}
</style>
|