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
No edit summary
No edit summary
Line 91: Line 91:


.infobox-section {
.infobox-section {
     padding: 6px;
    display: flex;
    justify-content: space-between;
     padding: 5px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.infobox-section strong {
    flex: 1;
    text-align: left;
    font-weight: bold;
}
.infobox-section span {
    flex: 2;
    text-align: right;
}
}

Revision as of 17:50, 28 February 2025

/* All CSS here will be loaded for users of the Citizen skin */
/* Styling for Character Hub */
.character-hub {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.character-main-image {
    width: 300px;
    border-radius: 10px;
    display: block;
    margin: auto;
    padding-bottom: 5px; /* Less gap before the text */
}

.default-character {
    margin-bottom: 5px; /* Reduce space below the image */
}
/* Style for the box under the image */
.character-info-box {
    background-color: rgba(255, 255, 255, 0.1); /* Keeps the dark theme */
    margin: auto;
    text-align: center;
    padding: 6px 8px; /* More space inside */
    max-width: 320px; /* Slightly wider */
    border-radius: 8px;
}
/* Variants Grid - Keep responsive but more compact */
.character-variants {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Reduce spacing between items */
}

/* Individual Variant Box */
.character-variant {
    width: 200px; /* Make them wider */
    text-align: center;
}

/* Reduce height of the variant info box */
.character-variant-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 5px; /* Less padding inside */
    border-radius: 8px;
    font-size: 14px; /* Make text slightly smaller */
}
/* Styled box for Character Hub link */
/* Smaller, compact Character Hub link box */
.character-hub-link {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 6px 8px; /* Balanced padding */
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    margin: 5px auto; /* Reduce space above & below */
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
/*     line-height: 1; /* Reduces extra vertical spacing */
/*     display: inline-block; /* Prevents extra space from block-level behavior */
/*     white-space: nowrap; /* Prevents automatic line breaks */
}
.character-infobox {
    width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: white;
    float: right; /* Moves the infobox to the right */
    margin: 0 0 10px 15px; /* Adds spacing between text & infobox */
    clear: right; /* Prevents layout issues */
}
.infobox-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.infobox-image img {
    width: 100%; /* Image takes full width of the box */
    display: block; /* Ensures no gaps around it */
    border-radius: 0; /* Removes rounded corners */
}

.infobox-section {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.infobox-section strong {
    flex: 1;
    text-align: left;
    font-weight: bold;
}

.infobox-section span {
    flex: 2;
    text-align: right;
}