blob: bc268d4ea16103bcc29d45d1e950b569a12ea749 (
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
50
51
52
53
54
55
56
57
58
59
60
61
|
body {
font-family: sans-serif;
}
a {
color: blue;
}
table {
border-collapse: collapse;
}
tr:first-child {
border-bottom: 1px solid black;
}
tr.new-month {
border-top: 1px dotted #888;
}
tr.expired {
color: #888;
}
tr.current {
color: red;
}
tr.current .description {
color: initial;
}
th, td {
padding-right: 1em;
text-align: left;
vertical-align: top;
}
td {
font-size: 90%;
}
td.large {
font-size: initial;
}
.description {
font-size: 85%;
}
.filtered-keyword {
color: gray;
}
#keyword-filters {
column-width: 20em;
}
.title-link {
cursor: pointer;
}
|