MediaWiki:Common.css

Revision as of 18:18, 1 April 2025 by Samwilson (talk | contribs) (Remove .wikitable styling that is now in core.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.
tt { 
   font-size: 115%;
}

.columns {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;

    -webkit-column-width: 400px;
    -moz-column-width: 400px;
    column-width: 400px;
}

.column-avoid-break {
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    page-break-inside: avoid; /* Firefox */
    break-inside: avoid; /* IE 10+ */
}

/* Hide the 'Main Page' title https://www.mediawiki.org/wiki/Manual:FAQ#Method_1_.28css.29 */
body.page-Main_Page h1.firstHeading {
   display: none;
}

/* Hide the 'Main Page' title https://www.mediawiki.org/wiki/Manual:FAQ#Method_1_.28css.29 */
body.page-Test1 h1.firstHeading {
   display: none;
}


#buttons-container {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
margin-left: 5%;
margin-right: 5%
}

#buttons-container img {
width: 200px;
height: 119px;
padding: 2px;
}

#title {
font-weight: bold;
font-size: 18pt;
margin-left: 5%;
margin-right: 5%;
}

#gawlertime {
	background-color: black;
	border: 2px solid #DDF1FC;
	color: white;
	font-family: monospace;
	font-size: 2em;
	padding: 4px;
}

#footer-places-privacy {
  display: none;
  visibility: hidden;
}

.important-sidebar-links {
  font-size: larger;
  font-weight: bold;
}

/* Hacky fix for PageForms combobox layering bug. */
.pfMapCanvas {
    z-index: 3;
}