From 1cbf2e9554b1f45910f87d6b8c67519ebf43139a Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Sun, 2 Feb 2020 02:42:57 +0530 Subject: [PATCH] [Design] Change buttons on hover on subscribe --- scss/index.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scss/index.scss b/scss/index.scss index 0bb7c1b..5a7e0af 100644 --- a/scss/index.scss +++ b/scss/index.scss @@ -110,17 +110,18 @@ body { } a:hover, a:active { font-size: 0; - color: #FFF; - background-color: #000; text-decoration: none; transition-duration: 0.2em; + background-color: rgba(0, 0, 0, 0.25); + border-radius: 30px; } a:hover::after { + transition-duration: 0.2em; content: attr(x-text); position: relative; top: 50px; - font-size: 1rem; - text-decoration: none; + font-size: 1.1rem; + text-decoration: bold; } } }