diff --git a/stylesheets/main.css b/stylesheets/main.css index 074c553..c8e3136 100644 --- a/stylesheets/main.css +++ b/stylesheets/main.css @@ -98,6 +98,10 @@ header { color: white; font-family: "fontawesome"; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); } + header #refresh:focus { + background: rgba(255, 255, 255, 0.2); } + header #refresh:active { + background: rgba(255, 255, 255, 0.3); } footer { position: fixed; diff --git a/stylesheets/main.scss b/stylesheets/main.scss index 29f5cd7..2092980 100644 --- a/stylesheets/main.scss +++ b/stylesheets/main.scss @@ -57,6 +57,12 @@ header { color: white; font-family: "fontawesome"; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); + &:focus { + background: rgba(255, 255, 255, 0.2); + } + &:active { + background: rgba(255, 255, 255, 0.3); + } } }