From cde274c38c92b446f556a4faee81202fdb694775 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 3 May 2022 20:08:24 +0200 Subject: [PATCH] tabelle style.css per dark e light mode --- src/style.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/style.css b/src/style.css index 214d204..17b7360 100644 --- a/src/style.css +++ b/src/style.css @@ -18,6 +18,10 @@ img { margin: auto ; display: block ; } +table tr td{ + text-align:center; + border-top: 1px black solid; +} @media (prefers-color-scheme: dark) { body { @@ -33,6 +37,10 @@ img { h2 { color: tomato ; } + table tr td{ + text-align:center; + border-top: 1px white solid; + } } @media print { @@ -41,10 +49,6 @@ img { color: black ; } } -table tr td{ - text-align:center; - border-top: 1px white solid; -} table{ margin-right: auto; margin-left: auto;