|
Tags: Blanking Manual revert |
| Line 1: |
Line 1: |
| /* =========================
| |
| Common baseline (ALL skins)
| |
| Neutral – no theme colors
| |
| ========================= */
| |
|
| |
|
| /* Typography only */
| |
| .mw-parser-output,
| |
| .mw-body-content,
| |
| #mw-content-text {
| |
| line-height: 1.65;
| |
| font-size: 16px;
| |
| -webkit-font-smoothing: antialiased;
| |
| -moz-osx-font-smoothing: grayscale;
| |
| }
| |
|
| |
| /* Prevent overly wide text */
| |
| .mw-body-content {
| |
| max-width: 980px;
| |
| }
| |
|
| |
| /* Headings – NO colors */
| |
| .mw-parser-output h1,
| |
| .mw-parser-output h2,
| |
| .mw-parser-output h3,
| |
| .mw-parser-output h4 {
| |
| line-height: 1.25;
| |
| margin: 1.1em 0 0.45em;
| |
| }
| |
|
| |
| /* Links – behavior only */
| |
| a {
| |
| text-decoration-thickness: from-font;
| |
| text-underline-offset: 0.12em;
| |
| }
| |
| a:hover {
| |
| text-decoration: underline;
| |
| }
| |
|
| |
| /* Tables – structure only */
| |
| .wikitable {
| |
| border-collapse: separate;
| |
| border-spacing: 0;
| |
| overflow: hidden;
| |
| }
| |
|
| |
| .wikitable > * > tr > th,
| |
| .wikitable > * > tr > td {
| |
| padding: 10px 12px;
| |
| vertical-align: top;
| |
| }
| |
|
| |
| /* Code – font only */
| |
| code, tt, kbd, samp {
| |
| font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
| |
| "Liberation Mono", "Courier New", monospace;
| |
| font-size: 0.95em;
| |
| }
| |
|
| |
| .mw-parser-output pre,
| |
| .mw-parser-output .mw-code {
| |
| overflow-x: auto;
| |
| line-height: 1.5;
| |
| }
| |
|
| |
| /* Blockquotes – structure only */
| |
| .mw-parser-output blockquote {
| |
| margin: 0.8em 0;
| |
| padding: 0.75em 1em;
| |
| }
| |