aboutsummaryrefslogtreecommitdiffstats
path: root/main.css
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-07-16 20:14:47 -0400
committerBrian Cully <bjc@spork.org>2025-07-16 20:14:47 -0400
commitb1cabdc85ccefbd07d86be861378ba58a9e908ee (patch)
tree29ad4c8870637614bc32d6e9d861902987885c24 /main.css
parent8776d676c34b66551abfdb5bc7e85434e7ae46e7 (diff)
downloadpnit-b1cabdc85ccefbd07d86be861378ba58a9e908ee.tar.gz
pnit-b1cabdc85ccefbd07d86be861378ba58a9e908ee.zip
add table header
Diffstat (limited to 'main.css')
-rw-r--r--main.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/main.css b/main.css
index b6ae759..9ce6e35 100644
--- a/main.css
+++ b/main.css
@@ -2,6 +2,24 @@ form {
margin-bottom: 2ex;
}
+table {
+ border-collapse: collapse;
+ border: 1px solid black;
+}
+
+thead {
+ border-bottom: 1px solid black;
+}
+
+th, td {
+ border: 1px solid black;
+ padding: 2px 5px;
+}
+
+td:last-child {
+ text-align: right;
+}
+
input[name='pni-threshold'] {
text-align: right;
}