From 1e705b4914ddc6e5912b3eb97fbe870e5d863693 Mon Sep 17 00:00:00 2001 From: Ashley Blewer Date: Tue, 17 Oct 2017 21:43:50 -0400 Subject: [PATCH] add cursor:pointer and adjust transition speed --- css/css.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/css.css b/css/css.css index 8def252..cdfe356 100644 --- a/css/css.css +++ b/css/css.css @@ -149,6 +149,7 @@ div { transition: all .5s ease-out; position: relative; width: 100%; + cursor: pointer; } .recipe:hover { @@ -166,7 +167,8 @@ div { } .recipe:hover:before, .recipe:focus:before, .recipe:active:before { - transform: scale(1.3); + transform: scale(1.5) translateX(0.1em); + transition: 0.5s; } .sidebar a { @@ -184,6 +186,7 @@ div { border: 1px solid black; transition: all .5s ease-out; position: relative; + cursor: pointer; } .contents-list:hover { @@ -202,6 +205,7 @@ div { .contents-list:hover:before, .contents-list:focus:before, .contents-list:active:before { transform: scale(1.8) translateX(0.3em); + transition: 0.5s; } .codeblock {