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
Jump to navigationJump to search
/*
BRIMSTONE BIOHAZARD BIN CSS
Physical medical waste container design
*/
.brim-bio-box {
margin: 1em auto;
max-width: 800px;
border-radius: 4px;
box-shadow: 0 10px 25px rgba(0,0,0,0.6);
font-family: sans-serif;
overflow: hidden;
background: #000;
}
/* The heavy black plastic lid on top */
.brim-bio-lid {
background: linear-gradient(to bottom, #333 0%, #111 40%, #000 100%);
height: 24px;
border-top: 1px solid #555;
border-bottom: 3px solid #000;
position: relative;
}
/* Red plastic tub body with molded vertical ribs */
.brim-bio-header {
background:
repeating-linear-gradient(
to right,
transparent,
transparent 60px,
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;
cursor: pointer;
user-select: none;
border-bottom: 2px solid #4a0505;
}
/* The warning sticker slapped on the front of the tub */
.brim-bio-plate {
background: #0a0a0a;
border: 2px solid #ffcc00;
border-radius: 6px;
padding: 15px;
display: inline-block;
box-shadow: 0 4px 10px rgba(0,0,0,0.5);
margin-bottom: 15px;
}
.brim-bio-title {
font-size: 1.5em;
font-weight: 900;
color: #ffcc00;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.brim-btn {
display: inline-block;
background: #000;
color: #ffcc00;
font-size: 14px;
font-weight: bold;
padding: 8px 20px;
border: 2px solid #ffcc00;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 6px rgba(0,0,0,0.4);
transition: all 0.2s ease-in-out;
}
/* Button lights up when hovering anywhere on the tub */
.brim-bio-header:hover .brim-btn {
background: #ffcc00;
color: #000;
box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}
/* The deep dark interior of the bin */
.brim-bio-content {
background: #0d0202;
color: #dcdcdc;
padding: 25px;
border-top: 6px solid #000;
box-shadow: inset 0 15px 20px -10px rgba(0,0,0,1);
line-height: 1.6;
}
/* FORCES MEDIAWIKI TO HIDE ITS DEFAULT TOGGLE BUTTON */
.brim-bio-box .mw-collapsible-toggle {
display: none !important;
}