diff --git a/style.css b/style.css index 1270fa9..c297817 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,7 @@ body { margin: 0; padding: 0; + background-color: white; font-family: Times, 'Times New Roman', Georgia, serif; } @@ -48,6 +49,7 @@ table.grille { height: 2rem; border: 1px solid black; padding: 2px; + background-color: white; } .grille tr:nth-of-type(2) td { @@ -179,3 +181,11 @@ button[type="submit"]:active { -ms-text-size-adjust: 100%; } } + +@media (prefers-color-scheme: dark) { + body, + button { + background-color: #02081a; + color: #c6c6c6; + } +}