From e75c7fb38a9818b5c95f226912b209b21c0c23fb Mon Sep 17 00:00:00 2001 From: Dominic Matarese Date: Wed, 1 Sep 2021 23:20:31 +0000 Subject: color now fades in and out on link hover --- style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.css b/style.css index b5edaf5..3e4587c 100644 --- a/style.css +++ b/style.css @@ -27,11 +27,19 @@ body { a { color: #20FF86; + -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; + -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; + -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; + transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; text-decoration: none; } a:hover { color: #ffdd00; + -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; + -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; + -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; + transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; text-decoration: none; } -- cgit v1.2.1