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 |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* | /* | ||
BRIMSTONE HAZARD LABEL & INVENTORY CSS | BRIMSTONE HAZARD LABEL & INVENTORY CSS | ||
Shrink-wrapped (Sanitizer-safe) with larger bottom text | |||
*/ | */ | ||
.brim-wrapper { | .brim-wrapper { | ||
margin: 1em auto; | margin: 1em auto; | ||
display: table; /* MAGIC FIX: Shrink-wraps the container safely */ | |||
font-family: "Arial Black", "Arial Bold", sans-serif; | font-family: "Arial Black", "Arial Bold", sans-serif; | ||
} | } | ||
| Line 14: | Line 14: | ||
background: #fff; | background: #fff; | ||
border: 4px solid #000; | border: 4px solid #000; | ||
border-radius: | border-radius: 0; | ||
cursor: pointer; | cursor: pointer; | ||
user-select: none; | user-select: none; | ||
| Line 20: | Line 20: | ||
transition: transform 0.1s ease, box-shadow 0.1s ease; | transition: transform 0.1s ease, box-shadow 0.1s ease; | ||
overflow: hidden; | overflow: hidden; | ||
display: flex; | |||
flex-direction: column; | |||
} | } | ||
.brim-sticker:active { | .brim-sticker:active { | ||
transform: scale(0.98); | transform: scale(0.98); | ||
| Line 28: | Line 29: | ||
} | } | ||
/* TOP HEADER | /* TOP HEADER */ | ||
.brim-sticker-head { | .brim-sticker-head { | ||
background: #ffcc00; | background: #ffcc00; | ||
border-bottom: 4px solid #000; | border-bottom: 4px solid #000; | ||
padding: | padding: 8px 12px; /* Very tight padding */ | ||
text-align: center; | text-align: center; | ||
font-size: | font-size: 2.1em; /* Larger header */ | ||
font-weight: 900; | font-weight: 900; | ||
color: #000; | color: #000; | ||
| Line 42: | Line 43: | ||
gap: 12px; | gap: 12px; | ||
text-transform: uppercase; | text-transform: uppercase; | ||
line-height: 1; | |||
} | } | ||
| Line 47: | Line 49: | ||
.brim-sticker-head .brim-hl { | .brim-sticker-head .brim-hl { | ||
background: #000; | background: #000; | ||
padding: 4px 10px; | |||
padding: | border-radius: 0; | ||
border-radius: | display: inline-block; | ||
} | |||
.brim-sticker-head .brim-hl a { | |||
text-decoration: none !important; | |||
} | } | ||
/* BOTTOM SECTION | /* BOTTOM SECTION */ | ||
.brim-sticker-body { | .brim-sticker-body { | ||
display: flex; | display: flex; | ||
| Line 61: | Line 66: | ||
/* Left side: The Icon */ | /* Left side: The Icon */ | ||
.brim-sticker-icon { | .brim-sticker-icon { | ||
padding: 15px | padding: 10px 15px; | ||
border-right: 4px solid #000; | border-right: 4px solid #000; | ||
display: flex; | display: flex; | ||
| Line 70: | Line 75: | ||
/* Right side: The Warning Text */ | /* Right side: The Warning Text */ | ||
.brim-sticker-text { | .brim-sticker-text { | ||
padding: | padding: 10px 18px; | ||
color: #000; | color: #000; | ||
font-size: 1. | font-size: 1.8em; /* BIG MAIN TEXT */ | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
justify-content: center; | justify-content: center; | ||
line-height: 1. | line-height: 1.1; | ||
} | } | ||
| Line 82: | Line 87: | ||
font-family: Arial, sans-serif; | font-family: Arial, sans-serif; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 0. | font-size: 0.75em; /* BIG SUBTEXT */ | ||
margin-top: | margin-top: 6px; | ||
color: #333; | color: #333; | ||
} | } | ||
| Line 89: | Line 94: | ||
/* THE INVENTORY PANEL */ | /* THE INVENTORY PANEL */ | ||
.brim-inventory { | .brim-inventory { | ||
margin-top: 10px; | margin-top: 10px; | ||
background: rgba(0, 0, 0, 0.85); | background: rgba(0, 0, 0, 0.85); | ||
color: #eee; | color: #eee; | ||
padding: 15px; | |||
padding: | font-family: sans-serif; | ||
font-family: sans-serif; | |||
box-shadow: 0 5px 15px rgba(0,0,0,0.5); | box-shadow: 0 5px 15px rgba(0,0,0,0.5); | ||
line-height: 1.5; | line-height: 1.5; | ||
} | } | ||
.brim-wrapper .mw-collapsible-toggle { | .brim-wrapper .mw-collapsible-toggle { | ||
display: none !important; | display: none !important; | ||
} | } | ||
Latest revision as of 14:59, 20 April 2026
/*
BRIMSTONE HAZARD LABEL & INVENTORY CSS
Shrink-wrapped (Sanitizer-safe) with larger bottom text
*/
.brim-wrapper {
margin: 1em auto;
display: table; /* MAGIC FIX: Shrink-wraps the container safely */
font-family: "Arial Black", "Arial Bold", sans-serif;
}
/* THE CLICKABLE STICKER */
.brim-sticker {
background: #fff;
border: 4px solid #000;
border-radius: 0;
cursor: pointer;
user-select: none;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
transition: transform 0.1s ease, box-shadow 0.1s ease;
overflow: hidden;
display: flex;
flex-direction: column;
}
.brim-sticker:active {
transform: scale(0.98);
box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
/* TOP HEADER */
.brim-sticker-head {
background: #ffcc00;
border-bottom: 4px solid #000;
padding: 8px 12px; /* Very tight padding */
text-align: center;
font-size: 2.1em; /* Larger header */
font-weight: 900;
color: #000;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
text-transform: uppercase;
line-height: 1;
}
/* The Black Box behind "BRIMSTONE" */
.brim-sticker-head .brim-hl {
background: #000;
padding: 4px 10px;
border-radius: 0;
display: inline-block;
}
.brim-sticker-head .brim-hl a {
text-decoration: none !important;
}
/* BOTTOM SECTION */
.brim-sticker-body {
display: flex;
background: #fff;
}
/* Left side: The Icon */
.brim-sticker-icon {
padding: 10px 15px;
border-right: 4px solid #000;
display: flex;
align-items: center;
justify-content: center;
}
/* Right side: The Warning Text */
.brim-sticker-text {
padding: 10px 18px;
color: #000;
font-size: 1.8em; /* BIG MAIN TEXT */
display: flex;
flex-direction: column;
justify-content: center;
line-height: 1.1;
}
.brim-sticker-text .brim-subtext {
font-family: Arial, sans-serif;
font-weight: bold;
font-size: 0.75em; /* BIG SUBTEXT */
margin-top: 6px;
color: #333;
}
/* THE INVENTORY PANEL */
.brim-inventory {
margin-top: 10px;
background: rgba(0, 0, 0, 0.85);
color: #eee;
padding: 15px;
font-family: sans-serif;
box-shadow: 0 5px 15px rgba(0,0,0,0.5);
line-height: 1.5;
}
.brim-wrapper .mw-collapsible-toggle {
display: none !important;
}