From 448749b6b416ba913bfee6aff022f66baa8fbc43 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Mon, 11 Dec 2017 08:19:17 -0800 Subject: [PATCH] animations. --- resources/public/index.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/resources/public/index.html b/resources/public/index.html index f9d5f40a..ace4a0d0 100644 --- a/resources/public/index.html +++ b/resources/public/index.html @@ -21,6 +21,19 @@ height: 100%; background-color: #fff; } + body { + animation: scaleUp .7s ease both; + } + @keyframes scaleUp { + from { opacity: 0; transform: scale(.95); } + } + + @keyframes moveToTop { + from { } + to { -webkit-transform: translateY(-100%); transform: + translateY(-100%); } + } + .left-nav { width: 300px; } @@ -49,6 +62,9 @@ color: #2EB398; border: 3px solid #2EB398; } + .inbox-messages { + animation: scaleUp .7s ease both; + } .nav.menu .nav-item .icon-btn .fa { font-size: 20px; color: #B7C6C9;