blob: 68f3f0173037f2e017249cc431916e589031487d [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;
28 bottom: 0px;
Anand Doshi1510de32013-06-05 11:50:07 +053029 background-image: none, url("../images/splash.svg");
30 background-position: center;
31 background-repeat: no-repeat;
32 background-size: 160px;
Anand Doshi9c8ed8b2013-06-05 11:32:11 +053033 color: #888;
34 text-align: center;
35 animation-duration: 1s;
36 animation-name: pulse;
37 animation-iteration-count: infinite;
38 animation-direction: alternate;
39
40 -webkit-animation-duration: 1s;
41 -webkit-animation-name: pulse;
42 -webkit-animation-iteration-count: infinite;
43 -webkit-animation-direction: alternate;
Anand Doshi1510de32013-06-05 11:50:07 +053044}