From b2d03536aff58643adec3db169c832069c9c9d32 Mon Sep 17 00:00:00 2001 From: Lam Anai Date: Mon, 10 Apr 2017 16:50:43 -0700 Subject: [PATCH] Add animation to destination headings --- css/app.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/app.css b/css/app.css index 3e4067da2a..4787ed863e 100644 --- a/css/app.css +++ b/css/app.css @@ -40,9 +40,14 @@ body { text-align: center; } +.destination:hover h2 { + transform: rotate(0deg); +} + h2 { margin: 0; transform: rotate(-45deg); + transition: transform 0.5s; text-shadow: 0 0 5px #01579b; }