Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

From Niewulis Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* Hide site name and tagline */
/* Hide site name, tagline, and any text */
.mw-wiki-title,
.mw-wiki-title,
.vector-logo-tagline {
.vector-logo-tagline,
     display: none;
.mw-logo-wordmark,
.mw-logo-tagline {
     display: none !important;
}
}


/* Make the logo large and round */
/* Scalable round logo */
.mw-logo-icon {
.mw-logo-icon {
     width: 150px !important;
     width: clamp(3rem, 6vw, 6rem) !important;
     height: 150px !important;
     height: clamp(3rem, 6vw, 6rem) !important;
     border-radius: 50%;
     border-radius: 50%;
     overflow: hidden;
     overflow: hidden;

Revision as of 21:05, 27 April 2026

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

/* Scalable round logo */
.mw-logo-icon {
    width: clamp(3rem, 6vw, 6rem) !important;
    height: clamp(3rem, 6vw, 6rem) !important;
    border-radius: 50%;
    overflow: hidden;
}

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