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:CIA/styles.css

From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
/* Template:CIA/styles.css
   Covert hover-to-reveal blur effect */

.cia-wrap {
    position: relative;
    display: table; /* Shrink-wraps exactly to the table size */
    margin: 0.5em auto;
    background: black; /* The box stays pitch black when hovering */
    box-shadow: 0px 0px 16px 2px #00fe20;
    border-radius: 4px;
    cursor: crosshair; /* Spooky touch */
}

/* The standard glowing green table */
.cia-front {
    position: relative;
    z-index: 2;
    transition: opacity 0.6s ease, filter 0.6s ease;
}

/* The hidden creepy text */
.cia-hidden {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    color: #ff3333; /* Eerie red */
    text-shadow: 0 0 5px #ff3333;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.2em;
    padding: 1em;
    
    opacity: 0;
    filter: blur(8px); /* Starts heavily blurred */
    transition: opacity 0.6s ease, filter 0.6s ease;
    z-index: 1;
}

/* The magic hover transitions */
.cia-wrap:hover .cia-front {
    opacity: 0.1; /* Almost completely fades out */
    filter: blur(5px);
}

.cia-wrap:hover .cia-hidden {
    opacity: 1;
    filter: blur(0px); /* Snaps into focus */
}

@media (prefers-reduced-motion: reduce) {
    .cia-front, .cia-hidden {
        transition-duration: 0s !important;
    }
}