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
SomebodyRum (talk | contribs) mNo edit summary |
SomebodyRum (talk | contribs) mNo edit summary |
||
| Line 1: | Line 1: | ||
/* | /* | ||
BRIMSTONE CONTAINMENT CSS | BRIMSTONE CONTAINMENT CSS | ||
Uses standard MediaWiki custom toggles (100% parser safe) | |||
*/ | */ | ||
| Line 25: | Line 25: | ||
position: relative; | position: relative; | ||
border-bottom: 3px solid #bfc200; | border-bottom: 3px solid #bfc200; | ||
cursor: pointer; | cursor: pointer; | ||
user-select: none; | |||
} | } | ||
| Line 82: | Line 81: | ||
color: #000; | color: #000; | ||
box-shadow: 0 0 12px rgba(191, 194, 0, 0.8); | box-shadow: 0 0 12px rgba(191, 194, 0, 0.8); | ||
} | } | ||
| Line 102: | Line 87: | ||
background: #110005; | background: #110005; | ||
color: #e0e0e0; | color: #e0e0e0; | ||
line-height: 1.6; | line-height: 1.6; | ||
} | |||
/* FORCES MEDIAWIKI TO HIDE ITS DEFAULT TOGGLE BUTTON */ | |||
.brim-box .mw-collapsible-toggle { | |||
display: none !important; | |||
} | } | ||
Revision as of 14:08, 20 April 2026
/*
BRIMSTONE CONTAINMENT CSS
Uses standard MediaWiki custom toggles (100% parser safe)
*/
.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;
cursor: pointer;
user-select: none;
}
/* 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);
}
.brim-content {
padding: 20px;
background: #110005;
color: #e0e0e0;
line-height: 1.6;
}
/* FORCES MEDIAWIKI TO HIDE ITS DEFAULT TOGGLE BUTTON */
.brim-box .mw-collapsible-toggle {
display: none !important;
}