From 8867caaf0879ac743c94f47df99ec17e3e54767f Mon Sep 17 00:00:00 2001 From: ubergeek Date: Tue, 25 Oct 2022 00:48:41 +0000 Subject: [PATCH] More cleanup --- includes/sidebar.md | 2 +- includes/site.css | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 includes/site.css diff --git a/includes/sidebar.md b/includes/sidebar.md index 2cd2ebc..3a6cade 100644 --- a/includes/sidebar.md +++ b/includes/sidebar.md @@ -1,3 +1,3 @@ * [Home](/) -* [Freuquentyl Asked Questions](/faq) +* [Frequently Asked Questions](/faq) * [Architecture](/architecture) diff --git a/includes/site.css b/includes/site.css new file mode 100644 index 0000000..7eed0b7 --- /dev/null +++ b/includes/site.css @@ -0,0 +1,40 @@ +/* +This file is licensed under the AGPL 3.0 or later. +*/ + +body { + font-family: "Courier New", Courier, monospace; +} + +#body { + width: 95%; +} + +#header { + width: 90%; + text-align: center; + font-size: xx-large; +} +#content { + width: 78%; + float: left; + font-size: medium; +} + +#content img { + max-height: 400px; + max-width: 98%; +} + +#sidebar { + width: 18%; + float: right; + font-size: small; +} + +#footer { + width: 90%; + text-align: center; + clear: both; + font-size: smaller; +}