]> git.kreider.io Git - wiki.git/commitdiff
(no commit message)
authorrich <rich@web>
Sat, 28 Mar 2026 04:06:14 +0000 (00:06 -0400)
committerRich Kreider <rjkreider@gmail.com>
Sat, 28 Mar 2026 04:06:14 +0000 (00:06 -0400)
notes/ikiwiki/localcss.mdwn [new file with mode: 0644]

diff --git a/notes/ikiwiki/localcss.mdwn b/notes/ikiwiki/localcss.mdwn
new file mode 100644 (file)
index 0000000..eeb5f4c
--- /dev/null
@@ -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;
+}
+```