From 0d2675d328a0f20d4eef199723afa433be5c47c2 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sun, 10 Jan 2016 12:13:04 +0300 Subject: [PATCH] =?utf8?q?=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D0=BD=D0=B8=D1=82?= =?utf8?q?=D1=8C=20bettermotherfuckingwebsite.com's=20CSS?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- style.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 style.css diff --git a/Makefile b/Makefile index 1c1b063..7fdbcfb 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ clean: rm -rf out.html html: - makeinfo --html -o out.html index.texi + makeinfo --html --css-include=style.css -o out.html index.texi static: cd static ; tar cf - . | tar xfC - ../out.html diff --git a/style.css b/style.css new file mode 100644 index 0000000..e63659a --- /dev/null +++ b/style.css @@ -0,0 +1,4 @@ +body { + margin: auto; + max-width: 800px; +} -- 2.44.0