MediaWiki:Common.css: Difference between revisions
From AbhiprayaVedi
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* 1. TITLE - FORCE CENTER (HIGHEST SPECIFICITY) */ | ||
#mw-content-text .firstHeading { | |||
text-align: center !important; | |||
font-family: Georgia, serif !important; | |||
font-size: 2.2em !important; | |||
margin-bottom: 0.2em !important; | |||
line-height: 1.1 !important; | |||
} | } | ||
.mw- | /* 2. META - SINGLE LINE, MINIMAL SPACE */ | ||
. | #mw-content-text .article-meta { | ||
text-align: center !important; | |||
margin: 0.3em 0 0.8em 0 !important; | |||
font-size: 1.1em !important; | |||
line-height: 1.1 !important; | |||
height: auto !important; | |||
} | } | ||
#mw-content-text .meta-line { | |||
display: inline-flex !important; | |||
align-items: baseline !important; | |||
white-space: nowrap !important; | |||
gap: 0.5em !important; | |||
} | } | ||
. | /* 3. FIRST PARAGRAPH - NO BLOCK */ | ||
#mw-content-text .article-content p { | |||
margin-top: 0.1em !important; | |||
margin-bottom: 0.8em !important; | margin-bottom: 0.8em !important; | ||
text-indent: 0 !important; | |||
} | } | ||
/* | #mw-content-text .article-content p:first-of-type { | ||
margin-top: 0 !important; | |||
} | |||
/* 4. BASE LAYOUT */ | |||
.article-wrapper { | .article-wrapper { | ||
max-width: 900px; | max-width: 900px; | ||
margin: 0 auto; | margin: 0 auto; | ||
padding: | padding: 15px; | ||
font-family: Georgia, serif; | font-family: Georgia, serif; | ||
line-height: 1. | line-height: 1.6; | ||
} | } | ||
.article-content { | .article-content { | ||
font-size: 1.1em; | font-size: 1.1em; | ||
clear: both; | |||
} | } | ||
/* | /* 5. FLOATBOX */ | ||
.article-floatbox { | .article-floatbox { | ||
float: right !important; | float: right !important; | ||
width: 220px; | width: 220px !important; | ||
margin: 0 0 | margin: 0 0 1em 1.5em !important; | ||
} | } | ||
Revision as of 19:34, 31 January 2026
/* 1. TITLE - FORCE CENTER (HIGHEST SPECIFICITY) */
#mw-content-text .firstHeading {
text-align: center !important;
font-family: Georgia, serif !important;
font-size: 2.2em !important;
margin-bottom: 0.2em !important;
line-height: 1.1 !important;
}
/* 2. META - SINGLE LINE, MINIMAL SPACE */
#mw-content-text .article-meta {
text-align: center !important;
margin: 0.3em 0 0.8em 0 !important;
font-size: 1.1em !important;
line-height: 1.1 !important;
height: auto !important;
}
#mw-content-text .meta-line {
display: inline-flex !important;
align-items: baseline !important;
white-space: nowrap !important;
gap: 0.5em !important;
}
/* 3. FIRST PARAGRAPH - NO BLOCK */
#mw-content-text .article-content p {
margin-top: 0.1em !important;
margin-bottom: 0.8em !important;
text-indent: 0 !important;
}
#mw-content-text .article-content p:first-of-type {
margin-top: 0 !important;
}
/* 4. BASE LAYOUT */
.article-wrapper {
max-width: 900px;
margin: 0 auto;
padding: 15px;
font-family: Georgia, serif;
line-height: 1.6;
}
.article-content {
font-size: 1.1em;
clear: both;
}
/* 5. FLOATBOX */
.article-floatbox {
float: right !important;
width: 220px !important;
margin: 0 0 1em 1.5em !important;
}