From 7193f740cad0d6bb35778b419a8656ae8126ddf7 Mon Sep 17 00:00:00 2001 From: "hunter@kvog.sh" Date: Wed, 17 Jun 2026 21:40:13 -0500 Subject: --- themes/kvog/assets/css/components/footer.css | 4 ++++ themes/kvog/assets/css/components/header.css | 4 ++++ themes/kvog/assets/css/main.css | 15 +++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 themes/kvog/assets/css/components/footer.css create mode 100644 themes/kvog/assets/css/components/header.css create mode 100644 themes/kvog/assets/css/main.css (limited to 'themes/kvog/assets/css') diff --git a/themes/kvog/assets/css/components/footer.css b/themes/kvog/assets/css/components/footer.css new file mode 100644 index 0000000..abe2b5a --- /dev/null +++ b/themes/kvog/assets/css/components/footer.css @@ -0,0 +1,4 @@ +footer { + border-top: 1px solid #222; + margin-top: 1rem; +} diff --git a/themes/kvog/assets/css/components/header.css b/themes/kvog/assets/css/components/header.css new file mode 100644 index 0000000..8efea1e --- /dev/null +++ b/themes/kvog/assets/css/components/header.css @@ -0,0 +1,4 @@ +header { + border-bottom: 1px solid #222; + margin-bottom: 1rem; +} diff --git a/themes/kvog/assets/css/main.css b/themes/kvog/assets/css/main.css new file mode 100644 index 0000000..11744b1 --- /dev/null +++ b/themes/kvog/assets/css/main.css @@ -0,0 +1,15 @@ +@import "components/header.css"; +@import "components/footer.css"; + +body { + color: #222; + font-family: sans-serif; + line-height: 1.5; + margin: 1rem; + max-width: 1024px; +} + +a { + color: #00e; + text-decoration: none; +} -- cgit v1.2.3