diff options
author | Arun Isaac | 2022-01-23 23:56:10 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-23 23:58:13 +0530 |
commit | 9503120f2cbfb05a782721eaa19f7297c069938d (patch) | |
tree | 2860d860b439a6b3144e36994c64b76de99e2b5b /website | |
parent | e8d432ab1a7b22830024bf069618eadc7978f1e5 (diff) | |
download | run64-9503120f2cbfb05a782721eaa19f7297c069938d.tar.gz run64-9503120f2cbfb05a782721eaa19f7297c069938d.tar.lz run64-9503120f2cbfb05a782721eaa19f7297c069938d.zip |
website: Add website.
* build-aux/build-home-page.el, website/style.css: New files.
* Makefile (EMACS): New variable.
(website, website/index.html): New targets.
Diffstat (limited to 'website')
-rw-r--r-- | website/style.css | 29 |
1 files changed, 29 insertions, 0 deletions
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%; +} |