More actions
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
} | } | ||
/* | /* Force the title-to-image spacing tight */ | ||
.bbog-featured-img | .bbog-featured-title { margin-bottom: 0 !important; padding-bottom: 0 !important; line-height: 1.2 !important; } | ||
/* Force the image wrapper to sit directly under the title */ | |||
.bbog-featured-img { margin-top: 0 !important; padding-top: 0 !important; } | |||
.bbog-featured-img figure, | .bbog-featured-img figure, | ||
.bbog-featured-img .thumb, | .bbog-featured-img .thumb, | ||
| Line 28: | Line 31: | ||
.bbog-featured-img .mw-file-element, | .bbog-featured-img .mw-file-element, | ||
.bbog-featured-img a.image { | .bbog-featured-img a.image { | ||
margin | margin: 0 !important; | ||
padding | padding: 0 !important; | ||
} | } | ||
Revision as of 12:34, 16 February 2026
/* CSS placed here will be applied to all skins */
/* ===== BBOG Featured Wiki Grid ===== */
.bbog-grid{
display:grid !important;
grid-template-columns:repeat(2,minmax(0,1fr)) !important;
gap:40px !important;
margin-top:20px !important;
}
@media (max-width:700px){
.bbog-grid{ grid-template-columns:1fr !important; }
}
.bbog-card{ text-align:center; }
.bbog-featured-title{
font-size:1.1rem;
font-weight:600;
margin:0 0 6px 0;
}
/* Force the title-to-image spacing tight */
.bbog-featured-title { margin-bottom: 0 !important; padding-bottom: 0 !important; line-height: 1.2 !important; }
/* Force the image wrapper to sit directly under the title */
.bbog-featured-img { margin-top: 0 !important; padding-top: 0 !important; }
.bbog-featured-img figure,
.bbog-featured-img .thumb,
.bbog-featured-img .thumbinner,
.bbog-featured-img .mw-file-element,
.bbog-featured-img a.image {
margin: 0 !important;
padding: 0 !important;
}
/* THE FIX: remove Citizen “panel” look in the image area ONLY.
IMPORTANT: only reset visual properties – do NOT touch margin/padding/display here. */
.bbog-featured-img,
.bbog-featured-img *{
background:transparent !important;
box-shadow:none !important;
border-color:transparent !important;
outline:0 !important;
}
/* Also strip borders explicitly where some skins use border shorthand */
.bbog-featured-img *{
border:0 !important;
}
/* Image should fill the card width */
.bbog-featured-img img{
display:block !important;
width:100% !important;
height:auto !important;
max-width:none !important;
border-radius:14px !important;
}
/* Leave Enter Wiki styling alone (Citizen can do its button thing) */
.bbog-featured-link{ margin-top:14px; }