ソースを参照

Adds some styling for tables

Caleb Fangmeier 5 年 前
コミット
6aa3983de2
共有1 個のファイルを変更した18 個の追加0 個の削除を含む
  1. 18 0
      static/css/custom.css

+ 18 - 0
static/css/custom.css

@@ -15,3 +15,21 @@ figure img {
   position: absolute;
   left: 5px;
 }
+
+/* Styling of tables */
+
+
+table {
+  border-collapse: collapse;
+}
+
+table, th, td {
+  border: 1px solid black;
+}
+
+th {
+  background-color: #4CAF50;
+  color: white;
+}
+
+tr:nth-child(even) {background-color: #f2f2f2;}