45 lines
717 B
CSS
45 lines
717 B
CSS
@-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: 0px;
|
|
background-image: none, url("../images/splash.svg");
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: 160px;
|
|
color: #888;
|
|
text-align: center;
|
|
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;
|
|
}
|