From 4b41e420c0ce7cbfe8819ae790f22989843aac7f Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 6 Feb 2014 11:02:53 +0530 Subject: [PATCH] cleaned up splash: --- erpnext/public/build.json | 2 +- .../{js/startup.css => css/erpnext.css} | 0 erpnext/public/css/splash.css | 52 ------------------- 3 files changed, 1 insertion(+), 53 deletions(-) rename erpnext/public/{js/startup.css => css/erpnext.css} (100%) delete mode 100644 erpnext/public/css/splash.css diff --git a/erpnext/public/build.json b/erpnext/public/build.json index d0891781bb6..7c049abc535 100644 --- a/erpnext/public/build.json +++ b/erpnext/public/build.json @@ -1,6 +1,6 @@ { "css/erpnext.css": [ - "public/js/startup.css" + "public/css/erpnext.css" ], "js/erpnext-web.min.js": [ "public/js/website_utils.js" diff --git a/erpnext/public/js/startup.css b/erpnext/public/css/erpnext.css similarity index 100% rename from erpnext/public/js/startup.css rename to erpnext/public/css/erpnext.css diff --git a/erpnext/public/css/splash.css b/erpnext/public/css/splash.css deleted file mode 100644 index 522c0b111ba..00000000000 --- a/erpnext/public/css/splash.css +++ /dev/null @@ -1,52 +0,0 @@ -@-webkit-keyframes pulse { - from { - opacity: 0.7; - } - - to { - opacity: 1; - } -} - -@keyframes pulse { - from { - opacity: 0.7; - } - - to { - opacity: 1; - } -} - - -.splash { - margin: auto; - position: absolute; - top: 0px; - left: 0px; - right: 0px; - bottom: 30px; - width: 160px; - height: 160px; - text-align: center; - color: #888; - - 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; -} - -.splash:after { - content: "erpnext"; - font-size: 30px; - font-weight: 300; - font-family: Helvetica, Arial, sans-serif; - position: relative; - top: -30px; -}