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 17: Line 17:
.default-character {
.default-character {
     margin-bottom: 10px; /* Reduce space below the image */
     margin-bottom: 10px; /* 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 */
    padding: 10px;
    margin: auto;
    text-align: center;
    max-width: 300px;
    border-radius: 8px;
}
}

Revision as of 15:35, 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: 10px; /* 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 */
    padding: 10px;
    margin: auto;
    text-align: center;
    max-width: 300px;
    border-radius: 8px;
}