1table {
2    margin-bottom: $margin-default;
3    display: block;
4    width: 100%;
5    overflow-x: auto;
6    -webkit-overflow-scrolling: touch;
7    border-collapse: collapse;
8    word-break: keep-all;
9}
10
11caption {
12    padding: $sm-pad 0;
13}
14
15thead th {
16    border: 0;
17    border-bottom: 2px solid $dividers;
18}
19
20tr {
21    margin-bottom: $sm-pad;
22}
23
24th,
25td {
26    padding: $sm-pad;
27    vertical-align: middle;
28}
29td {
30    border-bottom: 1px solid $dividers;
31}
32
33tfoot tr {
34    text-align: left;
35}
36
37tfoot td {
38    color: $text-ui;
39    font-size: $sm-pad;
40    font-style: italic;
41    padding: $md-pad $xs-pad;
42}
43.usr-content table .code {
44    display: inline;
45}
46