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

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
Created page with "All CSS here will be loaded for users of the Citizen skin: ========================= Character Infobox =========================: .lt-infobox { border: 1px solid var(--color-border, #2a2f3a); background: var(--color-surface-1, #111827); padding: 0; max-width: 320px; font-size: 14px; } .lt-infobox-title { padding: 12px; font-weight: 600; text-align: center; border-bottom: 1px solid var(--color-border, #2a2f3a); letter..."
 
Tag: Replaced
Line 1: Line 1:
/* All CSS here will be loaded for users of the Citizen skin */
/* All CSS here will be loaded for users of the Citizen skin */
/* =========================
  Character Infobox
========================= */
.lt-infobox {
    border: 1px solid var(--color-border, #2a2f3a);
    background: var(--color-surface-1, #111827);
    padding: 0;
    max-width: 320px;
    font-size: 14px;
}
.lt-infobox-title {
    padding: 12px;
    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: 10px 12px;
}
.lt-infobox-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border, #2a2f3a);
}
.lt-infobox-row:last-child {
    border-bottom: none;
}
.lt-infobox-label {
    font-weight: 500;
}
.lt-infobox-value {
    text-align: right;
}

Revision as of 23:49, 19 February 2026

/* All CSS here will be loaded for users of the Citizen skin */