MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
(Moved some settings to Specific skin CSS)
(more CSS improvements)
Line 12: Line 12:
   float: right;
   float: right;
   width: 320px;
   width: 320px;
   margin-left: 15px;
   margin-left: 10px;
  margin-bottom: 10px;
   font-size: 90%;
   font-size: 90%;
   border-style: solid;
   border-style: solid;

Revision as of 11:28, 1 October 2019

/* CSS placed here will be applied to all skins */

/* Hide the title on the main page */
.action-view.page-Main_Page #siteSub, .action-submit.page-Main_Page #siteSub,
.action-view.page-Main_Page #contentSub, .action-submit.page-Main_Page #contentSub,
.action-view.page-Main_Page .firstHeading, .action-submit.page-Main_Page .firstHeading {
  display: none;
}

/* Formatting for the video game infobox template */
.vginfobox {
  float: right;
  width: 320px;
  margin-left: 10px;
  margin-bottom: 10px;
  font-size: 90%;
  border-style: solid;
  border-width: 1px;
  border-color: #a2a9b1;
}

/* Flexbox properties */
.flexbox-row-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flexchild-stretch {
  flex-grow: 1;
}

.text-bottomline {
  border-bottom-style: solid; 
  border-bottom-width: 1px;
  border-bottom-color: #a2a9b1;
}