diff --git a/littlelink/css/animations.css b/littlelink/css/animations.css index 32b8765..c88c8d1 100644 --- a/littlelink/css/animations.css +++ b/littlelink/css/animations.css @@ -3,6 +3,7 @@ - Entrance animations - Button hover animations - Icon hover animations +- Footer hover animations */ @@ -51,7 +52,7 @@ –––––––––––––––––––––––––––––––––––––––––––––––––– */ /* (Also apply to icon) */ -.button-hover{ +.button-hover, .credit-hover{ display:inline-block; -webkit-transform:perspective(1px) translateZ(0); transform:perspective(1px) translateZ(0); @@ -61,7 +62,9 @@ -webkit-transition-property:transform; transition-property:transform } -.button-hover:active,.button-hover:focus,.button-hover:hover{ +.button-hover:active,.credit-hover:active, +.button-hover:focus,.credit-hover:focus, +.button-hover:hover,.credit-hover:hover{ -webkit-transform:scale(1.1); transform:scale(1.1) } @@ -144,4 +147,25 @@ -webkit-transform:translateY(0); transform:translateY(0) } -} \ No newline at end of file +} + + +/* Footer hover animations +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +.footer-hover{ + display:inline-block; + -webkit-transform:perspective(1px) translateZ(0); + transform:perspective(1px) translateZ(0); + box-shadow:0 0 1px rgba(0,0,0,0); + -webkit-transition-duration:.3s; + transition-duration:.3s; + -webkit-transition-property:transform; + transition-property:transform; + -webkit-transition-timing-function:ease-out; + transition-timing-function:ease-out +} +.footer-hover:active,.footer-hover:focus,.footer-hover:hover{ + -webkit-transform:translateY(-8px); + transform:translateY(-8px) +} diff --git a/resources/views/layouts/footer.blade.php b/resources/views/layouts/footer.blade.php index 840e2c8..1a0908a 100755 --- a/resources/views/layouts/footer.blade.php +++ b/resources/views/layouts/footer.blade.php @@ -1,16 +1,16 @@
@if(env('DISPLAY_CREDIT') === true)