Jump to content

MediaWiki:Vector.css: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 5: Line 5:
   font-size: 2.700em;
   font-size: 2.700em;
  }
  }
/* Force lining numbers in headers (for fonts like Georgia) */
h1,
h2,
.firstHeading {
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}
/* Consistent size for sub/sup */
.mw-body sub,
.mw-body sup,
span.reference /* for Parsoid */ {
    font-size: 80%;
}
/* Hide confusing "Discussion" tab on [[Project:Support_desk]],
* For sanity, only do this if [[Project_talk:Support_desk]] is a
* redirect (which goes back to [[Project:Support_desk]]).
* If that is changed for some reason, it automatically comes back.
*/
.page-Project_Support_desk #ca-talk a.mw-redirect {
display: none;
}

Revision as of 14:18, 22 August 2022

/* All CSS here will be loaded for users of the Vector skin */

 Bring the text to 20px
 #bodyContent { 
   font-size: 2.700em;
 }

/* Force lining numbers in headers (for fonts like Georgia) */
h1,
h2,
.firstHeading {
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}

/* Consistent size for sub/sup */
.mw-body sub,
.mw-body sup,
span.reference /* for Parsoid */ {
    font-size: 80%;
}


/* Hide confusing "Discussion" tab on [[Project:Support_desk]],
 * For sanity, only do this if [[Project_talk:Support_desk]] is a
 * redirect (which goes back to [[Project:Support_desk]]).
 * If that is changed for some reason, it automatically comes back.
 */
.page-Project_Support_desk #ca-talk a.mw-redirect {
	display: none;
}