diff --git a/css/main.css b/css/main.css index cd59a45..5d4d7bf 100644 --- a/css/main.css +++ b/css/main.css @@ -154,10 +154,13 @@ body { cursor: pointer; } #settings-cog { - width: 48px; - height: 48px; + width: 23px; + height: 23px; position: absolute; bottom: 25px; - right: 25px; } - #settings-cog .cog:hover { - fill: white; } + right: 25px; + transition: 2s ease-in; } + #settings-cog:hover .cog { + fill: white; + stroke: white; + transition: 2s ease-in; } diff --git a/index.html b/index.html index 1c7312d..9334809 100644 --- a/index.html +++ b/index.html @@ -35,8 +35,10 @@
- - + + + + diff --git a/scss/main.scss b/scss/main.scss index 0247f1b..96fd6b8 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -254,13 +254,16 @@ body { } #settings-cog { - width: 48px; - height: 48px; + width: 23px; + height: 23px; position: absolute; bottom: 25px; - right: 25px; - - .cog:hover { + right: 25px; + transition: 2s ease-in; + + &:hover .cog { fill: white; + stroke: white; + transition: 2s ease-in; } } \ No newline at end of file