MediaWiki:Common.css: Difference between revisions
OMNIVERSE
Created page with "→CSS placed here will be applied to all skins: →TEST: confirm Common.css is loading: #mw-content-text { outline: 4px solid red; }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* | /* ---------- Readability ---------- */ | ||
.mw-parser-output { | |||
line-height: 1.6; | |||
font-size: 16px; | |||
} | |||
.mw-body-content { | |||
max-width: 980px; | |||
} | |||
/* ---------- Headings ---------- */ | |||
.mw-parser-output h2 { | |||
border-bottom: 1px solid rgba(0,0,0,0.15); | |||
padding-bottom: 0.25em; | |||
} | |||
/* ---------- Tables ---------- */ | |||
.wikitable { | |||
border-radius: 10px; | |||
overflow: hidden; | |||
border: 1px solid rgba(0,0,0,0.12); | |||
} | |||
.wikitable th { | |||
background: rgba(0,0,0,0.05); | |||
font-weight: 600; | |||
} | |||
/* ---------- Code ---------- */ | |||
.mw-parser-output pre { | |||
border-radius: 8px; | |||
padding: 12px; | |||
} | } | ||
Revision as of 01:26, 19 January 2026
/* CSS placed here will be applied to all skins */
/* ---------- Readability ---------- */
.mw-parser-output {
line-height: 1.6;
font-size: 16px;
}
.mw-body-content {
max-width: 980px;
}
/* ---------- Headings ---------- */
.mw-parser-output h2 {
border-bottom: 1px solid rgba(0,0,0,0.15);
padding-bottom: 0.25em;
}
/* ---------- Tables ---------- */
.wikitable {
border-radius: 10px;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.12);
}
.wikitable th {
background: rgba(0,0,0,0.05);
font-weight: 600;
}
/* ---------- Code ---------- */
.mw-parser-output pre {
border-radius: 8px;
padding: 12px;
}
