diff options
author | Arun Isaac | 2022-01-08 21:50:35 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-08 21:50:35 +0530 |
commit | d81d606136df6543382f86cf8f3d1a8c66331079 (patch) | |
tree | 9c4404af9b4285d0f44ce03b0c0dac5fd2b071fc /website | |
parent | ec7dc75811a65d8c6c6f3c626169e3c65f453fb1 (diff) | |
download | guix-forge-d81d606136df6543382f86cf8f3d1a8c66331079.tar.gz guix-forge-d81d606136df6543382f86cf8f3d1a8c66331079.tar.lz guix-forge-d81d606136df6543382f86cf8f3d1a8c66331079.zip |
website: Add website.
* Makefile, build-aux/build-home-page.el, website/style.css: New
files.
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%; +} |