_badge.scss
5 years ago
_buttons.scss
5 years ago
_card.scss
5 years ago
_forms.scss
5 years ago
_table.scss
5 years ago
_table.scss
35 lines
| 1 | /** |
| 2 | * Table Stucture |
| 3 | **/ |
| 4 | |
| 5 | .everest-forms-table { |
| 6 | width: 100%; |
| 7 | color: $body-text; |
| 8 | border-collapse: collapse; |
| 9 | |
| 10 | th, |
| 11 | td { |
| 12 | padding: 16px; |
| 13 | vertical-align: top; |
| 14 | border-top: 1px solid $border-color; |
| 15 | } |
| 16 | |
| 17 | thead { |
| 18 | th { |
| 19 | vertical-align: bottom; |
| 20 | background: $color_gray-light-skin; |
| 21 | color: $color_gray-light; |
| 22 | font-weight: 500; |
| 23 | text-align: inherit; |
| 24 | border-bottom: 1px solid $border-color; |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // Scroll behaviour for responsive devices |
| 30 | .table-responsive { |
| 31 | display: block; |
| 32 | width: 100%; |
| 33 | overflow-x: auto; |
| 34 | } |
| 35 |