blob: f1b7931f0585ddb7d543459607fb9d273326d2e3 (
plain)
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
|
table p {
margin: 8px 0 8px 0;
}
table tr {
background: none !important;
}
table td {
font-family: 'Lucida Console';
font-size: 8pt;
text-overflow: ellipsis;
white-space: nowrap;
}
table td:last-child {
font-size: 12pt;
}
table tr:nth-child(2n+1) td:not(:first-child) {
background: rgba(255, 255, 255, 0.1);
}
table td:nth-child(2n) {
white-space: nowrap;
width: 1px;
}
table td > div {
margin: auto;
width: min-content;
}
|