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
Revision as of 14:02, 20 April 2026 by SomebodyRum (talk | contribs) (testing...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
/*
  BRIMSTONE CONTAINMENT CSS
  Industrial hazard crate design.
*/

.brim-box {
    margin: 1em auto;
    border: 2px solid #530014;
    background: #0a0a0a;
    max-width: 800px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    overflow: hidden;
    font-family: sans-serif;
}

.brim-header {
    background: repeating-linear-gradient(
        -45deg,
        #2a000a,
        #2a000a 15px,
        #1a0005 15px,
        #1a0005 30px
    ); /* Dark maroon hazard stripes */
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-bottom: 3px solid #bfc200;
}

/* Yellow Hazard Tape at the very top */
.brim-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        #000,
        #000 10px,
        #bfc200 10px,
        #bfc200 20px
    );
}

.brim-title {
    order: 1; /* Flexbox trick: Keeps title above the auto-injected toggle */
    font-size: 1.5em;
    font-weight: 900;
    color: #bfc200;
    text-align: center;
    text-shadow: 0 0 8px rgba(191, 194, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.brim-title img {
    border-radius: 50%;
    background: #fff; /* In case the doctos.png needs a backdrop to pop */
}

/* MediaWiki's auto-generated Expand/Collapse button styling */
.brim-header .mw-collapsible-toggle {
    order: 2; /* Flexbox trick: Forces the button below the title */
    float: none !important;
    margin: 15px 0 0 0;
    font-size: 0; /* Hides the default MediaWiki [ ] brackets */
}

.brim-header .mw-collapsible-toggle a {
    display: inline-block;
    background: #000;
    color: #bfc200;
    font-size: 14px; /* Restores text size inside the hidden-bracket wrapper */
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #bfc200;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease-in-out;
}

.brim-header .mw-collapsible-toggle a:hover,
.brim-header .mw-collapsible-toggle a:focus {
    background: #bfc200;
    color: #000;
    box-shadow: 0 0 12px rgba(191, 194, 0, 0.8);
}

.brim-content {
    padding: 20px;
    background: #110005; /* Deep, dark vile interior */
    color: #e0e0e0;
    border-top: 1px solid #000;
    line-height: 1.6;
}