Jump to content

MediaWiki:Common.css: Difference between revisions

From λ LUMENWARD
No edit summary
No edit summary
Line 104: Line 104:
}
}


/* Base infobox styling */
/* =========================================================
.infobox {
  Lumenward Infobox: clean, modern, site-matching frame
   background: #f8f9fa;
  ========================================================= */
   border: 1px solid #a2a9b1;
 
   border-radius: 2px;
.infobox{
   padding: 0;
   background: #ffffff;
   color: #202122;
   border: 1px solid #e6e6e6;
   border-radius: 10px;
  overflow: hidden;            /* makes header + image clip nicely */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  color: #0a0a0a;
}
 
/* Title/header row */
.infobox > tbody > tr:first-child > td,
.infobox > tbody > tr:first-child > th{
  background: #f6f6f6;
  border-bottom: 1px solid #e6e6e6;
   padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}
 
/* Image row (your template uses colspan=2 for image) */
.infobox > tbody > tr:nth-child(2) > td{
  background: #fafafa;
   border-bottom: 1px solid #e6e6e6;
  padding: 12px;
}
}


/* Header/title row */
/* Make the image feel “framed” but modern */
.infobox th,
.infobox img{
.infobox > tbody > tr:first-child > td {
  display: block;
   background: #eaecf0;
  max-width: 100%;
   border-bottom: 1px solid #a2a9b1;
   height: auto;
   font-weight: 600;
   border: 1px solid #e6e6e6;
   border-radius: 8px;
  background: #fff;
}
}


/* Image cell */
/* Rows */
.infobox img {
.infobox td,
   background: #ffffff;
.infobox th{
   border: 1px solid #c8ccd1;
   padding: 7px 10px;
  vertical-align: top;
}
 
/* Subtle separators between rows */
.infobox > tbody > tr + tr td{
   border-top: 1px solid #f0f0f0;
}
}


/* Label cells */
/* Labels (left column): bold, muted */
.infobox td:first-child {
.infobox td:first-child{
   color: #54595d;
  width: 40%;
   font-weight: 600;
  font-weight: 700;
   color: #3a3a3a;
   white-space: nowrap;
}
}


/* Value cells */
/* Values (right column): normal, dark */
.infobox td:last-child {
.infobox td:last-child{
   color: #202122;
  font-weight: 400;
   color: #0a0a0a;
}
}


/* Row separators */
/* Links inside infobox: match your “neutral link” style */
.infobox tr + tr td {
.infobox a,
   border-top: 1px solid #eaecf0;
.infobox a:visited{
   color: #111 !important;
  text-decoration: underline;
}
.infobox a:hover{
  color: #111 !important;
  text-decoration: underline;
}
}

Revision as of 14:09, 15 December 2025

/* =========================================================
   Vector 2022: Center header search WITHOUT moving user tools
   ========================================================= */

/* Use Vector's real header row as the layout context */
.vector-header {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

/* Force the right-side tools to remain FAR RIGHT */
.vector-header-end {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* Center ONLY the actual search box (do NOT touch wrappers like [role="search"]) */
.vector-header .vector-search-box,
.vector-header .vector-search-box-vue,
.vector-header #p-search {
  position: absolute !important;
  left: 38.7% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  z-index: 1 !important;

  width: min(620px, calc(100vw - 760px)) !important;
}

/* Keep user tools clickable above any overlap */
.vector-header-end,
.vector-user-links,
.vector-user-menu,
#p-personal {
  position: relative !important;
  z-index: 2 !important;
}

/* Mobile: revert to normal flow */
@media (max-width: 900px) {
  .vector-header .vector-search-box,
  .vector-header .vector-search-box-vue,
  .vector-header #p-search {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
}

/* =========================================================
   Lumenward visual policy (grayscale-only)
   ========================================================= */

/* Logo text always black */
.mw-logo a,
.mw-logo a:visited,
.mw-logo a:hover,
.mw-logo a:active {
  color: #000 !important;
  text-decoration: none !important;
}

/* Links: grayscale only */
a { color: #111 !important; }
a:visited { color: #333 !important; }

a:hover,
a:focus {
  color: #111 !important;
  text-decoration: underline !important;
}

/* TOC links specifically */
.vector-toc a,
.vector-toc a:visited,
#toc a,
#toc a:visited {
  color: #111 !important;
}

/* Footer centered on every page */
#footer { text-align: center !important; }

#footer ul,
#footer-info,
#footer-places,
#footer-icons {
  float: none !important;
  display: inline-block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#footer li {
  float: none !important;
  display: inline !important;
  margin: 0 8px !important;
}

/* =========================================================
   Lumenward Infobox: clean, modern, site-matching frame
   ========================================================= */

.infobox{
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;            /* makes header + image clip nicely */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  color: #0a0a0a;
}

/* Title/header row */
.infobox > tbody > tr:first-child > td,
.infobox > tbody > tr:first-child > th{
  background: #f6f6f6;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Image row (your template uses colspan=2 for image) */
.infobox > tbody > tr:nth-child(2) > td{
  background: #fafafa;
  border-bottom: 1px solid #e6e6e6;
  padding: 12px;
}

/* Make the image feel “framed” but modern */
.infobox img{
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
}

/* Rows */
.infobox td,
.infobox th{
  padding: 7px 10px;
  vertical-align: top;
}

/* Subtle separators between rows */
.infobox > tbody > tr + tr td{
  border-top: 1px solid #f0f0f0;
}

/* Labels (left column): bold, muted */
.infobox td:first-child{
  width: 40%;
  font-weight: 700;
  color: #3a3a3a;
  white-space: nowrap;
}

/* Values (right column): normal, dark */
.infobox td:last-child{
  font-weight: 400;
  color: #0a0a0a;
}

/* Links inside infobox: match your “neutral link” style */
.infobox a,
.infobox a:visited{
  color: #111 !important;
  text-decoration: underline;
}
.infobox a:hover{
  color: #111 !important;
  text-decoration: underline;
}