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 BIOHAZARD BIN CSS | BRIMSTONE BIOHAZARD BIN CSS | ||
Compact yellow bin with physically slanted sides | |||
*/ | */ | ||
.brim- | .brim-bin-wrapper { | ||
margin: | margin: 1.5em auto; | ||
max-width: | max-width: 450px; /* Much smaller and compact */ | ||
/* We use drop-shadow instead of box-shadow because drop-shadow accurately follows the slanted cutouts */ | |||
filter: drop-shadow(0 8px 12px rgba(0,0,0,0.5)); | |||
font-family: sans-serif; | font-family: sans-serif; | ||
} | } | ||
/* The | /* The lid: Slightly wider at the top */ | ||
.brim | .brim-lid { | ||
background: linear-gradient(to bottom, # | background: linear-gradient(to bottom, #ffe633, #ffd600); | ||
height: | height: 35px; | ||
clip-path: polygon(2% 0%, 98% 0%, 100% 100%, 0% 100%); | |||
border-bottom: | border-bottom: 2px solid #cca300; | ||
position: relative; | position: relative; | ||
z-index: 2; | |||
} | } | ||
/* | /* The tub: Slants inward at the bottom (8% on both sides) */ | ||
.brim- | .brim-tub { | ||
background: | background: linear-gradient(to bottom, #ffd600, #e6c200); | ||
clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%); | |||
padding: 20px 15px 40px 15px; /* Extra padding at bottom for bulk */ | |||
position: relative; | |||
z-index: 1; | |||
padding: 20px 15px; | |||
text-align: center; | text-align: center; | ||
margin-top: -2px; /* Pulls it tight against the lid */ | |||
} | } | ||
/* The warning sticker | /* The black warning sticker */ | ||
.brim- | .brim-sticker { | ||
background: #0a0a0a; | background: #0a0a0a; | ||
border: 2px solid # | border: 2px solid #000; | ||
border-radius: | border-radius: 4px; | ||
padding: | padding: 12px; | ||
display: inline-block; | display: inline-block; | ||
margin-bottom: 15px; | margin-bottom: 15px; | ||
} | } | ||
.brim | .brim-title { | ||
font-size: 1. | font-size: 1.1em; /* Scaled down slightly to fit the new small box */ | ||
font-weight: | font-weight: bold; | ||
color: #ffcc00; | color: #ffcc00; | ||
display: flex; | display: flex; | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
gap: | gap: 8px; | ||
} | } | ||
/* The Toggle Button */ | |||
.brim-btn { | .brim-btn { | ||
display: inline-block; | display: inline-block; | ||
background: #000; | background: #000; | ||
color: #ffcc00; | color: #ffcc00; | ||
font-size: | font-size: 13px; | ||
font-weight: bold; | font-weight: bold; | ||
padding: 8px | padding: 8px 16px; | ||
border: 2px solid # | border: 2px solid #000; | ||
border-radius: 4px; | border-radius: 4px; | ||
cursor: pointer; | |||
user-select: none; | |||
transition: all 0.2s ease; | |||
transition: all 0.2s ease | |||
} | } | ||
.brim-btn:hover { | |||
.brim- | |||
background: #ffcc00; | background: #ffcc00; | ||
color: #000; | color: #000; | ||
border-color: #000; | |||
} | } | ||
/* The deep | /* The deep inside of the bin when opened */ | ||
.brim | .brim-content { | ||
background: # | margin-top: 20px; | ||
color: # | background: #111; | ||
padding: | color: #eee; | ||
border | padding: 15px; | ||
box-shadow: inset 0 | border: 4px solid #000; /* Creates an internal rim illusion */ | ||
line-height: 1. | box-shadow: inset 0 10px 20px rgba(0,0,0,0.8); | ||
text-align: left; | |||
font-size: 0.95em; | |||
line-height: 1.5; | |||
} | } | ||
/* | /* Hide MediaWiki's ugly default toggle */ | ||
.brim- | .brim-bin-wrapper .mw-collapsible-toggle { | ||
display: none !important; | display: none !important; | ||
} | } | ||
Revision as of 14:30, 20 April 2026
/*
BRIMSTONE BIOHAZARD BIN CSS
Compact yellow bin with physically slanted sides
*/
.brim-bin-wrapper {
margin: 1.5em auto;
max-width: 450px; /* Much smaller and compact */
/* We use drop-shadow instead of box-shadow because drop-shadow accurately follows the slanted cutouts */
filter: drop-shadow(0 8px 12px rgba(0,0,0,0.5));
font-family: sans-serif;
}
/* The lid: Slightly wider at the top */
.brim-lid {
background: linear-gradient(to bottom, #ffe633, #ffd600);
height: 35px;
clip-path: polygon(2% 0%, 98% 0%, 100% 100%, 0% 100%);
border-bottom: 2px solid #cca300;
position: relative;
z-index: 2;
}
/* The tub: Slants inward at the bottom (8% on both sides) */
.brim-tub {
background: linear-gradient(to bottom, #ffd600, #e6c200);
clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 8% 100%);
padding: 20px 15px 40px 15px; /* Extra padding at bottom for bulk */
position: relative;
z-index: 1;
text-align: center;
margin-top: -2px; /* Pulls it tight against the lid */
}
/* The black warning sticker */
.brim-sticker {
background: #0a0a0a;
border: 2px solid #000;
border-radius: 4px;
padding: 12px;
display: inline-block;
margin-bottom: 15px;
}
.brim-title {
font-size: 1.1em; /* Scaled down slightly to fit the new small box */
font-weight: bold;
color: #ffcc00;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
/* The Toggle Button */
.brim-btn {
display: inline-block;
background: #000;
color: #ffcc00;
font-size: 13px;
font-weight: bold;
padding: 8px 16px;
border: 2px solid #000;
border-radius: 4px;
cursor: pointer;
user-select: none;
transition: all 0.2s ease;
}
.brim-btn:hover {
background: #ffcc00;
color: #000;
border-color: #000;
}
/* The deep inside of the bin when opened */
.brim-content {
margin-top: 20px;
background: #111;
color: #eee;
padding: 15px;
border: 4px solid #000; /* Creates an internal rim illusion */
box-shadow: inset 0 10px 20px rgba(0,0,0,0.8);
text-align: left;
font-size: 0.95em;
line-height: 1.5;
}
/* Hide MediaWiki's ugly default toggle */
.brim-bin-wrapper .mw-collapsible-toggle {
display: none !important;
}