-
Notifications
You must be signed in to change notification settings - Fork 3
/
checker.css
92 lines (87 loc) · 1.6 KB
/
checker.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
font-family: sans-serif;
text-align: center;
}
.bookmarklet {
border-top: solid 1px #c6c6c6;
border-left: solid 1px #c6c6c6;
border-bottom: solid 1px #969696;
border-right: solid 1px #969696;
background-color: #e9e9e9;
padding: 2px;
text-decoration: none;
color: #000000;
font-family: sans-serif;
font-size: 90%;
font-weight: bold;
}
a:hover {
text-decoration: underline !important;
}
table.results {
margin: auto;
border-collapse: collapse;
}
table.results th {
text-align: left;
background-color: #000;
color: #fff;
font-weight: normal;
font-size: 90%;
padding: 5px;
border-right: solid 1px #fff;
}
table.results td {
text-align: left;
padding: 5px;
}
table.results tr.bad td {
background-color: #fcc;
border-right: solid 1px #f99;
border-bottom: solid 1px #933;
}
table.results tr.good td {
background-color: #cfc;
border-right: solid 1px #9f9;
border-bottom: solid 1px #393;
}
table.results tr.unknown td {
background-color: #ccc;
border-right: solid 1px #999;
border-bottom: solid 1px #333;
}
table.results td.legit {
text-align: center;
border-right: none !important;
}
table.results td.comment {
border-right: none !important;
}
table.results td.count {
text-align: center;
}
table.results td.type {
font-size: 80%;
}
table.results td.namespace {
font-size: 80%;
text-align: right;
}
table.results td.datatype {
vertical-align: top;
}
.error {
border: solid 1px red;
background-color: yellow;
padding: 0.5em;
margin: 1em 0 1em 0;
}
.message {
border: solid 1px black;
background-color: #cccccc;
padding: 0.5em;
margin: 1em 0 1em 0;
}
.diff {
font-size:70%;
}