summaryrefslogtreecommitdiff
path: root/style.css
blob: 71fdeacbd15584c8deb11594e73526f93f919ab6 (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
53
54
55
56
57
58
59
60
61
62
63
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;
    max-width: 1000px;
    margin: 0 auto;
}

pre {
    background-color: lightyellow;
    font-size: 1.2em;
    font-weight: bold;
    border-width: 0.1em;
    border-style: outset;
    padding: 0.5em;
}

.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, .tag-unassigned {
    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;
}