2020-06-10 22:02:22 +00:00
|
|
|
html {
|
|
|
|
font-size: @html-font-size;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
2021-03-09 18:13:49 +00:00
|
|
|
font-family: var( --font-family-base );
|
2020-06-10 22:02:22 +00:00
|
|
|
// font-smoothing: antialiased;
|
|
|
|
// -webkit-font-smoothing: antialiased; /* Chrome, Safari */
|
|
|
|
// -moz-osx-font-smoothing: grayscale; /* Firefox */
|
2020-06-10 22:02:47 +00:00
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
|
|
|
|
input {
|
2021-03-09 18:13:49 +00:00
|
|
|
font-family: var( --font-family-base ); // Override browser's default
|
2020-06-11 22:15:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pre,
|
|
|
|
code,
|
|
|
|
tt,
|
|
|
|
kbd,
|
|
|
|
samp,
|
|
|
|
.mw-code {
|
2021-03-09 18:13:49 +00:00
|
|
|
font-family: var( --font-family-monospace );
|
2020-06-11 22:15:40 +00:00
|
|
|
font-size: @content-monospace-size;
|
|
|
|
}
|
|
|
|
|
|
|
|
cite {
|
|
|
|
font-style: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset {
|
|
|
|
font-size: @content-monospace-size;
|
|
|
|
}
|
|
|
|
|
|
|
|
legend {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
2021-03-09 18:13:49 +00:00
|
|
|
font-family: var( --font-family-serif );
|
2020-06-11 22:15:40 +00:00
|
|
|
font-size: @content-quote-primary-size;
|
|
|
|
font-style: italic;
|
|
|
|
|
|
|
|
cite {
|
2021-03-09 18:13:49 +00:00
|
|
|
font-family: var( --font-family-base );
|
2020-06-11 22:15:40 +00:00
|
|
|
font-size: @content-quote-secondary-size;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub,
|
2020-06-12 05:43:12 +00:00
|
|
|
sup {
|
2020-06-11 22:15:40 +00:00
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
figcaption,
|
|
|
|
.thumbcaption {
|
|
|
|
font-size: @content-caption-size;
|
|
|
|
font-style: italic;
|
2020-06-12 05:22:05 +00:00
|
|
|
|
|
|
|
i {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#contentSub,
|
|
|
|
#contentSub2 {
|
|
|
|
font-size: @content-caption-size;
|
|
|
|
}
|
|
|
|
|
|
|
|
#siteSub {
|
|
|
|
font-size: @content-caption-size;
|
|
|
|
}
|
|
|
|
|
2021-04-17 01:22:09 +00:00
|
|
|
.mw-logo-wordmark {
|
|
|
|
font-weight: 500;
|
2021-04-17 05:51:15 +00:00
|
|
|
letter-spacing: 1px;
|
2020-06-11 22:15:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumbinner {
|
|
|
|
.new {
|
|
|
|
font-size: @content-caption-size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 22:17:30 +00:00
|
|
|
.error {
|
|
|
|
font-size: unset;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2021-07-31 02:57:38 +00:00
|
|
|
.citizen-body,
|
2021-07-31 02:42:27 +00:00
|
|
|
.mw-body-content {
|
2021-07-30 15:44:02 +00:00
|
|
|
font-size: @content-body-size;
|
|
|
|
line-height: @content-line-height;
|
|
|
|
|
|
|
|
h1 {
|
2020-06-11 22:15:40 +00:00
|
|
|
font-size: @content-h1-size;
|
|
|
|
}
|
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h1,
|
|
|
|
h2 {
|
2020-06-11 22:15:40 +00:00
|
|
|
font-weight: bold;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h2 {
|
|
|
|
font-size: @content-h2-size;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h3 {
|
|
|
|
font-size: @content-h3-size;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h4 {
|
|
|
|
font-size: @content-h4-size;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h5 {
|
|
|
|
font-size: @content-h5-size;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h6 {
|
|
|
|
font-size: @content-h6-size;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
|
2021-07-30 15:44:02 +00:00
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
font-weight: bold;
|
2020-06-11 22:15:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-22 14:36:38 +00:00
|
|
|
// External links
|
|
|
|
.mw-parser-output {
|
2021-03-02 17:51:52 +00:00
|
|
|
a.external {
|
2021-01-11 16:45:52 +00:00
|
|
|
padding-right: 13px;
|
2020-10-22 14:36:38 +00:00
|
|
|
background-image: url( images/external-link-ltr-icon.svg );
|
|
|
|
background-position: center right;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 17:51:52 +00:00
|
|
|
.plainlinks {
|
|
|
|
a.external {
|
|
|
|
padding: 0 !important;
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 21:57:50 +00:00
|
|
|
@media ( max-width: @width-breakpoint-tablet ) {
|
2020-06-12 05:22:05 +00:00
|
|
|
#mw-content-text {
|
|
|
|
figcaption,
|
|
|
|
.thumbcaption {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-06-11 22:15:40 +00:00
|
|
|
}
|
2020-06-11 22:16:03 +00:00
|
|
|
}
|