summaryrefslogtreecommitdiff
path: root/static/css/table.css
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-27 22:55:22 -0600
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-03-27 22:55:22 -0600
commit75ba836d6072235fc7a71659f8630ab3c1b210ad (patch)
tree386b65ae6d7a4215c2f7b4944fc2f0922d162491 /static/css/table.css
parentb2fa4fe9454cbc9c9c0e265e3e6065eaa8726e2f (diff)
downloadhatecomputers.club-75ba836d6072235fc7a71659f8630ab3c1b210ad.tar.gz
hatecomputers.club-75ba836d6072235fc7a71659f8630ab3c1b210ad.zip
add dns form
Diffstat (limited to 'static/css/table.css')
-rw-r--r--static/css/table.css26
1 files changed, 26 insertions, 0 deletions
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;
+}