From: rich Date: Sat, 28 Mar 2026 04:06:14 +0000 (-0400) Subject: (no commit message) X-Git-Url: https://git.kreider.io/?a=commitdiff_plain;h=b0af0b54157f1345bf4cd883e5a134c66a3c53eb;p=wiki.git --- diff --git a/notes/ikiwiki/localcss.mdwn b/notes/ikiwiki/localcss.mdwn new file mode 100644 index 0000000..eeb5f4c --- /dev/null +++ b/notes/ikiwiki/localcss.mdwn @@ -0,0 +1,15 @@ +# local.css + +If you have the `localcss` plugin enabled, you can drop a `local.css` file in your IkiWiki source folder and modify it with additional CSS. After you finish modifying it, rebuild the wiki with `ikiwiki --setup yourwiki.setup`. + +Here's my exciting `local.css`. + +```css +body { + background-color: Canvas; + color: CanvasText; + color-scheme: light dark; + max-width: 580px; + margin: 1rem auto; +} +```