From cb61a526c82153c09ed357901166a42b48ba9d3b Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 2 Sep 2021 22:26:46 +0530 Subject: website: Add website. * website/style.css: New file. * build-aux/build-home-page.el: New file. * configure.ac: Look for emacs. * Makefile.am (EMACS_GEN, EMACS_GEN_, EMACS_GEN_0, EMACS_GEN_1): New variables. (website, website/index.html): New target. (CLEANFILES): Add website/index.html. * .gitignore: Add website/index.html. --- website/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 website/style.css (limited to 'website') diff --git a/website/style.css b/website/style.css new file mode 100644 index 0000000..a53b9b1 --- /dev/null +++ b/website/style.css @@ -0,0 +1,20 @@ +body { + margin: 40px auto; + max-width: 900px; + line-height: 1.6; + font-size: 18px; + padding: 0 10px; +} + +pre, code { + background-color: #f0f0f0; +} + +pre { + padding: 1em; +} + +/* Make the SVG badges clickable. */ +object { + pointer-events: none; +} -- cgit v1.2.3