diff --git a/index.html b/index.html index e5dccdf..86dc658 100644 --- a/index.html +++ b/index.html @@ -19,6 +19,7 @@ theCourseForum + — university enrollment analytics
  • atlas + — cutting-edge machine learning research blog
  • nvimdev + — open-source neovim contributions
  • resume

    @@ -45,6 +52,7 @@ a { color: inherit; } + body { font-family: et-book; font-size: 1.5em; @@ -55,11 +63,11 @@ overscroll-behavior-y: none; overscroll-behavior-x: none; } - body, html { overflow-anchor: none; } + .project { position: relative; text-decoration: none; @@ -72,10 +80,36 @@ background-color: #000; bottom: 0; left: 0; - transition: width 0.3s; + transition: width 0.4s; } .project:hover::after { width: 100%; } + .description { + visibility: hidden; + white-space: nowrap; + overflow: hidden; + width: 0; + transition: all 0.4s ease; + display: inline-block; + vertical-align: top; + max-width: 0; + } + .project:hover + .description, + .description.revealed { + visibility: visible; + width: auto; + max-width: 450px; + } +