_table.scss 1.12 KB
table {
    width         : 100%;
    //border-top    : 1px solid #ccc;
    border-bottom : 1px solid #ccc;
    margin-bottom: 15px;

    thead tr, tbody tr:first-child {
        border-bottom : 1px solid #ccc;

        th, td {
            font-family : "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
            font-size   : 14px;
            font-weight : bold;
            padding     : 3px 5px;
        }

        th:first-child, td:first-child {
            padding-left: 0;
        }

        th:last-child, td:last-child {
            padding-right :0;
        }

    }

    tbody {
        tr {
            margin-top: 2px;
            border-bottom : 1px solid #dfdfdf;

            td {
                font-family : "HelveticaNeue", Helvetica, Arial, sans-serif;
                font-size   : 12px;
                font-weight : normal;
                padding     : 3px 5px;
            }

            td:first-child {
                padding-left: 0;
            }

            td:last-child {
                padding-right :0;
            }
        }

        tr:last-child {
            border-bottom : 0;
        }
    }
}