blob: fdd4ac468732d81f974ce9092a91da958af35e0d [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 Doshid379cb72013-06-05 12:12:56 +053029 width: 160px;
30 height: 160px;
Anand Doshi9c8ed8b2013-06-05 11:32:11 +053031 color: #888;
32 text-align: center;
33 animation-duration: 1s;
34 animation-name: pulse;
35 animation-iteration-count: infinite;
36 animation-direction: alternate;
37
38 -webkit-animation-duration: 1s;
39 -webkit-animation-name: pulse;
40 -webkit-animation-iteration-count: infinite;
41 -webkit-animation-direction: alternate;
Anand Doshi1510de32013-06-05 11:50:07 +053042}