1/* Tables */
2
3table {
4    width: initial;
5    min-width: 50%;
6    margin-left: auto;
7    margin-right: auto;
8    border-style: $table-border-style none;
9    border-size: $table-border-size;
10    border-color: $table-border-color;
11
12    thead th,
13    tbody td,
14    tr td {
15        border-top: none;
16    }
17
18    tr:hover {
19        background-color: $table-stripe-bgcolor;
20    }
21    thead {
22        background-color: $table-thead-bgcolor;
23        color: $table-head-color;
24        tr th {
25            border-bottom: $table-cell-border-size $table-cell-border-style $table-cell-border-color;
26        }
27    }
28}
29
30