MediaWiki:Common.css

From QME Wiki
Revision as of 19:28, 23 June 2025 by Admin (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/* QME Wiki Responsive Two-Column Layout Fix */
.qme-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 -8px;
  align-items: stretch;
}

.qme-column {
  flex: 1 1 100%;
  min-height: 600px;
  padding: 12px;
  border: 1px solid #0000B6;
  background: #fcfcfc;
  color: #000;
  font-size: 16px; /* ⬅️ Enforces consistent readability */
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Adjusted for better desktop/tablet compatibility */
@media (min-width: 600px) {
  .qme-column {
    flex: 1 1 48%;
  }
}
By using this site, you agree to the Terms of Use. © 1996–2025 The Quincy Examiner / MTB. All rights reserved.