From 3d731a7213eb2c60246afdd339aa076ccb3c3e8f Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Sun, 13 Oct 2019 20:33:01 -0700 Subject: [PATCH] Add link hover transitions --- css/site.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/css/site.css b/css/site.css index b9c93d8..cb603da 100644 --- a/css/site.css +++ b/css/site.css @@ -51,6 +51,11 @@ body { border-width: 0.15em; height: 3em; color: #93a1a1; + transition: 0.5s color; +} + +.footer-link:hover { + color: #586e75; } .footer-link a { @@ -60,4 +65,11 @@ body { color: inherit; font-size: 1.15em; line-height: 2.5em; + transition: 0.5s color; + transition: 0.5s background-color; +} + +.footer-link a:hover { + color: #839496; + background-color: #002b36; }