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: Difference between revisions

MediaWiki interface page
Content deleted Content added
Move cosmic theme into the VanguardGalaxy skin; this block is now redundant
Add version-stamp badge styles
Line 11: Line 11:
padding: 10px;
padding: 10px;
text-align: center;
text-align: center;
}

/* ── Version stamps ({{Ver}} / Module:GameVersion) ───────────────── */
.ver-ok,
.ver-stale {
display: inline-block;
font-size: 0.78em;
font-weight: 700;
line-height: 1.4;
padding: 0 0.45em;
border-radius: 0.4em;
white-space: nowrap;
vertical-align: middle;
cursor: help;
}
.ver-ok {
color: #093;
background: rgba(0, 153, 51, 0.14);
border: 1px solid rgba(0, 153, 51, 0.45);
}
.ver-stale {
color: #c0392b;
background: rgba(192, 57, 43, 0.14);
border: 1px solid rgba(192, 57, 43, 0.5);
}
}

Revision as of 17:41, 2 June 2026

/* CSS placed here will be applied to all skins */
.inputbox-gallery {
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px;
    justify-content: center;
}

.inputbox-gallery .image-frame {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

/* ── Version stamps ({{Ver}} / Module:GameVersion) ───────────────── */
.ver-ok,
.ver-stale {
    display: inline-block;
    font-size: 0.78em;
    font-weight: 700;
    line-height: 1.4;
    padding: 0 0.45em;
    border-radius: 0.4em;
    white-space: nowrap;
    vertical-align: middle;
    cursor: help;
}
.ver-ok {
    color: #093;
    background: rgba(0, 153, 51, 0.14);
    border: 1px solid rgba(0, 153, 51, 0.45);
}
.ver-stale {
    color: #c0392b;
    background: rgba(192, 57, 43, 0.14);
    border: 1px solid rgba(192, 57, 43, 0.5);
}