MediaWiki:Minerva.css: Difference between revisions

From Formula One Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the MinervaNeue skin */
/* All CSS here will be loaded for users of the MinervaNeue skin */


/* Move the wordmark/logo slightly to the left */
/* Force the wordmark (text logo) to shift left */
.skin-minerva .branding-box {
.skin-minerva .mw-logo-wordmark {
     display: flex !important;
     margin-left: 8px !important; /* ← increase this value to move it further left */
    justify-content: flex-start !important;
     text-align: left !important;
    align-items: center;
    padding-left: 8px; /* Adjust as needed */
}
 
/* Optional: Reduce search bar overlap on the right */
.skin-minerva .minerva-search-form {
     margin-left: auto;
}
}

Revision as of 09:26, 5 August 2025

/* All CSS here will be loaded for users of the MinervaNeue skin */

/* Force the wordmark (text logo) to shift left */
.skin-minerva .mw-logo-wordmark {
    margin-left: 8px !important; /* ← increase this value to move it further left */
    text-align: left !important;
}