blob: d4f0493fb1bf108130b6e077cff3e926703fe317 [file] [log] [blame]
Anand Doshi9c8ed8b2013-06-05 11:32:11 +05301@-webkit-keyframes pulse {
2 from {
3 opacity: 0.7;
4 }
5
6 to {
7 opacity: 1;
8 }
9}
10
11@keyframes pulse {
12 from {
13 opacity: 0.7;
14 }
15
16 to {
17 opacity: 1;
18 }
19}
20
21
22.splash {
23 margin: auto;
Anand Doshi9c8ed8b2013-06-05 11:32:11 +053024 position: absolute;
25 top: 0px;
26 left: 0px;
27 right: 0px;
Anand Doshi51564632013-06-05 12:36:50 +053028 bottom: 30px;
Anand Doshid379cb72013-06-05 12:12:56 +053029 width: 160px;
30 height: 160px;
Anand Doshi9c8ed8b2013-06-05 11:32:11 +053031 text-align: center;
Anand Doshi713c1832013-06-05 12:25:28 +053032 color: #888;
33
Anand Doshi9c8ed8b2013-06-05 11:32:11 +053034 animation-duration: 1s;
35 animation-name: pulse;
36 animation-iteration-count: infinite;
37 animation-direction: alternate;
38
39 -webkit-animation-duration: 1s;
40 -webkit-animation-name: pulse;
41 -webkit-animation-iteration-count: infinite;
42 -webkit-animation-direction: alternate;
Anand Doshi1510de32013-06-05 11:50:07 +053043}
Anand Doshi713c1832013-06-05 12:25:28 +053044
45.splash:after {
46 content: "erpnext";
47 font-size: 30px;
48 font-weight: 700;
49 font-family: Helvetica, Arial, sans-serif;
50 position: relative;
Anand Doshi51564632013-06-05 12:36:50 +053051 top: -30px;
Anand Doshi713c1832013-06-05 12:25:28 +053052}