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
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Table-based Infobox */
/* Infobox Design */
table.infobox {
.infobox {
     float: right;
     float: right;
    clear: right;
     width: 300px;
     width: 300px;
     background: #f8f9fa; /* Light mode bg */
     background: #f8f9fa;
     border: 1px solid #a2a9b1;
     border: 1px solid #a2a9b1;
     padding: 5px;
     border-collapse: collapse;
     margin-left: 1em;
     margin-left: 1em;
    margin-bottom: 1em;
    font-size: 90%;
}
}


.infobox-header {
.infobox th.infobox-header {
     background: #eaecf0;
     background: #eaecf0;
    color: #000;
     text-align: center;
     text-align: center;
    font-weight: bold;
     padding: 10px;
     padding: 0.5em;
     font-size: 1.2em;
     font-size: 1.2em;
}
}


.infobox-image {
.infobox td {
    text-align: center;
    padding: 10px 0;
}
 
.infobox-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Aligns text to top if one side is long */
     padding: 6px 10px;
     padding: 6px 10px;
     border-bottom: 1px solid #eaecf0;
     border-bottom: 1px solid #eaecf0;
    line-height: 1.4em;
}
}


.infobox-label {
.infobox-label {
     width: 90px;      /* Fixed width for the left column */
     width: 35%;
    min-width: 90px;  /* Forces it to stay 90px */
    padding-right: 10px;
     font-weight: bold;
     font-weight: bold;
     color: #54595d;
     color: #54595d;
    background-color: #f0f0f0; /* Optional: adds a slight color to the label column */
}
.infobox-image {
    text-align: center;
    padding: 10px 0;
    background: #fff;
}
}

Revision as of 01:29, 29 December 2025

/* Table-based Infobox */
table.infobox {
    float: right;
    width: 300px;
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-collapse: collapse;
    margin-left: 1em;
}

.infobox th.infobox-header {
    background: #eaecf0;
    text-align: center;
    padding: 10px;
    font-size: 1.2em;
}

.infobox td {
    padding: 6px 10px;
    border-bottom: 1px solid #eaecf0;
}

.infobox-label {
    width: 35%;
    font-weight: bold;
    color: #54595d;
    background-color: #f0f0f0; /* Optional: adds a slight color to the label column */
}

.infobox-image {
    text-align: center;
    padding: 10px 0;
    background: #fff;
}