@charset "utf-8";

/* -----------------------------------------------------------------------------

.table-borderless.table-striped.table-hover.table-small[

H1 | H2 | H3
:--- | :---: | ---:
1 | 2 | 3
4 | 5 | 6

]

----------------------------------------------------------------------------- */

table {
    border-collapse: collapse;
    width: 100%;
}

table th {
    background: #F0F0F0;
    color: #000;
    font-weight: normal;
    border: 1px solid #000;
    padding: 8px;
}

table td {
    border: 1px solid #ccc;
    padding: 10px 8px;
}

.table-borderless table th {
    border-top: 0;
}

.table-borderless table tr:last-child td {
    border-bottom: 0;
}

.table-borderless table tr th:first-child,
.table-borderless table tr td:first-child {
    border-left: 0;
}

.table-borderless table tr th:last-child,
.table-borderless table tr td:last-child {
    border-right: 0;
}

/* --- */

.table-striped table tr:nth-child(2n) {
    background: #F0F0F0;
}

/* --- */

.table-hover table tr:hover {
    background: #F0F0F0;
}

/* --- */

.table-small table th {
    padding: 3px;
}

.table-small table td {
    padding: 3px;
}
