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 HAZARD LABEL & INVENTORY CSS
   BRIMSTONE HAZARD LABEL & INVENTORY CSS
   OSHA-style warning sign that acts as a clickable UI button
   Sharp OSHA-style warning sign
*/
*/


Line 10: Line 10:
}
}


/* THE CLICKABLE STICKER */
/* THE CLICKABLE STICKER - Sharp corners, reduced padding */
.brim-sticker {
.brim-sticker {
     background: #fff;
     background: #fff;
     border: 4px solid #000;
     border: 4px solid #000;
     border-radius: 8px; /* Slightly rounded corners */
     border-radius: 0; /* Removed round corners */
     cursor: pointer;
     cursor: pointer;
     user-select: none;
     user-select: none;
Line 22: Line 22:
}
}


/* Push down slightly when clicked */
.brim-sticker:active {
.brim-sticker:active {
     transform: scale(0.98);
     transform: scale(0.98);
Line 28: Line 27:
}
}


/* TOP HEADER: Yellow background */
/* TOP HEADER: Tightened up */
.brim-sticker-head {
.brim-sticker-head {
     background: #ffcc00;
     background: #ffcc00;
     border-bottom: 4px solid #000;
     border-bottom: 4px solid #000;
     padding: 10px;
     padding: 6px 10px; /* Reduced padding */
     text-align: center;
     text-align: center;
     font-size: 2em;
     font-size: 2em;
Line 42: Line 41:
     gap: 12px;
     gap: 12px;
     text-transform: uppercase;
     text-transform: uppercase;
    line-height: 1;
}
}


Line 47: Line 47:
.brim-sticker-head .brim-hl {
.brim-sticker-head .brim-hl {
     background: #000;
     background: #000;
    color: #ffcc00;
     padding: 4px 10px;
     padding: 2px 10px;
     border-radius: 0; /* Removed round corners */
     border-radius: 4px;
     display: inline-block;
     font-size: 0.9em;
}
}


/* BOTTOM SECTION: Splits Icon and Text */
/* Removes underlines if the wiki forces them on links inside the highlight */
.brim-sticker-head .brim-hl a {
    text-decoration: none !important;
}
 
/* BOTTOM SECTION */
.brim-sticker-body {
.brim-sticker-body {
     display: flex;
     display: flex;
Line 61: Line 65:
/* Left side: The Icon */
/* Left side: The Icon */
.brim-sticker-icon {
.brim-sticker-icon {
     padding: 15px 20px;
     padding: 8px 12px; /* Reduced padding */
     border-right: 4px solid #000;
     border-right: 4px solid #000;
     display: flex;
     display: flex;
Line 70: Line 74:
/* Right side: The Warning Text */
/* Right side: The Warning Text */
.brim-sticker-text {
.brim-sticker-text {
     padding: 15px;
     padding: 8px 15px; /* Reduced padding */
     color: #000;
     color: #000;
     font-size: 1.4em;
     font-size: 1.4em;
Line 76: Line 80:
     flex-direction: column;
     flex-direction: column;
     justify-content: center;
     justify-content: center;
     line-height: 1.2;
     line-height: 1.1; /* Tighter line spacing */
}
}


Line 83: Line 87:
     font-weight: bold;
     font-weight: bold;
     font-size: 0.65em;
     font-size: 0.65em;
     margin-top: 8px;
     margin-top: 4px;
     color: #333;
     color: #333;
}
}
Line 89: Line 93:
/* THE INVENTORY PANEL */
/* THE INVENTORY PANEL */
.brim-inventory {
.brim-inventory {
     margin-top: 10px; /* Small gap between the sticker and the inventory frame */
     margin-top: 10px;
     background: rgba(0, 0, 0, 0.85); /* Semi-transparent black */
     background: rgba(0, 0, 0, 0.85);
     color: #eee;
     color: #eee;
     border-radius: 8px; /* Round corners */
     border-radius: 8px; /* Kept round corners for the inventory frame as requested */
     padding: 20px;
     padding: 15px;
     font-family: sans-serif; /* Returns to standard readable font for content */
     font-family: sans-serif;  
     box-shadow: 0 5px 15px rgba(0,0,0,0.5);
     box-shadow: 0 5px 15px rgba(0,0,0,0.5);
     line-height: 1.5;
     line-height: 1.5;
}
}


/* Hides MediaWiki's auto-generated toggle bracket */
.brim-wrapper .mw-collapsible-toggle {  
.brim-wrapper .mw-collapsible-toggle {  
     display: none !important;  
     display: none !important;  
}
}

Revision as of 14:54, 20 April 2026

/*
  BRIMSTONE HAZARD LABEL & INVENTORY CSS
  Sharp OSHA-style warning sign
*/

.brim-wrapper {
    margin: 1em auto;
    max-width: 450px;
    font-family: "Arial Black", "Arial Bold", sans-serif;
}

/* THE CLICKABLE STICKER - Sharp corners, reduced padding */
.brim-sticker {
    background: #fff;
    border: 4px solid #000;
    border-radius: 0; /* Removed round corners */
    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;
}

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

/* TOP HEADER: Tightened up */
.brim-sticker-head {
    background: #ffcc00;
    border-bottom: 4px solid #000;
    padding: 6px 10px; /* Reduced padding */
    text-align: center;
    font-size: 2em;
    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; /* Removed round corners */
    display: inline-block;
}

/* Removes underlines if the wiki forces them on links inside the highlight */
.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: 8px 12px; /* Reduced padding */
    border-right: 4px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right side: The Warning Text */
.brim-sticker-text {
    padding: 8px 15px; /* Reduced padding */
    color: #000;
    font-size: 1.4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1; /* Tighter line spacing */
}

.brim-sticker-text .brim-subtext {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.65em;
    margin-top: 4px;
    color: #333;
}

/* THE INVENTORY PANEL */
.brim-inventory {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #eee;
    border-radius: 8px; /* Kept round corners for the inventory frame as requested */
    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; 
}