-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (85 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (85 loc) · 1.17 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
margin: 0;
font-family: sans-serif;
}
h1 {
display: block;
background-color: a8a;
margin-bottom: 0;
padding-left: 10px;
}
.menu {
display: block;
background-color: aac;
margin-top: 0;
padding-left: 10px;
border-top: 1px solid black;
padding-top: 2px;
padding-bottom: 2px;
margin-bottom: 1em;
}
.menu * {
display: inline;
}
.links * {
display: inline;
}
span.FAIL {
font-size: 75%;
color: red;
}
span.OK {
font-size: 75%;
color: green;
}
.dead {
background-color: ffa3a3;
}
.live {
background-color: 9dffc2;
}
.undefeated {
background-color: 429fff;
}
.marginal {
background-color: f5f869;
}
.unlikely {
background-color: f88e2a;
}
a:link {
color: 88c;
text-decoration: none;
}
a:hover {
color: ccf;
text-decoration: none;
}
a:visited {
color: 88c;
text-decoration: none;
}
a:visited:hover {
color: ccf;
text-decoration: none;
}
table {
border-collapse: collapse;
}
table td, table th {
border: 1px solid black;
}
table tr:first-child th {
border-top: 0;
}
table tr:last-child td {
border-bottom: 0;
}
table tr td:first-child,
table tr th:first-child {
border-left: 0;
}
table tr td:last-child,
table tr th:last-child {
border-right: 0;
}