-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (66 loc) · 1.84 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (66 loc) · 1.84 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
:root {
--bg: #ffffff;
--fg: #1a1a1a;
--muted: #666;
--border: #e2e2e2;
--accent: #1f6feb;
--row-alt: #f7f9fc;
--soon: #b54708;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--fg);
background: var(--bg);
line-height: 1.5;
}
header, main, footer {
max-width: 980px;
margin: 0 auto;
padding: 0 1.25rem;
}
header { padding-top: 2.5rem; }
h1 { margin: 0 0 .25rem; font-size: 1.9rem; }
.sub { margin: 0 0 .5rem; color: var(--muted); max-width: 60ch; }
.updated { margin: 0; color: var(--muted); font-size: .85rem; }
h2 { margin: 2rem 0 .75rem; font-size: 1.3rem; }
table {
width: 100%;
border-collapse: collapse;
font-size: .95rem;
}
th, td {
text-align: left;
padding: .6rem .75rem;
border-bottom: 1px solid var(--border);
vertical-align: top;
}
thead th {
border-bottom: 2px solid var(--border);
font-size: .8rem;
text-transform: uppercase;
letter-spacing: .03em;
color: var(--muted);
}
tbody tr:nth-child(even) { background: var(--row-alt); }
td a { color: var(--accent); text-decoration: none; font-weight: 600; }
td a:hover { text-decoration: underline; }
.soon { color: var(--soon); font-weight: 600; }
.passed { text-decoration: line-through; color: var(--muted); }
.empty { color: var(--muted); font-style: italic; }
details { margin-top: 1rem; }
summary { cursor: pointer; font-weight: 600; color: var(--muted); }
details[open] summary { margin-bottom: .75rem; }
footer {
margin-top: 3rem;
padding-top: 1.5rem;
padding-bottom: 3rem;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: .85rem;
}
footer code { background: var(--row-alt); padding: .1rem .3rem; border-radius: 3px; }
@media (max-width: 640px) {
th:nth-child(5), td:nth-child(5) { display: none; }
}