-
Notifications
You must be signed in to change notification settings - Fork 2
/
spot.css
52 lines (50 loc) · 933 Bytes
/
spot.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
.report-line {
font-size: 14px;
line-height: 110%;
}
.main-report-line {
font-weight: bold;
line-height: 180%;
background-color: #ccc;
color: green;
border-radius: 5px;
border: 1px solid gray;
padding-left: 5px;
padding-right: 5px;
padding-top: 2px;
padding-bottom: 2px;
}
.expected-violation-count, .actual-violation-count {
color: red;
}
.tableau {
border-collapse: collapse;
margin-bottom: 20px;
}
.tableau, .tableau th, .tableau td, .tableau {
border: 1px solid black;
}
.tableau th, .tableau td {
padding: 4px;
}
.tableau th {
font-style: italic;
background-color: #ddd;
}
.tableau td {
text-align: right;
}
.tableau .candidate {
font-weight: bold;
white-space: pre;
text-align: left;
}
.segment-hidden {
display: none !important;
}
.tableau-textarea {
display: inline-block;
width: 30em;
height: 3em;
font-size: 8px;
}