@media all and (max-width:640px) {
2
    .postTable, .postTable thead, .postTable tbody, .postTable tr, .postTable th, .postTable td {
3
        display: block;
4
    }
5

6
    .postTable {
7
        text-align: right;
8
    }
9

10
    .postTable thead {
11
        position: absolute;
12
        top: -1111px;
13
        left: -1111px;
14
    }
15

16
    .postTable td:before {
17
        float: left;
18
        padding: 0 10px 0 0;
19
        content: attr(data-label) ":";
20
    }
21

22
    .postTable td:nth-child(1) {
23
        font-weight: bold;
24
    }
25

26
    .postTable td:nth-child(1) {
27
        font-weight: bold;
28
    }
29

30
    .postTable td:last-child {
31
        border-bottom: 5px #d4e7ee solid;
32
    }
33

34
    .oddRow {
35
        background: #fff;
36
    }
37

38
    .oddCol {
39
        background: #f5f8fd;
40
    }
41
}
