Template:BibisiLauncher/style.css
From SNCApedia, the shit nobody cares about encyclopedia
/* The animation */
@keyframes fly-right {
0% { transform: translateX(0); opacity: 1; }
90% { opacity: 1; }
100% { transform: translateX(500px); opacity: 0; }
}
/* The class to trigger the animation */
.missile-flyer {
display: inline-block;
cursor: pointer;
font-size: 50px;
}
/* When the class is 'clicked' (active), run the animation */
.missile-flyer:active {
animation: fly-right 2s ease-in;
}