diff options
Diffstat (limited to 'src/css/imports/_tables.css')
| -rwxr-xr-x | src/css/imports/_tables.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/css/imports/_tables.css b/src/css/imports/_tables.css new file mode 100755 index 0000000..d1f145a --- /dev/null +++ b/src/css/imports/_tables.css @@ -0,0 +1,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); +} |
