13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
93
94
95
96
:root {
    --thead-background: #e2dfdc;
    --thead-background-to-gradient: #fff;
}
 
table.tablesaw tbody th {
    font-weight: bold;
}
table.tablesaw thead th,
table.tablesaw thead td {
    color: #444;
    font-size: .9em;
}
 
.tablesaw th,
.tablesaw td {
    line-height: 1em;
    text-align: left;
    vertical-align: middle;
}
.tablesaw td,
.tablesaw tbody th {
    vertical-align: middle;
    font-size: 1.17em; /* 19px */
}
.tablesaw td .btn,
.tablesaw tbody th .btn {
    margin:0;
}
 
.tablesaw thead {
    border: 1px solid #e5e5e4;
    background: var(--thead-background);
    background-image: linear-gradient(to bottom, var(--thead-background-to-gradient), var(--thead-background));
}
.tablesaw thead th {
    font-weight: 100;
    color: #777;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #fff;
    text-align: left;
}
.tablesaw thead tr:first-child th {
    font-weight: normal;
    font-family: sans-serif;
    border-right: 1px solid #e4e1de;
}
 
/* Table rows have a gray bottom stroke by default */ 
.tablesaw tbody tr {
    border-bottom: 1px solid #dfdfdf;
}
 
.tablesaw caption {
    text-align: left;
    margin-bottom: 0;
    opacity: .5;
    filter: alpha(opacity=50);
    line-height: 2.4;
}
 
@media (min-width: 25em) {
    .tablesaw caption {
        margin-bottom: .6em;
        line-height: 1.2;
    }
}
 
/* Stack */
.tablesaw-cell-label-top {
    text-transform: uppercase;
    font-size: .9em;
    font-weight: normal;
}
 
.tablesaw-cell-label {
    font-size: .65em;
    text-transform: uppercase;
    color: #888;
    font-family: sans-serif;
}
 
@media (min-width: 40em) {
    .tablesaw td {
        line-height: 2em;
    }
}
 
@media only all {
    .tablesaw-swipe .tablesaw-cell-persist {
        border-right: 1px solid #e4e1de;
    }
    .tablesaw-swipe .tablesaw-cell-persist {
        box-shadow: 3px 0 4px -1px #e4e1de;
    }
}