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