blob: 1519d238ff02e70b8dc70051402a356f0fee991d [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;
24 width: 160px;
25 height: 160px;
26 position: absolute;
27 top: 0px;
28 left: 0px;
29 right: 0px;
30 bottom: 0px;
31 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;
42}