/** * TABLE * * Markup: * ------- * * * * * * * * * Blue * One * My life fades * *
First columnSecond columnThird column
* */ .table { background-color: $bgc-table; border: $bd-table; border-collapse: collapse; color: $c-table-text; max-width: $mwi-table; width: $w-table; th, td { border-bottom: $bd-table; padding: $p-table-cell; position: relative; } thead { border-bottom: $bd-table; } th { background-color: $bgc-table-header; color: $c-table-heading; font-size: $fz-table-heading; font-weight: $fw-table-heading; padding: $p-table-heading; white-space: nowrap; } } /** * TABLE RESPONSIVE * * Markup: * ------- * * * * * * * * * * * * * * * * * * * * * * *
First columnSecond columnThird column
BlueOneMy life fades
GreenTwo * when the world was powered by the black fuel... and the desert * sprouted great cities of pipe and steel. *
YellowThree * A whirlwind of looting, a firestorm of fear. *
* */ .table--responsive { th { display: none; } td { @include media-breakpoint-down(sm) { border: 0; } display: block; &::before { @include media-breakpoint-up(sm) { display: none; } color: $c-table-heading; content: attr(data-th)': '; display: block; font-weight: normal; } &:first-child { border-top: $bd-table; } } th, td { @include media-breakpoint-up(sm) { border-top: $bd-table; display: table-cell; } text-align: left; } }