diff --git a/customize.dist/index.html b/customize.dist/index.html index 0f8f41659..cd284d80f 100644 --- a/customize.dist/index.html +++ b/customize.dist/index.html @@ -49,7 +49,7 @@ tbody { border-top: 2px solid black; } - tbody td, thead th { + tbody td { /* width: 20%; */ /* Optional */ border-right: 1px solid black; /* white-space: nowrap; */ @@ -61,9 +61,19 @@ tbody td:last-child, thead th:last-child { border-right: none; } - tbody tr:nth-child(even) { + tbody tr:nth-child(odd) { background-color: #ddd; } + tbody tr th { + box-sizing: border-box; + border: 1px solid black; + } + tbody tr th:last-child { + border-right: 0px; + } + tbody tr th:first-of-type { + border-left: 0px; + } .remove { cursor: pointer; @@ -129,77 +139,73 @@