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