| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | .table {    tbody {        tr {            td, th {                padding: 10px;                border-top: 1px solid #eee;                border-bottom: 1px solid #eee;            }        }        tr.primary {            td, th {                background-color: #1f91f3;                color: #fff;            }        }        tr.success {            td, th {                background-color: #2b982b;                color: #fff;            }        }        tr.info {            td, th {                background-color: #00b0e4;                color: #fff;            }        }        tr.warning {            td, th {                background-color: #ff9600;                color: #fff;            }        }        tr.danger {            td, th {                background-color: #fb483a;                color: #fff;            }        }    }    thead {        tr {            th {                padding: 10px;                border-bottom: 1px solid #eee;            }        }    }}.table-bordered {    border-top: 1px solid #eee;    tbody {        tr {            td, th {                padding: 10px;                border: 1px solid #eee;            }        }    }    thead {        tr {            th {                padding: 10px;                border: 1px solid #eee;            }        }    }}
 |