New mission: revamp the portals to make them look actually tolerable to the eye. They are currently placeholders as of now.
The Gold Network: Soyworld | SNCApedia | SoyPlace


I'm not dead, just inactive for the moment. Faggot (talk) 20:16, 9 April 2026 (UTC)

Template:BibisiLauncher/style.css

From SNCApedia, the shit nobody cares about encyclopedia
Revision as of 11:24, 11 April 2026 by SomebodyRum (talk | contribs)
Jump to navigationJump to search
/* ==============================
   BIBISI LAUNCHER
   Click-to-launch via checkbox
   ============================== */

#bibisi-toggle {
    display: none;
}

.rocket-wrapper {
    display: block;
    text-align: center;
    height: 0;
    overflow: visible;
}

.rocket {
    display: inline-block;
    font-size: 2em;
    cursor: pointer;
}

.rocket-explosion {
    display: inline-block;
    font-size: 1em;
    opacity: 0;
}

/* Triggered on click */
#bibisi-toggle:checked ~ .rocket-wrapper .rocket {
    animation: rocket-fly 3s cubic-bezier(0.2, 0, 0.8, 1) forwards;
}

#bibisi-toggle:checked ~ .rocket-wrapper .rocket-explosion {
    animation: explode 1.2s ease-out forwards;
    animation-delay: 3s;
}

@keyframes rocket-fly {
    0%   { transform: translateY(0);      opacity: 1; }
    100% { transform: translateY(-110vh); opacity: 0; }
}

@keyframes explode {
    0%   { transform: translateY(-110vh) scale(1); opacity: 1; }
    50%  { transform: translateY(-110vh) scale(3); opacity: 0.8; }
    100% { transform: translateY(-110vh) scale(6); opacity: 0; }
}