blob: 576f690f543640cc4399d1cceb54ec9c371d97c5 (
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
33
34
35
36
37
38
39
40
41
42
|
* {
margin: 0;
padding: 0;
}
d3_table {
width: 100%;
border-collapse: collapse;
margin: 8;
}
d3_caption {
font-size: 16pt;
text-align: left;
}
/* Zebra striping */
d3_tr:nth-of-type(even) {
background: LightGrey;
}
d3_th {
background: #3071a9;
color: white;
font-size: 12pt;
font-weight: normal;
}
d3_td, d3_th {
padding: 6px;
border: 1px solid #ccc;
text-align: center;
}
.horizontal-header {
background: #3071a9;
color: white;
font-size: 12pt;
}
.corner-header {
background: LightGrey;
color: black;
font-size: 12pt;
}
|