v5文档模板
diff --git a/themes/bootstrap-blog/source/css/custom.css b/themes/bootstrap-blog/source/css/custom.css
index afe121b..63a6b2f 100644
--- a/themes/bootstrap-blog/source/css/custom.css
+++ b/themes/bootstrap-blog/source/css/custom.css
@@ -309,3 +309,33 @@
 .blog-footer p:last-child {
   margin-bottom: 0;
 }
+
+
+/*
+*Tables
+*/
+table {
+	border-collapse:collapse;
+	border-radius:3px;
+}
+
+table th {
+  font-weight: bold;
+  background-color: #e0e0e0;
+  text-align:left;
+}
+
+table th, table td {
+  border: 1px solid #ccc;
+  padding: 6px 13px;
+}
+
+table tr {
+  border-top: 1px solid #ccc;
+  background-color: #fff;
+}
+
+table tr:nth-child(2n) {
+  background-color: #f8f8f8;
+}
+