MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary Tag: Reverted |
||
Line 23: | Line 23: | ||
flex-direction: column; | flex-direction: column; | ||
justify-content: space-between; | justify-content: space-between; | ||
box-sizing: border-box; | |||
} | } | ||
/* ✅ | /* ✅ Ensure all nested elements inside columns inherit cleanly */ | ||
.qme-column * { | .qme-column * { | ||
font-size: 16px !important; | font-size: 16px !important; | ||
Line 32: | Line 33: | ||
} | } | ||
/* ✅ | /* ✅ Fix unordered list layout and spaci* | ||
Revision as of 20:25, 23 June 2025
/* CSS placed here will be applied to all skins */
/* === QME Wiki Responsive Two-Column Layout === */
.qme-flex-wrapper {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 0 -8px;
align-items: stretch;
}
/* Base styles for each column */
.qme-column {
flex: 1 1 100%;
min-height: 600px;
padding: 12px;
border: 1px solid #0000B6;
background: #fcfcfc;
color: #000;
font-size: 16px;
line-height: 1.5;
display: flex;
flex-direction: column;
justify-content: space-between;
box-sizing: border-box;
}
/* ✅ Ensure all nested elements inside columns inherit cleanly */
.qme-column * {
font-size: 16px !important;
line-height: 1.5 !important;
box-sizing: border-box;
}
/* ✅ Fix unordered list layout and spaci*
By using this site, you agree to the Terms of Use. © 1996–2025 The Quincy Examiner / MTB. All rights reserved.