MediaWiki:Common.css

From Yaoi House Wiki
Revision as of 15:21, 11 January 2026 by Admin (talk | contribs)
Jump to navigation Jump to search

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.
/* Wikipedia-style Person Infobox - Fixed Contrast */
.infobox-person {
    float: right;
    margin: 0 0 1em 1em;
    width: 22em;
    border: 1px solid #a2a9b1;
    background-color: #f8f9fa;
    font-size: 88%;
    line-height: 1.5em;
    border-spacing: 3px;
    color: #202122;
}

.infobox-person-title {
    text-align: center;
    font-size: 130%;
    font-weight: bold;
    background-color: #b8cfe5;
    padding: 0.4em;
    line-height: 1.2;
    color: #000000;
}

.infobox-person-subtitle {
    text-align: center;
    font-size: 100%;
    font-weight: normal;
    background-color: #dbe9f4;
    padding: 0.3em;
    line-height: 1.3;
    color: #000000;
}

.infobox-person-image {
    text-align: center;
    padding: 0.5em 0;
    background-color: #f8f9fa;
}

.infobox-person-caption {
    text-align: center;
    font-size: 90%;
    padding: 0.3em 0.5em;
    color: #202122;
}

.infobox-person-table {
    width: 100%;
    border-collapse: collapse;
}

.infobox-person-table tr {
    vertical-align: top;
}

.infobox-person-label {
    padding: 0.25em 0.5em;
    font-weight: bold;
    text-align: left;
    width: 35%;
    background-color: #f8f9fa;
    color: #000000;
}

.infobox-person-data {
    padding: 0.25em 0.5em;
    text-align: left;
    background-color: #ffffff;
    color: #000000;
}

.infobox-person-header {
    text-align: center;
    font-weight: bold;
    background-color: #c8d8e8;
    padding: 0.4em;
    font-size: 105%;
    border-top: 2px solid #a2a9b1;
    color: #000000;
}

.infobox-person-subheader {
    text-align: left;
    font-weight: bold;
    background-color: #dbe9f4;
    padding: 0.3em 0.5em;
    font-size: 95%;
    color: #000000;
}

.infobox-person-fulldata {
    padding: 0.25em 0.5em;
    text-align: center;
    background-color: #ffffff;
    color: #000000;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .infobox-person {
        float: none;
        margin: 0 auto 1em auto;
    }
}