blob: 79887d6edbf6be86e42d88cb2f4932f59dae5371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
line-height: 1.5;
font-family: serif;
color: #1a1a1a;
background-color: #fdfdfd;
max-width: 70ch;
margin: auto;
}
@media (prefers-color-scheme: dark){
body {color:white;background:black}
html {color:white;background:black}
a:link, a:visited {color: #aab9c1;}
a:hover, a:active {color: hotpink;}
}
</style>
|