-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
76 lines (64 loc) · 1.01 KB
/
style.css
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
:root {
font-family: "Helvetica Neue", sans-serif;
font-size: 16px;
margin: auto;
width: 700px;
}
p {
margin: 24px 0;
}
a {
color: hsl(90, 60%, 35%);
text-decoration: none;
}
h1 {
font-size: 24px;
line-height: 24px;
margin: 24px;
text-align: center;
}
main {
margin: 24px 0;
}
table {
border-collapse: collapse;
border-style: hidden;
margin: 5px 0;
}
caption {
font-size: 15px;
height: 22px;
line-height: 22px;
text-align: left;
}
caption div {
color: gray;
float: right;
font-size: 14px;
}
/* make the sort key part of the caption bold */
.sort-spec caption .spec,
.sort-test caption .test,
.sort-total caption .total {
font-weight: bold;
}
td {
background: #eee;
border: 2px solid white;
height: 10px;
padding: 0;
width: 10px;
}
td.activity {
background: hsl(90, 60%, 70%);
}
footer {
color: gray;
font-size: 14px;
margin: 24px;
text-align: center;
}
/* the loading class is added and removed by script */
.loading main, .loading footer {
display: none;
}