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: Difference between revisions

From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
testing...
 
mNo edit summary
Line 1: Line 1:
/*
/*
   BRIMSTONE CONTAINMENT CSS
   BRIMSTONE CONTAINMENT CSS
   Industrial hazard crate design.
   Sanitizer-safe HTML details/summary container
*/
*/


Line 11: Line 11:
     border-radius: 6px;
     border-radius: 6px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.6);
     box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    overflow: hidden;
     font-family: sans-serif;
     font-family: sans-serif;
}
}
Line 22: Line 21:
         #1a0005 15px,
         #1a0005 15px,
         #1a0005 30px
         #1a0005 30px
     ); /* Dark maroon hazard stripes */
     );
     padding: 20px 15px;
     padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
     position: relative;
     position: relative;
     border-bottom: 3px solid #bfc200;
     border-bottom: 3px solid #bfc200;
    display: block;
    cursor: pointer;
    list-style: none; /* Removes native dropdown arrow */
}
}


/* Yellow Hazard Tape at the very top */
/* Yellow Hazard Tape at the top */
.brim-header::before {
.brim-header::before {
     content: "";
     content: "";
Line 47: Line 46:


.brim-title {
.brim-title {
    order: 1; /* Flexbox trick: Keeps title above the auto-injected toggle */
     font-size: 1.5em;
     font-size: 1.5em;
     font-weight: 900;
     font-weight: 900;
Line 60: Line 58:
}
}


.brim-title img {
.brim-btn-container {
     border-radius: 50%;
     text-align: center;
     background: #fff; /* In case the doctos.png needs a backdrop to pop */
     margin-top: 15px;
}
}


/* MediaWiki's auto-generated Expand/Collapse button styling */
.brim-btn {
.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;
     display: inline-block;
     background: #000;
     background: #000;
     color: #bfc200;
     color: #bfc200;
     font-size: 14px; /* Restores text size inside the hidden-bracket wrapper */
     font-size: 14px;
     font-weight: bold;
     font-weight: bold;
     padding: 8px 16px;
     padding: 8px 16px;
     border: 2px solid #bfc200;
     border: 2px solid #bfc200;
     border-radius: 4px;
     border-radius: 4px;
    text-decoration: none;
     text-transform: uppercase;
     text-transform: uppercase;
     letter-spacing: 1px;
     letter-spacing: 1px;
Line 88: Line 77:
}
}


.brim-header .mw-collapsible-toggle a:hover,
/* Hover effects for the whole banner */
.brim-header .mw-collapsible-toggle a:focus {
.brim-header:hover .brim-btn {
     background: #bfc200;
     background: #bfc200;
     color: #000;
     color: #000;
     box-shadow: 0 0 12px rgba(191, 194, 0, 0.8);
     box-shadow: 0 0 12px rgba(191, 194, 0, 0.8);
}
/*
  Button Swap Logic
  Safely uses attribute selectors supported by MediaWiki
*/
.brim-btn-collapse {
    display: none;
}
.brim-box[open] .brim-btn-expand {
    display: none;
}
.brim-box[open] .brim-btn-collapse {
    display: inline-block;
}
}


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

Revision as of 14:06, 20 April 2026

/*
  BRIMSTONE CONTAINMENT CSS
  Sanitizer-safe HTML details/summary container
*/

.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);
    font-family: sans-serif;
}

.brim-header {
    background: repeating-linear-gradient(
        -45deg,
        #2a000a,
        #2a000a 15px,
        #1a0005 15px,
        #1a0005 30px
    );
    padding: 20px 15px;
    position: relative;
    border-bottom: 3px solid #bfc200;
    display: block;
    cursor: pointer;
    list-style: none; /* Removes native dropdown arrow */
}

/* Yellow Hazard Tape at the 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 {
    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-btn-container {
    text-align: center;
    margin-top: 15px;
}

.brim-btn {
    display: inline-block;
    background: #000;
    color: #bfc200;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #bfc200;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease-in-out;
}

/* Hover effects for the whole banner */
.brim-header:hover .brim-btn {
    background: #bfc200;
    color: #000;
    box-shadow: 0 0 12px rgba(191, 194, 0, 0.8);
}

/* 
   Button Swap Logic 
   Safely uses attribute selectors supported by MediaWiki
*/
.brim-btn-collapse { 
    display: none; 
}
.brim-box[open] .brim-btn-expand { 
    display: none; 
}
.brim-box[open] .brim-btn-collapse { 
    display: inline-block; 
}

.brim-content {
    padding: 20px;
    background: #110005;
    color: #e0e0e0;
    border-top: 1px solid #000;
    line-height: 1.6;
}