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
mNo edit summary
mNo edit summary
Line 1: Line 1:
/*
/*
   BRIMSTONE BIOHAZARD BIN CSS
   BRIMSTONE BIOHAZARD BIN CSS
   Physical medical waste container design
   Compact yellow bin with physically slanted sides
*/
*/


.brim-bio-box {
.brim-bin-wrapper {
     margin: 1em auto;
     margin: 1.5em auto;
     max-width: 800px;
     max-width: 450px; /* Much smaller and compact */
     border-radius: 4px;
     /* We use drop-shadow instead of box-shadow because drop-shadow accurately follows the slanted cutouts */
     box-shadow: 0 10px 25px rgba(0,0,0,0.6);
     filter: drop-shadow(0 8px 12px rgba(0,0,0,0.5));  
     font-family: sans-serif;
     font-family: sans-serif;
    overflow: hidden;
    background: #000;
}
}


/* The heavy black plastic lid on top */
/* The lid: Slightly wider at the top */
.brim-bio-lid {
.brim-lid {
     background: linear-gradient(to bottom, #333 0%, #111 40%, #000 100%);
     background: linear-gradient(to bottom, #ffe633, #ffd600);
     height: 24px;
     height: 35px;
     border-top: 1px solid #555;
     clip-path: polygon(2% 0%, 98% 0%, 100% 100%, 0% 100%);
     border-bottom: 3px solid #000;
     border-bottom: 2px solid #cca300;
     position: relative;
     position: relative;
    z-index: 2;
}
}


/* Red plastic tub body with molded vertical ribs */
/* The tub: Slants inward at the bottom (8% on both sides) */
.brim-bio-header {
.brim-tub {
     background:  
     background: linear-gradient(to bottom, #ffd600, #e6c200);
        repeating-linear-gradient(
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
            to right,  
     padding: 20px 15px 40px 15px; /* Extra padding at bottom for bulk */
            transparent,  
    position: relative;
            transparent 60px,
    z-index: 1;
            rgba(0,0,0,0.15) 60px,
            rgba(0,0,0,0.15) 75px
        ),
        linear-gradient(to bottom, #e32626, #a61212);
     padding: 20px 15px;
     text-align: center;
     text-align: center;
     cursor: pointer;
     margin-top: -2px; /* Pulls it tight against the lid */
    user-select: none;
    border-bottom: 2px solid #4a0505;
}
}


/* The warning sticker slapped on the front of the tub */
/* The black warning sticker */
.brim-bio-plate {
.brim-sticker {
     background: #0a0a0a;
     background: #0a0a0a;
     border: 2px solid #ffcc00;
     border: 2px solid #000;
     border-radius: 6px;
     border-radius: 4px;
     padding: 15px;
     padding: 12px;
     display: inline-block;
     display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
     margin-bottom: 15px;
     margin-bottom: 15px;
}
}


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


/* The Toggle Button */
.brim-btn {
.brim-btn {
     display: inline-block;
     display: inline-block;
     background: #000;
     background: #000;
     color: #ffcc00;
     color: #ffcc00;
     font-size: 14px;
     font-size: 13px;
     font-weight: bold;
     font-weight: bold;
     padding: 8px 20px;
     padding: 8px 16px;
     border: 2px solid #ffcc00;
     border: 2px solid #000;
     border-radius: 4px;
     border-radius: 4px;
     text-transform: uppercase;
     cursor: pointer;
     letter-spacing: 1px;
     user-select: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
     transition: all 0.2s ease;
     transition: all 0.2s ease-in-out;
}
}


/* Button lights up when hovering anywhere on the tub */
.brim-btn:hover {
.brim-bio-header:hover .brim-btn {
     background: #ffcc00;
     background: #ffcc00;
     color: #000;
     color: #000;
     box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
     border-color: #000;
}
}


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


/* FORCES MEDIAWIKI TO HIDE ITS DEFAULT TOGGLE BUTTON */
/* Hide MediaWiki's ugly default toggle */
.brim-bio-box .mw-collapsible-toggle {
.brim-bin-wrapper .mw-collapsible-toggle {  
     display: none !important;
     display: none !important;  
}
}

Revision as of 14:30, 20 April 2026

/*
  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; 
}