tabelle style.css per dark e light mode

This commit is contained in:
Marco 2022-05-03 20:08:24 +02:00
parent 4cc4a7a3ca
commit cde274c38c

View File

@ -18,6 +18,10 @@ img {
margin: auto ; margin: auto ;
display: block ; display: block ;
} }
table tr td{
text-align:center;
border-top: 1px black solid;
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
body { body {
@ -33,6 +37,10 @@ img {
h2 { h2 {
color: tomato ; color: tomato ;
} }
table tr td{
text-align:center;
border-top: 1px white solid;
}
} }
@media print { @media print {
@ -41,10 +49,6 @@ img {
color: black ; color: black ;
} }
} }
table tr td{
text-align:center;
border-top: 1px white solid;
}
table{ table{
margin-right: auto; margin-right: auto;
margin-left: auto; margin-left: auto;