From 441b26912f03f01b793007514940272c464c9220 Mon Sep 17 00:00:00 2001 From: timmypidashev Date: Tue, 12 Oct 2021 17:06:13 -0700 Subject: [PATCH] add smooth animations to `navbar` --- css/styles.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/css/styles.css b/css/styles.css index da5ea95..cb3f69e 100644 --- a/css/styles.css +++ b/css/styles.css @@ -21,6 +21,7 @@ font-size: 18px; line-height: 25px; border-radius: 4px; + transition: all 0.2s ease-in-out; } .header a.logo { @@ -29,8 +30,8 @@ } .header a:hover { - background-color: #BBBBBB; - color: black; + transform: scale(1.1); + cursor: pointer; } .header a.active {