diff --git a/public/css/ui/common.css b/public/css/ui/common.css index 66467b47e1..c6dee486c8 100644 --- a/public/css/ui/common.css +++ b/public/css/ui/common.css @@ -14,23 +14,57 @@ a { .content { background-color: #fff; - -moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.7); -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.7); box-shadow: 0px 0px 6px rgba(0,0,0,0.7); } +@-webkit-keyframes pulse { + from { + opacity: 0.7; + } + + to { + opacity: 1; + } +} + +@keyframes pulse { + from { + opacity: 0.7; + } + + to { + opacity: 1; + } +} + + .splash { position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; - background-color: #eee; + background-image: none, url("../app/images/erpnext-2013.svg"); + background-position: center; + background-repeat: no-repeat; + background-size: 160px; color: #888; text-align: center; padding-top: 250px; + animation-duration: 1s; + animation-name: pulse; + animation-iteration-count: infinite; + animation-direction: alternate; + + -webkit-animation-duration: 1s; + -webkit-animation-name: pulse; + -webkit-animation-iteration-count: infinite; + -webkit-animation-direction: alternate; + } + /* listing */ .list-row { diff --git a/public/html/app.html b/public/html/app.html index 6a81c06d20..13e92caf2d 100644 --- a/public/html/app.html +++ b/public/html/app.html @@ -9,7 +9,8 @@ -
Loading...
+
+