Simplified web view

This commit is contained in:
2024-05-30 10:07:30 +02:00
parent c53138a6cb
commit 8e989d9330
4 changed files with 38 additions and 24 deletions

View File

@ -8,8 +8,20 @@
<style>
* {
font-family: monospace, monospace;
color: white;
background-color: #292929;
}
@media (prefers-color-scheme: light) {
* {
color: black;
background-color: white;
}
}
@media (prefers-color-scheme: dark) {
* {
color: white;
background-color: #292929;
}
}
</style>
</head>