-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.css
More file actions
55 lines (45 loc) · 1.69 KB
/
status.css
File metadata and controls
55 lines (45 loc) · 1.69 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
table {
border: 1px solid gray;
border-collapse: collapse;
font-family: "Helvetica Neue", Helvetica, Arial;
margin-right: 200px; /* leave room for GitHub ribbon */
}
.sortable th {
cursor: pointer;
}
table tr:first-child th {
background: firebrick;
color: white;
}
table tr th {
text-align: left;
padding: 5px 8px 5px 8px;
}
table tr td {
padding: 2px 8px 2px 8px;
}
table tr:nth-child(even) {
background: #ccc;
}
table tr:nth-child(odd) {
background: #eee;
}
table td:nth-child(2), table td:nth-child(5), table td:nth-child(8) {
border-right: 1px solid gray;
}
.unknown {
color: brown;
font-style: italic;
font-weight: bold;
}
.overridden {
color: darkgoldenrod;
font-style: italic;
}
.wasOverridden {
color: darkred;
font-style: italic;
font-weight: bold;
}
/* Generated by https://codepo8.github.io/css-fork-on-github-ribbon/ */
#forkongithub a{background:#000;color:#fff;text-decoration:none;font-family:arial,sans-serif;text-align:center;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:#c11;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:"";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#fff;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:800px){#forkongithub{position:fixed;display:block;top:0;right:0;width:200px;overflow:hidden;height:200px;z-index:9999;}#forkongithub a{width:200px;position:absolute;top:60px;right:-60px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);box-shadow:4px 4px 10px rgba(0,0,0,0.8);}}