12345678910111213141516171819202122232425262728 |
- table {
-
- max-width: 100%;
- width: initial;
- border-collapse: collapse;
- border-spacing: 0;
- }
- table td,
- table th {
- padding: $spacing-unit-tiny $spacing-unit-small;
- border: 1px solid $color-dark-gray;
- text-align: right;
- }
- table tr:nth-child(2n) {
- background-color: $color-light-gray;
- }
|