-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (58 loc) · 858 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (58 loc) · 858 Bytes
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
/* style sheet for pacredir */
body {
font-family: sans-serif;
}
h1 {
padding-left: 36px;
background-image: url("favicon.png");
background-repeat: no-repeat;
border-bottom: 1px solid #ccc;
}
h2 {
border-bottom: 1px solid #ccc;
}
h2 a {
color: black;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code {
margin: 0 2px;
padding: 2px 5px;
border: 1px solid #ccc;
background-color: #f8f8f8;
border-radius: 3px;
}
p.foot {
color: #777;
text-align: center;
}
th {
background: #efefef;
}
td {
text-align: center;
padding: 1px 5px;
}
tr:nth-child(even) {
background: #dfdfdf;
}
tr:nth-child(odd) {
background: #efefef;
}
tr:hover {
background: #dfefef;
}
tr.offline {
color: grey;
}
@media only screen and (orientation: landscape) {
body {
margin-left: 10vw;
margin-right: 10vw;
}
}