Jump to content

MediaWiki:Common.css: Difference between revisions

From Arcscribe Public Wiki
No edit summary
No edit summary
 
Line 1: Line 1:
/* Hide the default plain-text wiki title */
/* 1. Force hide the plain text "Arcscribe Public Wiki" title text */
.mw-logo-container .mw-logo-title {
.mw-logo-wordmark,
.mw-logo-title,
span.mw-logo-title {
     display: none !important;
     display: none !important;
    visibility: hidden !important;
    width: 0 !important;
}
}


/* Make the uploaded wordmark logo bigger and give it breathing room */
/* 2. Scale up the actual image asset container to allow a larger logo */
.mw-logo-container .mw-logo-icon {
.mw-logo {
     width: 140px !important;
     min-width: 160px !important;
     height: auto !important;
     height: 40px !important;
    max-height: 40px !important;
    transition: transform 0.2s ease;
}
}


/* Adjust layout alignment for the larger logo */
/* 3. Force the image itself to scale up larger and not get clipped */
.mw-logo {
img.mw-logo-icon {
     padding-top: 5px;
     width: 150px !important;
     padding-bottom: 5px;
    height: auto !important;
     max-height: 36px !important;
}
}

Latest revision as of 11:56, 7 July 2026

/* 1. Force hide the plain text "Arcscribe Public Wiki" title text */
.mw-logo-wordmark,
.mw-logo-title,
span.mw-logo-title {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
}

/* 2. Scale up the actual image asset container to allow a larger logo */
.mw-logo {
    min-width: 160px !important;
    height: 40px !important;
}

/* 3. Force the image itself to scale up larger and not get clipped */
img.mw-logo-icon {
    width: 150px !important;
    height: auto !important;
    max-height: 36px !important;
}