MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 50: | Line 50: | ||
background-size: contain; | background-size: contain; | ||
} | } | ||
/* On-screen text: Old Tongue beside English */ | |||
.diegetic-paragraph { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 1.5em; | |||
margin: 1.5em 0; | |||
padding: 1em 1.25em; | |||
border: 1px solid #d4c4a8; | |||
background: #fdfaf3; | |||
} | |||
.diegetic-ot, | |||
.diegetic-en { | |||
flex: 1 1 18em; | |||
min-width: 0; | |||
} | |||
.diegetic-ot { | |||
white-space: pre-line; | |||
font-style: italic; | |||
color: #4a3c28; | |||
} | |||
.diegetic-en { | |||
color: #555; | |||
} | |||
.diegetic-ot > p:first-child, | |||
.diegetic-en > p:first-child { margin-top: 0; } | |||
.diegetic-ot > p:last-child, | |||
.diegetic-en > p:last-child { margin-bottom: 0; } | |||
Revision as of 00:07, 29 August 2026
/* CSS placed here will be applied to all skins */
/* Subtle parchment background */
body {
background-color: #f7f3e9;
}
/* Content area styling */
.mw-body {
background: #fffdf8;
border: 1px solid #d4c4a8;
border-radius: 2px;
}
/* Page title */
.mw-page-title-main,
.mw-first-heading {
font-family: 'Cinzel Decorative', serif;
color: #4a3c28;
font-weight: 400;
}
/* Section headers */
.mw-heading h2,
.mw-heading h3,
.mw-heading h4 {
font-family: 'Cinzel', serif;
color: #5c4a2a;
}
.mw-heading h2 {
border-bottom-color: #c9b99a;
}
/* Links - slightly warmer blue */
.mw-body a:not(.new) {
color: #2a5a8a;
}
.mw-body a:visited {
color: #4a3c6a;
}
/* Sidebar subtle styling */
.vector-menu-portal .vector-menu-heading {
color: #5c4a2a;
}
.mw-wiki-logo {
background-image: url(/images/c/c9/Logo.png) !important;
background-size: contain;
}
/* On-screen text: Old Tongue beside English */
.diegetic-paragraph {
display: flex;
flex-wrap: wrap;
gap: 1.5em;
margin: 1.5em 0;
padding: 1em 1.25em;
border: 1px solid #d4c4a8;
background: #fdfaf3;
}
.diegetic-ot,
.diegetic-en {
flex: 1 1 18em;
min-width: 0;
}
.diegetic-ot {
white-space: pre-line;
font-style: italic;
color: #4a3c28;
}
.diegetic-en {
color: #555;
}
.diegetic-ot > p:first-child,
.diegetic-en > p:first-child { margin-top: 0; }
.diegetic-ot > p:last-child,
.diegetic-en > p:last-child { margin-bottom: 0; }