aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorAlban Gruin2020-09-13 13:51:38 +0200
committerAlban Gruin2020-09-13 16:42:20 +0200
commit69170ef4009cb7145f3a50999b898b9d2e8d7ee7 (patch)
treec7809808fb4350bcd81f64a3a9cfbd4ef39591fc /static
parent5ae315463cfaf48cbfda4d45020ebc8e8223a147 (diff)
Add webpages and style
Signed-off-by: Alban Gruin <alban at pa1ch dot fr>
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css38
1 files changed, 38 insertions, 0 deletions
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;
+ }
+}