From: June Gardner Date: Mon, 1 Sep 2025 02:35:38 +0000 (-0700) Subject: Adding footer, removing support page. X-Git-Url: https://where.june.codes/?a=commitdiff_plain;h=HEAD;p=june.codes Adding footer, removing support page. --- diff --git a/docs/support.md b/docs/support.md deleted file mode 100644 index 4e2e027..0000000 --- a/docs/support.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Support ---- -# I want to support you, how do I do that? -First, thank you so much! Second, you can support me by.. - -* Donating on [Patreon](https://patreon.com/junegardner). -* Donating on [Ko-fi](https://ko-fi.com/junegardner). -* [Getting in touch with me.](/contact) diff --git a/theme/main.html b/theme/main.html index 7f0cf09..043d167 100644 --- a/theme/main.html +++ b/theme/main.html @@ -20,11 +20,18 @@ (projects) (code) (contact) - (support)
{{ page.content }}
+ diff --git a/theme/styles.css b/theme/styles.css index f689752..1e88592 100644 --- a/theme/styles.css +++ b/theme/styles.css @@ -35,6 +35,7 @@ } html { + margin: 0; color: var(--foreground); font-family: "Maple Mono"; font-size: var(--text-size); @@ -55,7 +56,7 @@ body { } main { - height: 100%; + height: 85vh; overflow: scroll; } @@ -73,7 +74,7 @@ h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a { text-decoration: 0.1rem solid underline; } -header { +header, footer { background: var(--foreground); color: var(--background); font-weight: bold; @@ -86,7 +87,7 @@ header { gap: 0.5rem; } -header > p { +header > p, footer > p { margin: 0; width: fit-content; text-align: center; @@ -96,7 +97,7 @@ header > a { justify-self: start; } -header > a, header > nav > a { +header > a, nav > a { text-decoration: none; } @@ -104,7 +105,7 @@ header > nav > a { border-radius: 4rem; } -header > a:hover, header > nav > a:hover { +header > a:hover, nav > a:hover { color: var(--foreground); background: var(--background); }