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:Party/style.css

From SNCApedia, the shit nobody cares about encyclopedia
Revision as of 21:28, 12 April 2026 by SomebodyRum (talk | contribs) (test)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
.party-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between the speakers and the template box */
    margin: 1em auto;
    padding: 20px; /* Prevents the scaled-up speakers from clipping */
}

/* Base class for the speakers */
.party-speaker {
    flex-shrink: 0;
    /* 0.8s loop makes it fast, simulating a high-BPM beat */
    animation: speaker-pump 0.8s infinite;
    transform-origin: center center;
}

/* Offset the right speaker slightly to make the effect feel chaotic/stereo */
.party-speaker-right {
    animation-delay: 0.15s;
}

/* 
 * Complex keyframes simulate a "random" heavy bass beat 
 * by scaling the image up and down at uneven intervals.
 */
@keyframes speaker-pump {
    0%   { transform: scale(1); }
    12%  { transform: scale(1.35); }
    25%  { transform: scale(0.95); }
    38%  { transform: scale(1.2); }
    50%  { transform: scale(1); }
    65%  { transform: scale(1.45); }
    75%  { transform: scale(0.9); }
    88%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}