UNPKG

598 BCSSView Raw
1/*
2
3 TABLES
4 Docs: http://tachyons.io/docs/elements/tables/
5
6*/
7
8.collapse {
9 border-collapse: collapse;
10 border-spacing: 0;
11}
12
13.striped--light-silver:nth-child(odd) {
14 background-color: var(--light-silver);
15}
16
17.striped--moon-gray:nth-child(odd) {
18 background-color: var(--moon-gray);
19}
20
21.striped--light-gray:nth-child(odd) {
22 background-color: var(--light-gray);
23}
24
25.striped--near-white:nth-child(odd) {
26 background-color: var(--near-white);
27}
28
29.stripe-light:nth-child(odd) {
30 background-color: var(--white-10);
31}
32
33.stripe-dark:nth-child(odd) {
34 background-color: var(--black-10);
35}