/* set the font and the artical content width */
body {
- font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
+ font-family: sans-serif;
font-size: 16px;
- /*line-height: 1.8;*/
max-width: 75%;
margin-left: auto;
margin-right: auto;
}
/* link styling */
-a {
- color: deepskyblue;
-}
+a { color: deepskyblue; }
/* table formatting */
table {
width: 100%;
display: table;
border-collapse: separate;
- border-spacing: 2px;
border-color: grey;
-}
-
-thead {
- display: table-header-group;
- vertical-align: middle;
- border-color: inherit;
-}
-
-tbody {
- display: table-row-group;
+ text-align: left;
vertical-align: middle;
- border-color: inherit;
}
-tr {
- display: table-row;
- vertical-align: inherit;
- border-color: inherit;
+th, td {
+ padding: 0.80rem 0.80rem;
+ border-bottom: 1px solid #E1E1E1;
}
-
th:first-child, td:first-child {
padding-left: 0;
}
-
-
-th, td {
- padding: 12px 15px;
- text-align: left;
- border-bottom: 1px solid #E1E1E1;
- display: table-cell;
- vertical-align: inherit;
-}
-
-th { font-weight: bold; }
-
-