table.css 597 字节
Newer Older
Y
Yujia Chen 已提交
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
table:not(:last-child) {
    margin-bottom: 1em;
}
table {
    background-color: transparent;
    width: 100%;
    text-align: center;
}
table td,
table th {
    text-align: left;
    border-top: 1px solid #dbdbdb;
    border-left: none;
    border-right: none;
    padding: 8px 12px;
    vertical-align: top;
    border-collapse: collapse;
    border-spacing: 0;
}
table th {
    border-top: none;
    border-bottom: 1px solid #dbdbdb;
}
thead th {
    border-width: 0 0 2px;
    color: #363636;
Y
Yujia Chen 已提交
27 28 29 30 31
}

.container .col-md-9 img{
    height: auto;
    max-width: 100%;
Y
Yujia Chen 已提交
32
}