Prefix splash properties

This commit is contained in:
MrTimscampi 2020-06-30 22:16:32 +02:00
parent 783d476448
commit f6fc874ebe

View file

@ -104,6 +104,16 @@
width: 0.8em; width: 0.8em;
} }
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadein { @keyframes fadein {
from { from {
opacity: 0; opacity: 0;
@ -115,6 +125,7 @@
} }
.splashLogo { .splashLogo {
-webkit-animation: fadein 0.5s;
animation: fadein 0.5s; animation: fadein 0.5s;
width: 30%; width: 30%;
height: 30%; height: 30%;
@ -125,6 +136,7 @@
position: fixed; position: fixed;
top: 50%; top: 50%;
left: 50%; left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
</style> </style>