From d7a8137fa842fbee6bf5ac1815376257903224d9 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 8 Oct 2023 23:10:23 -0400 Subject: [PATCH] feat: organize projects --- index.html | 41 +++++++++++++++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 4cd90c3..dbe9bb6 100644 --- a/index.html +++ b/index.html @@ -4,10 +4,6 @@ - Barrett Ruth @@ -16,7 +12,15 @@

projects

-

nvimdev

+
    +
  1. + theCourseForum +
  2. +
  3. + atlas +
  4. +
  5. nvimdev
  6. +

resume

@@ -31,9 +35,34 @@ body { font-family: et-book; font-size: 1.5em; - background-color: #fffff8; + background-color: #f9f5d7; margin: 100px auto; max-width: 650px; + scroll-behavior: smooth; + overscroll-behavior-y: none; + overscroll-behavior-x: none; + } + + body, + html { + overflow-anchor: none; + } + .project { + position: relative; + text-decoration: none; + } + .project::after { + content: ""; + position: absolute; + width: 0; + height: 1px; + background-color: #000; + bottom: 0; + left: 0; + transition: width 0.3s; + } + .project:hover::after { + width: 100%; }