Jump to content

MediaWiki:Common.css: Difference between revisions

From Continuum Universes Wiki
 
(112 intermediate revisions by the same user not shown)
Line 1: Line 1:
@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Bona+Nova:ital,wght@0,400;0,700;1,400&family=Metamorphous&display=swap');
.welcome {
.mwe-popups-extract p {
text-align: center;
     display: block !important;
font-size: 4em;
     visibility: visible !important;
}
.lore-spotlight-widget {
    background: #001933;
    border: 1px solid #FF6300;
    padding: 0.75em;
    margin: 1em 0;
    font-style: italic;
     border-radius: 4px;
}
.mw-datatable th {
     background-color: var(--color-accent-navy);
}
}


.mwe-popups-extract .portable-infobox {
/* Let user tool links wrap instead of forcing one line */
    display: none !important; /* Ensure infobox doesn't interfere */
.mw-usertoollinks {
  white-space: normal !important;  /* undo the nowrap */
  overflow-wrap: anywhere;        /* modern browsers */
  word-break: break-word;          /* fallback */
  display: inline-block;           /* makes wrapping cleaner inside cells */
}
}
.copyright-warning {
/* 7) Special:ListFiles specifics you already touched, but keep them here for consistency */
    color: var(--color-base);
body.page-Special_ListFiles .mw-datatable.listfiles { table-layout: fixed; }
    font-size: 11px;
body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb img { max-width: 100%; height: auto; }
    margin: 0 0 10px;
body.page-Special_ListFiles .mw-usertoollinks { white-space: normal !important; overflow-wrap: anywhere; }
    width: 700px;
/* FIELDSET: allow shrinking, no scrollbars */
    max-width: 100%;
.continuum-body fieldset {
  min-width: 0;         /* crucial in flex layouts */
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: visible;  /* you said no scrolling */
}
}
.create-title {
 
color: var(--color-base);
/* LEGEND shouldn’t inflate width */
border: 1px solid var(--color-subtle);
.continuum-body fieldset > legend {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
 
/* TABLE should fit container and wrap content */
.continuum-body fieldset table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;      /* enables predictable wrapping */
  border-collapse: collapse;
  box-sizing: border-box;
}
 
/* CELLS: wrap, don’t grow the table */
.continuum-body fieldset table th,
.continuum-body fieldset table td {
  min-width: 0;            /* lets fixed layout actually shrink */
  white-space: normal;      /* kill any nowraps */
  overflow-wrap: anywhere;  /* modern long-word wrap */
  word-break: break-word;  /* fallback for older browsers */
}
 
/* Usual offenders inside cells: links, codey bits, “nowrap” classes, user tools */
.continuum-body fieldset table a,
.continuum-body fieldset table code,
.continuum-body fieldset table .nowrap,
.continuum-body fieldset table .mw-usertoollinks,
.continuum-body fieldset table .mw-sha1,
.continuum-body fieldset table .mime-type {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}
 
/* Images/Thumbs must shrink with the cell */
.continuum-body fieldset table img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
 
/* ===== Special:Upload (and its stash step) ===== */
body.page-Special_Upload .continuum-body,
body.page-Special_UploadStash .continuum-body {
  min-width: 0;
  max-width: 100%;
}
 
/* Fieldsets & forms on Upload */
body.page-Special_Upload .continuum-body fieldset,
body.page-Special_UploadStash .continuum-body fieldset {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible; /* no scrollbars, make it fit */
}
 
body.page-Special_Upload .continuum-body fieldset > legend,
body.page-Special_UploadStash .continuum-body fieldset > legend {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0 0 .25em 0;
}
 
/* Tables/forms inside Upload */
body.page-Special_Upload .continuum-body table,
body.page-Special_UploadStash .continuum-body table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  box-sizing: border-box;
}
body.page-Special_Upload .continuum-body th,
body.page-Special_Upload .continuum-body td,
body.page-Special_UploadStash .continuum-body th,
body.page-Special_UploadStash .continuum-body td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.page-Special_Upload .continuum-body img,
body.page-Special_UploadStash .continuum-body img {
  max-width: 100%;
  height: auto;
  display: block;
}
 
/* ===== Special:ListFiles ===== */
body.page-Special_ListFiles .continuum-body { min-width: 0; max-width: 100%; }
 
body.page-Special_ListFiles .mw-datatable.listfiles {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
body.page-Special_ListFiles .mw-datatable.listfiles th,
body.page-Special_ListFiles .mw-datatable.listfiles td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
 
/* Thumbnails column stays narrow; images shrink to fit */
body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb,
body.page-Special_ListFiles .mw-datatable.listfiles th.TablePager_col_thumb { width: 120px; }
body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
 
/* Usual overflow goblins on ListFiles only */
body.page-Special_ListFiles .mw-usertoollinks,
body.page-Special_ListFiles .mw-datatable.listfiles .mw-sha1,
body.page-Special_ListFiles .mw-datatable.listfiles .mime-type,
body.page-Special_ListFiles .mw-datatable.listfiles .nowrap,
body.page-Special_ListFiles .mw-datatable.listfiles a,
body.page-Special_ListFiles .mw-datatable.listfiles code {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}
 
 
/* Preformatted chunks (sometimes appear in tables) should wrap too */
.continuum-body fieldset table pre,
.continuum-body fieldset table .mw-code {
  white-space: pre-wrap;
  word-break: break-word;
}
/* ===== Fieldset containment: no overflow, no scroll, everything fits ===== */
.continuum-body fieldset {
  position: relative;    /* keeps abs-pos kids referenced here */
  min-width: 0;          /* flex/grid shrinking allowed */
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;      /* no scrollbars, no clipping */
  padding-top: .75em;    /* legend breathing room */
}
.continuum-body fieldset > legend {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0 0 .25em 0;
}
 
/* Universal “be nice” rules for descendants */
.continuum-body fieldset * {
  box-sizing: border-box;  /* widths include padding */
  min-width: 0;            /* critical for flex descendants */
}
 
/* Text and links: wrap instead of stretching */
.continuum-body fieldset,
.continuum-body fieldset .mw-parser-output,
.continuum-body fieldset a,
.continuum-body fieldset code,
.continuum-body fieldset .nowrap,
.continuum-body fieldset .mw-usertoollinks,
.continuum-body fieldset .mw-sha1,
.continuum-body fieldset .mime-type {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}
 
/* Pre/code blocks that otherwise run off the edge */
.continuum-body fieldset pre,
.continuum-body fieldset .mw-code {
  white-space: pre-wrap;    /* preserve formatting, allow wrap */
  overflow-wrap: anywhere;
}
 
/* Tables: fill container and wrap cells */
.continuum-body fieldset table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;      /* predictable widths + wrapping */
  border-collapse: collapse;
}
.continuum-body fieldset table th,
.continuum-body fieldset table td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
}


/* Fix SocialProfile tab spacing in Vector 2022 */
/* Media shrink to fit */
#user-profile-tabs ul li {
.continuum-body fieldset img,
    display: inline-block;
.continuum-body fieldset svg,
    margin-right: 10px;
.continuum-body fieldset video,
.continuum-body fieldset canvas,
.continuum-body fieldset audio {
  max-width: 100%;
  height: auto;
  display: block;
}
}


/* Responsive avatar sizing */
/* Iframes & embeds: make them fluid (set aspect-ratio if you know it) */
.user-profile-avatar img {
.continuum-body fieldset iframe,
    max-width: 120px;
.continuum-body fieldset embed,
    height: auto;
.continuum-body fieldset object {
    border-radius: 12px;
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* adjust per your content, prevents goofy heights */
}
}


/* Fix some ugly box spacing */
/* Forms & OOUI controls: never overflow narrow containers */
.profile-info-table td {
.continuum-body fieldset input,
    padding: 6px;
.continuum-body fieldset select,
.continuum-body fieldset textarea,
.continuum-body fieldset button {
  max-width: 100%;
}
/* VE overlays live outside your content column: don't force wrapping there */
html.ve-activated .ve-ui-overlay-global *,
html.ve-activated .oo-ui-defaultOverlay * {
  /* Restore normal text behavior inside VE/OOUI */
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  min-width: 0;            /* allow flex children to shrink */
  box-sizing: border-box;
}
}


.user-page .user-page-title {
/* Buttons should never wrap letter-by-letter */
    font-size: 1.5em;
html.ve-activated .ve-ui-overlay-global .oo-ui-buttonElement .oo-ui-labelElement-label,
    margin-bottom: 1em;
html.ve-activated .oo-ui-defaultOverlay .oo-ui-buttonElement .oo-ui-labelElement-label {
  white-space: nowrap !important;
}
}


.wikitable.user-profile-info {
/* VE template search results menu: give it breathable height */
    max-width: 100%;
html.ve-activated .ve-ui-overlay-global .oo-ui-menuSelectWidget .oo-ui-menuSelectWidget-menu,
html.ve-activated .oo-ui-defaultOverlay .oo-ui-menuSelectWidget .oo-ui-menuSelectWidget-menu {
  max-height: 60vh;          /* visible results */
  overflow-y: auto;
}
}


#user-profile-left {
/* Don’t force fixed table layout inside dialogs (some widgets use tables) */
     float: none;
html.ve-activated .ve-ui-overlay-global table,
     width: 100%;
html.ve-activated .oo-ui-defaultOverlay table {
  table-layout: auto !important;
}
input#title {
    background-color: var(--background-color-base);
    color: var(--color-emphasized);
    margin: 0;
    border: 1px solid var(--border-color-base);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: inherit;
     font-family: inherit;
     line-height: 1.42857143em;
}
}
.eye-container {
.create-title {
background-color: var(--color-subtle);
color: #FFF;
}
}
.eye-container .menu .item {
div.copyright-warning p {
    background: var(--color-subtle);
color: #FFF;
    color: #fff;
    height: 18px;
    font-size: 12px;
    font-weight: 700;
    padding: 0 0 0 30px;
    margin: 4px 0 4px 0;
}
}
.eye-container {
#blog-page-right {
    width: 130px;
background-color: var(--color-accent-navy);
    height: 20px;
    background: var(--color-subtle) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAUCAYAAABBPOWjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkE2Rjg0NEFCMjgxNzExRTE5QzA0ODMyMjY5NkFEQTAyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkE2Rjg0NEFDMjgxNzExRTE5QzA0ODMyMjY5NkFEQTAyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QTZGODQ0QTkyODE3MTFFMTlDMDQ4MzIyNjk2QURBMDIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QTZGODQ0QUEyODE3MTFFMTlDMDQ4MzIyNjk2QURBMDIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6Xuly2AAADzElEQVR42uyZS2hcVRjHf3ceycw0k0kmD2cSp6mmgdZk4aOmBtoutIsquFBREUUKihs3ipu6SLoQFwrdKIJdqOCiVUmgC4vYBNQEfEQoKsW2NG8T85rJmMw7M/devztmQnQmdZubnD8czszhm7P4zv/8v/93RjNNkxJGV/QuB9SjsOthwG/dQedq6btmEeGnWCGiaXzlQOtUKdozyMnZ9z3Y4Hp3kwg/R/NDQoRHVG72FqQWGLpJz0ON7lFXccE0T2ypEGVIFHSuryUZT2bJ6DrrpoFT4jv2+bg36Keuyq2yak84hA1PWq6gRIRtT/JWIsVwbI3BRJYpIQKGsVFUxE14UpxcjvNEKMj9DQE0kRUFm6mCaQasuUgEo3S4/0FSL/DZQpzLsaRUlIJ1+vLLEhFEEkRXhnI63+cWeF/sx+Fgncqs3UzjRiUoKUJZQErKwSdzMS4vJyArJPBXc6zWS3fAR7XTwUQqy+fzYjqzedKmkzOTS3zs9RL0VKns2ksRuK0iXJOScDGRAafG+QciHG2qpZDL8cvsErcWV3mxvZXX2js4+/ufXFlKsKzpDM5HebotpLJrK0X4HyJYxhAxhsNH7+Z4s5/VdJZvZleI5fK8Mxfl5lqKvp4uLnQf4OUfx7m0nOTr+BpPRZpVdm1LBLOcCHEhQZfIvEUCCxevTbAoJWJ99FtO/THP2PHH+HJint6WRnoPNXMpkeZmOl1xL4UdTARjCxGiyVxZwIWVFGQKFIQxLukGhmYWGLgxhzbyHft9XqbTeY6spUnKPvvra2FqWvyCSbTzoMquvZDYJEJOjGE5VWRN5P65H8Z5ryvM60cOMbD4F+bjp5n21xBwmzx7zwHhisG5kV9hcgbCbZX3UtjJ0DeJoOvlcn6y2s1QtZP+kTH6x+b46L4IZw6GOT+1SJ2R5pVIhIyYxxf6B7kyegM8UkJCjRX3Utj52DCL5bf40VofQx5RjRqPKEOelwauQp20hn4P8XWDN69OwEJUykceGlrB5+GttqaKeynYhAiVbnHAofFGqJZzGTlsU8Kqmv55VYxlit0EmqwF75R1N+Sz9LT4uUNURCnCLlMECx2+ap5pqeOL2RisW+7SITd/X/GBEavtyIvJzCU51h7i+XCw6CsUDWzsEQzDmJTprkpRDwe8dHpDfBhdZT4mnURWhnXrXaIETTX0hVtp8VYViWHc7p8rhZ2Kma1EOCvTp9tFNrkc9IbqxQzWb9OLKh2wKcaslwLrg1Z6a/5g+PopmU7LUA8Bux9JGaMy3n71xOHVfxFBYW/jbwEGACYhpi6gbRNVAAAAAElFTkSuQmCC);
    border-radius: 4px;
    opacity: 0.5;
    overflow: hidden;
    position: relative;
    top: -25px;
    cursor: pointer;
    box-shadow: 2px 2px 3px -1px darkgray;
}
}

Latest revision as of 10:12, 27 August 2025

.welcome {
	text-align: center;
	font-size: 4em;
}
.lore-spotlight-widget {
    background: #001933;
    border: 1px solid #FF6300;
    padding: 0.75em;
    margin: 1em 0;
    font-style: italic;
    border-radius: 4px;
}
.mw-datatable th {
    background-color: var(--color-accent-navy);
}

/* Let user tool links wrap instead of forcing one line */
.mw-usertoollinks {
  white-space: normal !important;  /* undo the nowrap */
  overflow-wrap: anywhere;         /* modern browsers */
  word-break: break-word;          /* fallback */
  display: inline-block;           /* makes wrapping cleaner inside cells */
}
/* 7) Special:ListFiles specifics you already touched, but keep them here for consistency */
body.page-Special_ListFiles .mw-datatable.listfiles { table-layout: fixed; }
body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb img { max-width: 100%; height: auto; }
body.page-Special_ListFiles .mw-usertoollinks { white-space: normal !important; overflow-wrap: anywhere; }
/* FIELDSET: allow shrinking, no scrollbars */
.continuum-body fieldset {
  min-width: 0;          /* crucial in flex layouts */
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: visible;   /* you said no scrolling */
}

/* LEGEND shouldn’t inflate width */
.continuum-body fieldset > legend {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* TABLE should fit container and wrap content */
.continuum-body fieldset table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;      /* enables predictable wrapping */
  border-collapse: collapse;
  box-sizing: border-box;
}

/* CELLS: wrap, don’t grow the table */
.continuum-body fieldset table th,
.continuum-body fieldset table td {
  min-width: 0;             /* lets fixed layout actually shrink */
  white-space: normal;      /* kill any nowraps */
  overflow-wrap: anywhere;  /* modern long-word wrap */
  word-break: break-word;   /* fallback for older browsers */
}

/* Usual offenders inside cells: links, codey bits, “nowrap” classes, user tools */
.continuum-body fieldset table a,
.continuum-body fieldset table code,
.continuum-body fieldset table .nowrap,
.continuum-body fieldset table .mw-usertoollinks,
.continuum-body fieldset table .mw-sha1,
.continuum-body fieldset table .mime-type {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Images/Thumbs must shrink with the cell */
.continuum-body fieldset table img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== Special:Upload (and its stash step) ===== */
body.page-Special_Upload .continuum-body,
body.page-Special_UploadStash .continuum-body {
  min-width: 0;
  max-width: 100%;
}

/* Fieldsets & forms on Upload */
body.page-Special_Upload .continuum-body fieldset,
body.page-Special_UploadStash .continuum-body fieldset {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible; /* no scrollbars, make it fit */
}

body.page-Special_Upload .continuum-body fieldset > legend,
body.page-Special_UploadStash .continuum-body fieldset > legend {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0 0 .25em 0;
}

/* Tables/forms inside Upload */
body.page-Special_Upload .continuum-body table,
body.page-Special_UploadStash .continuum-body table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  box-sizing: border-box;
}
body.page-Special_Upload .continuum-body th,
body.page-Special_Upload .continuum-body td,
body.page-Special_UploadStash .continuum-body th,
body.page-Special_UploadStash .continuum-body td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
body.page-Special_Upload .continuum-body img,
body.page-Special_UploadStash .continuum-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Special:ListFiles ===== */
body.page-Special_ListFiles .continuum-body { min-width: 0; max-width: 100%; }

body.page-Special_ListFiles .mw-datatable.listfiles {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
body.page-Special_ListFiles .mw-datatable.listfiles th,
body.page-Special_ListFiles .mw-datatable.listfiles td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Thumbnails column stays narrow; images shrink to fit */
body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb,
body.page-Special_ListFiles .mw-datatable.listfiles th.TablePager_col_thumb { width: 120px; }
body.page-Special_ListFiles .mw-datatable.listfiles td.TablePager_col_thumb img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Usual overflow goblins on ListFiles only */
body.page-Special_ListFiles .mw-usertoollinks,
body.page-Special_ListFiles .mw-datatable.listfiles .mw-sha1,
body.page-Special_ListFiles .mw-datatable.listfiles .mime-type,
body.page-Special_ListFiles .mw-datatable.listfiles .nowrap,
body.page-Special_ListFiles .mw-datatable.listfiles a,
body.page-Special_ListFiles .mw-datatable.listfiles code {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* Preformatted chunks (sometimes appear in tables) should wrap too */
.continuum-body fieldset table pre,
.continuum-body fieldset table .mw-code {
  white-space: pre-wrap;
  word-break: break-word;
}
/* ===== Fieldset containment: no overflow, no scroll, everything fits ===== */
.continuum-body fieldset {
  position: relative;     /* keeps abs-pos kids referenced here */
  min-width: 0;           /* flex/grid shrinking allowed */
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;      /* no scrollbars, no clipping */
  padding-top: .75em;     /* legend breathing room */
}
.continuum-body fieldset > legend {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0 0 .25em 0;
}

/* Universal “be nice” rules for descendants */
.continuum-body fieldset * {
  box-sizing: border-box;   /* widths include padding */
  min-width: 0;             /* critical for flex descendants */
}

/* Text and links: wrap instead of stretching */
.continuum-body fieldset,
.continuum-body fieldset .mw-parser-output,
.continuum-body fieldset a,
.continuum-body fieldset code,
.continuum-body fieldset .nowrap,
.continuum-body fieldset .mw-usertoollinks,
.continuum-body fieldset .mw-sha1,
.continuum-body fieldset .mime-type {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Pre/code blocks that otherwise run off the edge */
.continuum-body fieldset pre,
.continuum-body fieldset .mw-code {
  white-space: pre-wrap;     /* preserve formatting, allow wrap */
  overflow-wrap: anywhere;
}

/* Tables: fill container and wrap cells */
.continuum-body fieldset table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;       /* predictable widths + wrapping */
  border-collapse: collapse;
}
.continuum-body fieldset table th,
.continuum-body fieldset table td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Media shrink to fit */
.continuum-body fieldset img,
.continuum-body fieldset svg,
.continuum-body fieldset video,
.continuum-body fieldset canvas,
.continuum-body fieldset audio {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Iframes & embeds: make them fluid (set aspect-ratio if you know it) */
.continuum-body fieldset iframe,
.continuum-body fieldset embed,
.continuum-body fieldset object {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;   /* adjust per your content, prevents goofy heights */
}

/* Forms & OOUI controls: never overflow narrow containers */
.continuum-body fieldset input,
.continuum-body fieldset select,
.continuum-body fieldset textarea,
.continuum-body fieldset button {
  max-width: 100%;
}
/* VE overlays live outside your content column: don't force wrapping there */
html.ve-activated .ve-ui-overlay-global *,
html.ve-activated .oo-ui-defaultOverlay * {
  /* Restore normal text behavior inside VE/OOUI */
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  min-width: 0;             /* allow flex children to shrink */
  box-sizing: border-box;
}

/* Buttons should never wrap letter-by-letter */
html.ve-activated .ve-ui-overlay-global .oo-ui-buttonElement .oo-ui-labelElement-label,
html.ve-activated .oo-ui-defaultOverlay .oo-ui-buttonElement .oo-ui-labelElement-label {
  white-space: nowrap !important;
}

/* VE template search results menu: give it breathable height */
html.ve-activated .ve-ui-overlay-global .oo-ui-menuSelectWidget .oo-ui-menuSelectWidget-menu,
html.ve-activated .oo-ui-defaultOverlay .oo-ui-menuSelectWidget .oo-ui-menuSelectWidget-menu {
  max-height: 60vh;          /* visible results */
  overflow-y: auto;
}

/* Don’t force fixed table layout inside dialogs (some widgets use tables) */
html.ve-activated .ve-ui-overlay-global table,
html.ve-activated .oo-ui-defaultOverlay table {
  table-layout: auto !important;
}
input#title {
    background-color: var(--background-color-base);
    color: var(--color-emphasized);
    margin: 0;
    border: 1px solid var(--border-color-base);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: inherit;
    font-family: inherit;
    line-height: 1.42857143em;
}
.create-title {
	color: #FFF;
}
div.copyright-warning p {
	color: #FFF;
}
#blog-page-right {
	background-color: var(--color-accent-navy);
}