blob: 33d468ba0a96fa95a7ef3ea2c1a88517ac087802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>blog.vdouillet.fr</title>
<style>
@media (prefers-color-scheme: dark){
body {color:#fff;background:#000}
a:link {color:#9cf}
a:hover, a:visited:hover {color:#cef}
a:visited {color:#c9f}
}
body{
margin:1em auto;
max-width:40em;
padding:0 .62em;
font:1.2em/1.62 sans-serif;
}
h1,h2,h3{line-height:1.2}
footer{text-align:center}
pre{overflow-x:auto}
@media print{
body{max-width:none;font-size:1em}
.noprint{display:none}
}
</style>
|