Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

From Niewulis Wiki
Created page with "Hide site name and tagline: .mw-wiki-title, .vector-logo-tagline { display: none; } Make the logo large and round: .mw-logo-icon { width: 80px !important; height: 80px !important; border-radius: 50%; overflow: hidden; } .mw-logo { display: flex; align-items: center; justify-content: center; }"
 
No edit summary
Line 7: Line 7:
/* Make the logo large and round */
/* Make the logo large and round */
.mw-logo-icon {
.mw-logo-icon {
     width: 80px !important;
     width: 150px !important;
     height: 80px !important;
     height: 150px !important;
     border-radius: 50%;
     border-radius: 50%;
     overflow: hidden;
     overflow: hidden;

Revision as of 21:04, 27 April 2026

/* Hide site name and tagline */
.mw-wiki-title,
.vector-logo-tagline {
    display: none;
}

/* Make the logo large and round */
.mw-logo-icon {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50%;
    overflow: hidden;
}

.mw-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}