From 69170ef4009cb7145f3a50999b898b9d2e8d7ee7 Mon Sep 17 00:00:00 2001 From: Alban Gruin Date: Sun, 13 Sep 2020 13:51:38 +0200 Subject: Add webpages and style Signed-off-by: Alban Gruin --- static/css/style.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 static/css/style.css (limited to 'static') diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..2ff6c67 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,38 @@ +body { + max-width: 60em; + margin: 1em auto; + padding: 0 .62em; + font: 1.2em/1.62em sans-serif; + word-wrap: break-word; +} + +article { + max-width: 50em; + margin: 0 auto; +} + +h1, h3 { + line-height: 1.2em; +} + +a { + text-decoration: none; +} + +a:hover, a:focus { + text-decoration: underline; +} + +h1 a { + color: #31363b; +} + +@media print { + body, article { + max-width: none; + } + + header, footer { + display: none; + } +} -- cgit v1.2.1