blob: 0e4f851c93b9cbb9798bf97bdf5136956aac1687 (
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
42
43
44
45
46
47
48
49
|
/* EuAndreh's additions */
#tasks, #bugs {
border-bottom: 5px;
}
a.header-anchor {
font-size: 0.5em;
opacity: 0.5;
}
.NEXT, .WAITING, .MEETING, .INACTIVE, .DOING, .CANCELLED, .DONE, .TODO {
color: #fff;
padding: .1em .3em;
border-radius: 3px;
background-clip: padding-box;
font-size: 80%;
font-family: Lucida Console,monospace;
line-height: 1
}
/*
Replicate colors from:
https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866
*/
.TODO {
background-color: brown;
}
.DOING {
background-color: yellowgreen;
}
.WAITING, .MEETING {
background-color: gray;
}
.INACTIVE {
background-color: orange;
}
.NEXT {
background-color: red;
}
.CANCELLED, .DONE {
background-color: green;
}
|