From 9503120f2cbfb05a782721eaa19f7297c069938d Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 23 Jan 2022 23:56:10 +0530 Subject: website: Add website. * build-aux/build-home-page.el, website/style.css: New files. * Makefile (EMACS): New variable. (website, website/index.html): New targets. --- website/style.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 website/style.css (limited to 'website/style.css') diff --git a/website/style.css b/website/style.css new file mode 100644 index 0000000..4f310ce --- /dev/null +++ b/website/style.css @@ -0,0 +1,29 @@ +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; +} + +code { + padding-left: 0.2em; + padding-right: 0.2em; +} + +/* Make the SVG badges clickable. */ +object { + pointer-events: none; +} + +img { + max-width: 100%; +} -- cgit v1.2.3