summaryrefslogtreecommitdiff
path: root/Server/wwwroot/styles/data-table.css
blob: 994d6259470447dd1276eab945d4726465f3b834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
table.data-table {
    border-collapse: collapse;
    width:           100%;
}

table.data-table > tr > th {
    border-bottom: 1px solid white;
    padding:       4px;
}

table.data-table > tr > td {
    padding: 4px;
}

table.data-table > tr:nth-child(2n) {
    background: rgba(255, 255, 255, 0.1);
}

table.data-table > tr > td:not(:last-child) {
    border-right: 1px solid white;
}