diff options
Diffstat (limited to '_sass/yat')
-rw-r--r-- | _sass/yat/_base.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/_sass/yat/_base.scss b/_sass/yat/_base.scss index e5fe278..38c41e5 100644 --- a/_sass/yat/_base.scss +++ b/_sass/yat/_base.scss @@ -207,20 +207,23 @@ table { text-align: $table-text-align; color: lighten($text-color, 18%); border-collapse: collapse; - border: 1px solid $grey-color-light; + tr { &:nth-child(even) { background-color: lighten($grey-color-light, 6%); } } + th, td { padding: ($spacing-unit / 3) ($spacing-unit / 2); } + th { background-color: lighten($grey-color-light, 3%); border: 1px solid darken($grey-color-light, 4%); border-bottom-color: darken($grey-color-light, 12%); } + td { border: 1px solid $grey-color-light; } |