Index: sass/elements/_tables.scss
===================================================================
--- sass/elements/_tables.scss	(revision 9819)
+++ sass/elements/_tables.scss	(working copy)
@@ -2,3 +2,26 @@
 	margin: 0 0 1.5em;
 	width: 100%;
 }
+
+.helphub_article {
+
+	figure.wp-block-table {
+		margin: 1em 0;
+	}
+
+	table {
+
+		tr:nth-child(odd){
+			background-color: $color__table-odd;
+		}
+
+		th,
+		td {
+			padding: 0.5em 1em;
+
+			&:not(:first-of-type) {
+				text-align: center;
+			}
+		}
+	}
+}
Index: sass/variables-site/_colors.scss
===================================================================
--- sass/variables-site/_colors.scss	(revision 9819)
+++ sass/variables-site/_colors.scss	(working copy)
@@ -21,7 +21,9 @@
 $color__border-input: #ddd;
 $color__border-abbr: #666;

+$color__table-odd: #f3f4f5;

+
 // Colors
 $color__wp-blue: #0073aa;
 $color__base-gray: $color__text-main;