mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

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