From 069303092e4d03c4927743a9c9a11bbf548d7b65 Mon Sep 17 00:00:00 2001 From: rowan Date: Sun, 1 Dec 2024 02:24:40 -0600 Subject: [PATCH] update links :3 --- content/index.md | 15 ++++++++++----- layouts/page.html | 8 ++++++-- static/css/main.css | 31 +++++++++++++++++++++++++++++-- 3 files changed, 45 insertions(+), 9 deletions(-) diff --git a/content/index.md b/content/index.md index b39dc4a..bd3ebb6 100644 --- a/content/index.md +++ b/content/index.md @@ -11,12 +11,17 @@
@@ -27,7 +32,7 @@
-

welcome!

+

welcome!

@@ -47,7 +52,7 @@
-

blog

+

blog

  
    @@ -65,7 +70,7 @@
-

projects

+

projects

  
    diff --git a/layouts/page.html b/layouts/page.html index bb8e124..b20081c 100644 --- a/layouts/page.html +++ b/layouts/page.html @@ -8,9 +8,13 @@
  • Blog
  • Projects
  • About
  • -
  • Fedi
  • +
  • |
  • itch.io
  • -
  • Git
  • +
  • git.kitsu.cafe
  • +
  • fem.mint.lgbt)
  • +
  • GitHub
  • +
  • |
  • +
  • Fedi
  • Email
  • diff --git a/static/css/main.css b/static/css/main.css index 6a5e5f3..747d134 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -128,7 +128,7 @@ pre { nav.main-nav { display: flex; flex-wrap: wrap; - min-width: 140px; + min-width: 160px; justify-content: center; } @@ -224,10 +224,32 @@ nav li::before { border-radius: 50%; } -.card-header { +.header { color: var(--header-color); } +.divider { + display: flex; + align-items: center; + text-align: center; + margin-top: .5rem; +} + +.divider::before, +.divider::after { + content: ''; + flex: 1; + border-bottom: 1px solid var(--muted-color); +} + +.divider:not(:empty)::before { + margin-right: .25rem; +} + +.divider:not(:empty)::after { + margin-left: .25rem; +} + .card-image { margin: 0.25rem; margin-right: 0.75rem; @@ -270,3 +292,8 @@ nav li::before { display: block; } +@media only screen and (max-width: 740px) { + .hide-mobile { + display: none; + } +}