MediaWiki:Common.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* =========================================================
OOO BUILD BOX (Category Infobox)
========================================================= */
.ooo-buildbox {
margin: 30px 0;
padding: 22px 24px;
border-radius: 10px;
border: 1px solid var(--ooo-border);
background: var(--ooo-bg-block);
}
/* Title */
.ooo-buildbox__title {
font-size: 1.25rem;
font-weight: 800;
margin-bottom: 10px;
color: var(--ooo-accent);
}
/* Description */
.ooo-buildbox__desc {
margin-bottom: 18px;
line-height: 1.6;
opacity: 0.9;
}
/* Tab spacing */
.ooo-buildbox .tabber {
margin-top: 10px;
}
/* Remove extra tab borders */
.ooo-buildbox .tabber__header {
border-bottom: 1px solid var(--ooo-border);
}
/* =========================================================
OOO MINI INFO CARD (Item preview)
========================================================= */
.ooo-itemcard {
border: 1px solid var(--ooo-border);
border-radius: 8px;
padding: 12px 14px;
margin: 10px 0;
background: var(--ooo-bg-block);
display: flex;
gap: 14px;
align-items: center;
}
/* icon */
.ooo-itemcard__img img {
width: 48px;
height: 48px;
object-fit: contain;
}
/* name */
.ooo-itemcard__name {
font-weight: 700;
color: var(--ooo-accent);
}
/* info text */
.ooo-itemcard__meta {
font-size: 0.9rem;
opacity: 0.85;
}