_sass/minima/_base.scss in minima-2.1.1 vs _sass/minima/_base.scss in minima-2.2.0

- old
+ new

@@ -193,23 +193,50 @@ /** * Icons */ -.icon > svg { - display: inline-block; - vertical-align: middle; - path { - fill: $grey-color; - } +.svg-icon { + width: 16px; + height: 16px; + display: inline-block; + fill: #{$grey-color}; + padding-right: 5px; + vertical-align: text-top; } .social-media-list { - .icon { - padding-right: 5px; - } - li + li { padding-top: 5px; + } +} + + + +/** + * Tables + */ +table { + margin-bottom: $spacing-unit; + width: 100%; + 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; } }