style.cssの2280行目あたりからが、tableについての指定
table {
/* background: #fff; */ 背景色の指定を外す →MT総研 白くしたくなったのでイキ
/* border: solid 1px #ddd; */ 枠は要らない
}
table tr.even, table tr.alt, table tr:nth-of-type(even) {
/* background: #f9f9f9; */ シマシマの濃い方の背景色を消す
}
表組の中の文字の色を変えたくないし、文字も小さくしたくないので 以下2カ所コメントアウト
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td {
/* font-size: 0.875em;
color: #222; */
}
table tr th, table tr td {
/* font-size: 0.875em;
color: #222; */
}
Addcss
.tablepress .odd td {
background-color: #ffffff;
}