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


Please do not be surprised when the site randomly loads extremely slow. It is probably being DDoSed.


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

Template:Brimstone/styles.css

From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
/*
  BRIMSTONE BIOHAZARD BIN CSS
  Compact yellow bin with physically slanted sides
*/

.brim-bin-wrapper {
    margin: 1.5em auto;
    max-width: 450px; /* Much smaller and compact */
    /* We use drop-shadow instead of box-shadow because drop-shadow accurately follows the slanted cutouts */
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.5)); 
    font-family: sans-serif;
}

/* The lid: Slightly wider at the top */
.brim-lid {
    background: linear-gradient(to bottom, #ffe633, #ffd600);
    height: 35px;
    clip-path: polygon(2% 0%, 98% 0%, 100% 100%, 0% 100%);
    border-bottom: 2px solid #cca300;
    position: relative;
    z-index: 2;
}

/* The tub: Slants inward at the bottom (8% on both sides) */
.brim-tub {
    background: linear-gradient(to bottom, #ffd600, #e6c200);
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
    padding: 20px 15px 40px 15px; /* Extra padding at bottom for bulk */
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: -2px; /* Pulls it tight against the lid */
}

/* The black warning sticker */
.brim-sticker {
    background: #0a0a0a;
    border: 2px solid #000;
    border-radius: 4px;
    padding: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.brim-title {
    font-size: 1.1em; /* Scaled down slightly to fit the new small box */
    font-weight: bold;
    color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* The Toggle Button */
.brim-btn {
    display: inline-block;
    background: #000;
    color: #ffcc00;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.brim-btn:hover {
    background: #ffcc00;
    color: #000;
    border-color: #000;
}

/* The deep inside of the bin when opened */
.brim-content {
    margin-top: 20px;
    background: #111;
    color: #eee;
    padding: 15px;
    border: 4px solid #000; /* Creates an internal rim illusion */
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.8);
    text-align: left;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Hide MediaWiki's ugly default toggle */
.brim-bin-wrapper .mw-collapsible-toggle { 
    display: none !important; 
}