blob: d6d952025ae59291cd6a73817755a22ce757144e (
plain)
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
|
h2,h3,h4 {
font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace;
color: darkblue;
background-color:#F0F8FF;
}
body {
font-family: Palatino, 'Palatino Linotype', serif;
color: black;
font-size: large;
}
.tag {
padding: 0.25em 0.4em;
color: white;
background-color: blue;
border-radius: 0.5em;
margin: auto 0.25em;
font-size: 0.75em;
}
.tag-bug {
background-color: red;
}
.tag-feature {
background-color: green;
}
.tag-progress {
background-color: orange;
color: black;
}
.tag-chore {
background-color: khaki;
color: black;
}
.issue-list-item {
list-style-type: none;
}
.issue-list-item a {
text-decoration: none;
}
.issue-list-item-metadata {
color: dimgray;
display: block;
font-size: small;
}
|