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
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/*
/*
   BRIMSTONE BIOHAZARD BIN CSS
   BRIMSTONE HAZARD LABEL & INVENTORY CSS
   Compact yellow bin with physically slanted sides
   Shrink-wrapped (Sanitizer-safe) with larger bottom text
*/
*/


.brim-bin-wrapper {
.brim-wrapper {
     margin: 1.5em auto;
     margin: 1em auto;
     max-width: 450px; /* Much smaller and compact */
     display: table; /* MAGIC FIX: Shrink-wraps the container safely */
    /* We use drop-shadow instead of box-shadow because drop-shadow accurately follows the slanted cutouts */
     font-family: "Arial Black", "Arial Bold", sans-serif;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.5));
     font-family: sans-serif;
}
}


/* The lid: Slightly wider at the top */
/* THE CLICKABLE STICKER */
.brim-lid {
.brim-sticker {
     background: linear-gradient(to bottom, #ffe633, #ffd600);
     background: #fff;
     height: 35px;
    border: 4px solid #000;
     clip-path: polygon(2% 0%, 98% 0%, 100% 100%, 0% 100%);
    border-radius: 0;
     border-bottom: 2px solid #cca300;
    cursor: pointer;
     position: relative;
     user-select: none;
     z-index: 2;
     box-shadow: 0 4px 10px rgba(0,0,0,0.3);
     transition: transform 0.1s ease, box-shadow 0.1s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
 
.brim-sticker:active {
     transform: scale(0.98);
     box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
}


/* The tub: Slants inward at the bottom (8% on both sides) */
/* TOP HEADER */
.brim-tub {
.brim-sticker-head {
     background: linear-gradient(to bottom, #ffd600, #e6c200);
     background: #ffcc00;
     clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
     border-bottom: 4px solid #000;
     padding: 20px 15px 40px 15px; /* Extra padding at bottom for bulk */
     padding: 8px 12px; /* Very tight padding */
    position: relative;
    z-index: 1;
     text-align: center;
     text-align: center;
     margin-top: -2px; /* Pulls it tight against the lid */
     font-size: 2.1em; /* Larger header */
    font-weight: 900;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    line-height: 1;
}
}


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


.brim-title {
.brim-sticker-head .brim-hl a {
     font-size: 1.1em; /* Scaled down slightly to fit the new small box */
     text-decoration: none !important;
     font-weight: bold;
}
     color: #ffcc00;
 
/* BOTTOM SECTION */
.brim-sticker-body {
    display: flex;
    background: #fff;
}
 
/* Left side: The Icon */
.brim-sticker-icon {
     padding: 10px 15px;
     border-right: 4px solid #000;
     display: flex;
     display: flex;
     align-items: center;
     align-items: center;
     justify-content: center;
     justify-content: center;
    gap: 8px;
}
}


/* The Toggle Button */
/* Right side: The Warning Text */
.brim-btn {
.brim-sticker-text {
     display: inline-block;
     padding: 10px 18px;
     background: #000;
     color: #000;
    color: #ffcc00;
     font-size: 1.8em; /* BIG MAIN TEXT */
     font-size: 13px;
     display: flex;
     font-weight: bold;
     flex-direction: column;
     padding: 8px 16px;
     justify-content: center;
    border: 2px solid #000;
     line-height: 1.1;
     border-radius: 4px;
     cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}
}


.brim-btn:hover {
.brim-sticker-text .brim-subtext {
     background: #ffcc00;
    font-family: Arial, sans-serif;
     color: #000;
     font-weight: bold;
     border-color: #000;
     font-size: 0.75em; /* BIG SUBTEXT */
     margin-top: 6px;
    color: #333;
}
}


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


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

Latest revision as of 14:59, 20 April 2026

/*
  BRIMSTONE HAZARD LABEL & INVENTORY CSS
  Shrink-wrapped (Sanitizer-safe) with larger bottom text
*/

.brim-wrapper {
    margin: 1em auto;
    display: table; /* MAGIC FIX: Shrink-wraps the container safely */
    font-family: "Arial Black", "Arial Bold", sans-serif;
}

/* THE CLICKABLE STICKER */
.brim-sticker {
    background: #fff;
    border: 4px solid #000;
    border-radius: 0;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.brim-sticker:active {
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* TOP HEADER */
.brim-sticker-head {
    background: #ffcc00;
    border-bottom: 4px solid #000;
    padding: 8px 12px; /* Very tight padding */
    text-align: center;
    font-size: 2.1em; /* Larger header */
    font-weight: 900;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    line-height: 1;
}

/* The Black Box behind "BRIMSTONE" */
.brim-sticker-head .brim-hl {
    background: #000;
    padding: 4px 10px;
    border-radius: 0;
    display: inline-block;
}

.brim-sticker-head .brim-hl a {
    text-decoration: none !important;
}

/* BOTTOM SECTION */
.brim-sticker-body {
    display: flex;
    background: #fff;
}

/* Left side: The Icon */
.brim-sticker-icon {
    padding: 10px 15px;
    border-right: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right side: The Warning Text */
.brim-sticker-text {
    padding: 10px 18px;
    color: #000;
    font-size: 1.8em; /* BIG MAIN TEXT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brim-sticker-text .brim-subtext {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.75em; /* BIG SUBTEXT */
    margin-top: 6px;
    color: #333;
}

/* THE INVENTORY PANEL */
.brim-inventory {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #eee;
    padding: 15px;
    font-family: sans-serif; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    line-height: 1.5;
}

.brim-wrapper .mw-collapsible-toggle { 
    display: none !important; 
}