_sass/_table.scss in askclass-news-theme-0.2.11 vs _sass/_table.scss in askclass-news-theme-0.2.12
- old
+ new
@@ -1,22 +1,19 @@
$odd: #2a2a2a;
$even: #2f2f2f;
-$border: #333;
table {
- border-bottom: 2px solid $border;
- border-collapse: collapse;
table-layout: fixed;
th {
- background-color: $border;
+ background-color: $even;
}
tr:nth-child(odd) {
background-color: $odd;
}
tr:nth-child(even) {
background-color: $even;
}
td, th {
vertical-align: top;
- padding: 5px;
+ padding: 7px;
}
}