blob: f14554291158a74a023f868338f1b0d3e7f6477e (
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
|
.thead .tr {
display: grid;
grid-template-columns: repeat(12, max-content);
}
.th {
padding: 8px 0 14px 10px;
height: 50px;
background: var(--color-background);
position: sticky;
top: 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.th span:last-child {
margin-left: 10px;
width: 16px;
height: 16px;
}
.td {
padding: 8px 10px;
font-size: 0.9em;
font-family: var(--font-normal);
}
.td.odd {
background: var(--color-row-odd);
}
/* download upload td cells */
.du {
text-align: right;
}
|