mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
af41f98935
Since it is the only place that use serif, the serif variable is also removed
52 lines
776 B
Plaintext
52 lines
776 B
Plaintext
html {
|
|
font-size: @html-font-size;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: var( --font-family-base );
|
|
/*
|
|
* Don't let browser faux font styles and weight
|
|
* 1. We are already using VF
|
|
* 2. Not all font styles apply to some languages (e.g. Italic is different in ZH)
|
|
*/
|
|
font-synthesis: none;
|
|
font-weight: var( --font-weight-normal );
|
|
}
|
|
|
|
input {
|
|
font-family: var( --font-family-base ); // Override browser's default
|
|
}
|
|
|
|
b,
|
|
strong {
|
|
font-weight: var( --font-weight-semibold );
|
|
}
|
|
|
|
cite {
|
|
font-style: inherit;
|
|
}
|
|
|
|
blockquote {
|
|
font-style: italic;
|
|
|
|
cite {
|
|
font-size: 0.8125rem;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
|
|
sub,
|
|
sup {
|
|
font-size: 80%;
|
|
}
|
|
|
|
.mw-logo-wordmark {
|
|
font-weight: var( --font-weight-semibold );
|
|
}
|
|
|
|
.citizen-body,
|
|
.mw-body-content {
|
|
line-height: var( --line-height );
|
|
}
|