From 75ba836d6072235fc7a71659f8630ab3c1b210ad Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Wed, 27 Mar 2024 22:55:22 -0600 Subject: add dns form --- static/css/table.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 static/css/table.css (limited to 'static/css/table.css') diff --git a/static/css/table.css b/static/css/table.css new file mode 100644 index 0000000..640ad83 --- /dev/null +++ b/static/css/table.css @@ -0,0 +1,26 @@ +table { + width: auto; + border-collapse: collapse; + border: 1px solid var(--border-color); +} + +th, +td { + padding: 12px 20px; + text-align: left; + border-bottom: 1px solid var(--border-color); +} + +tbody tr:nth-child(odd) { + background-color: var(--link-color); + color: var(--text-color); +} + +tbody tr { + transition: background-color 0.3s ease; +} + +tbody tr:hover { + background-color: #ff47daa0; + color: #2a2a2a; +} -- cgit v1.2.3-70-g09d2