Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 18:09, 20 February 2026 by QuadraticFour (talk | contribs)

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.
/* CSS placed here will be applied to all skins */
#skin-client-prefs-skin-theme {
    display: none !important;
}
#skin-client-prefs-citizen-feature-pure-black {
	display: none !important;
}
/* =========================
   Infoboxes
========================= */

.lt-infobox {
    border: 1px solid var(--color-border, #2a2f3a);
    background: var(--color-surface-1, #111827);
    padding: 0;
    max-width: 320px;
    float: right;
    margin: 0 0 1rem 1.5rem; /* bottom + space from content */
}

.lt-infobox-title {
    padding: 5px;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--color-border, #2a2f3a);
    letter-spacing: 2px;
}

.lt-infobox-image img {
    width: 100%;
    display: block;
}

.lt-infobox-section {
    padding: 4px 12px;
}

.lt-infobox-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px solid var(--color-border, #2a2f3a);

}

.lt-infobox-row:last-child {
    border-bottom: none;
}

.lt-infobox-label {
    font-weight: 500;
    font-size: 17px;
}

.lt-infobox-value {
    text-align: right;
    font-size: 17px;
}

/* =========================
   Velvet Typography
========================= */

html.lt-theme-default h1,
html.lt-theme-default h2,
html.lt-theme-default .mw-page-title-main,
html.lt-theme-default .infobox-title {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: #8fb4ff;
    letter-spacing: 2px;
}

html.lt-theme-default .mw-page-title-main {
	font-size:40px;
	text-shadow: 0 0 6px rgba(143,180,255,0.4);
}

/* Header glow */
html.lt-theme-default h2 {
    border-bottom: 2px solid #8fb4ff;
    padding-bottom: 6px;
    text-shadow: 0 0 6px rgba(143,180,255,0.4);
}

/* Main Text (Icy Blue) */
html.lt-theme-default body,
html.lt-theme-default .mw-parser-output {
    color: #d6e2ff;
}

/* Laser Grid */
html.lt-theme-default body {
    background-image:
        linear-gradient(rgba(139,155,180,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,155,180,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* =========================
   Velvet Infobox Frame
========================= */

html.lt-theme-default .lt-infobox {
    background: #050814;
    border: 1px solid #8fb4ff;
    outline: 1px solid #8fb4ff;
    outline-offset: -6px;
    box-shadow: 0 0 14px rgba(143,180,255,0.15);
    padding: 0;
}

/* Infobox Title */
html.lt-theme-default .lt-infobox-title {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: #d6e2ff;
    text-shadow: 0 0 6px rgba(143,180,255,0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 10px 10px 10px;
    border-bottom: 1px solid rgba(143,180,255,0.4);
}

html.lt-theme-default .lt-infobox-image {
    padding: 6px;
    border-bottom: 1px solid rgba(143,180,255,0.3);
    box-shadow: 0 0 12px rgba(143,180,255,0.15);
}

html.lt-theme-default .lt-infobox-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(143,180,255,0.25);
}

html.lt-theme-default .lt-infobox-label {
    color: #8fb4ff;
    font-weight: normal;
    font-family: "Courier New", monospace;
    letter-spacing: 1px;
}

html.lt-theme-default .lt-infobox-value {
    font-family: "Courier New", monospace;
    color: #d6e2ff;
}

/* Links */
a {
    color: var(--lt-accent);
}