From 675e39fa962b30ee013d1feb0aa148b4ebdd1837 Mon Sep 17 00:00:00 2001
From: Tim Keller <tjkeller.xyz>
Date: Sat, 11 Jan 2025 21:53:07 -0600
Subject: add table themeimg

---
 static/stylesheets/style.css | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css
index 27b9ae7..4c32ae3 100644
--- a/static/stylesheets/style.css
+++ b/static/stylesheets/style.css
@@ -140,6 +140,36 @@ img, figcaption {
 	opacity: .2;
 }
 
+.overflow-box {
+	overflow: scroll;
+}
+
+table {
+	border-collapse: collapse;
+}
+
+tr:nth-child(even) {
+	background: #252525;
+}
+
+th {
+	background: #333;
+	border-right: 1.5px solid #222;
+	padding: .25em;
+}
+
+td:not(.img) {
+	padding-inline: .75ex;
+}
+
+td:not(:last-child) {
+	border-right: 1.5px solid #2b2b2b;
+}
+
+td.img {
+	border: none;
+}
+
 @media (max-width: 1000px) {
 	header {
 		grid-template-columns: auto auto;
-- 
cgit v1.2.3