summaryrefslogtreecommitdiff
path: root/template/header.html
diff options
context:
space:
mode:
authorVincent Douillet <vincent@vdouillet.fr>2021-10-11 23:03:07 +0200
committerVincent Douillet <vincent@vdouillet.fr>2021-10-11 23:03:07 +0200
commit6ee862efd612832e88b154105afe4715fd1cc78b (patch)
treef3e4d2be1615d9e37a9a120b18bee6aa3bbadf6a /template/header.html
first commit
Diffstat (limited to 'template/header.html')
-rw-r--r--template/header.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/template/header.html b/template/header.html
new file mode 100644
index 0000000..33d468b
--- /dev/null
+++ b/template/header.html
@@ -0,0 +1,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>