Jump to content

MediaWiki:Common.css: Difference between revisions

From Arcscribe Public Wiki
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* 1. Force hide the plain text "Arcscribe Public Wiki" title text */
/* Constrain and center the entire article body layout */
.mw-logo-wordmark,
#content {
.mw-logo-title,
     max-width: 75em;
span.mw-logo-title {
     margin: 0 auto;
     display: none !important;
    visibility: hidden !important;
     width: 0 !important;
}
}


#mw-content-text {
/* 2. Scale up the actual image asset container to allow a larger logo */
     max-width: 58em;
.mw-logo {
     line-height: 1.6;
     min-width: 160px !important;
    float: left;
     height: 40px !important;
}
}


/* Ensure the infobox stays docked cleanly on the right edge of the layout */
/* 3. Force the image itself to scale up larger and not get clipped */
.infobox, table[style*="float: right"] {
img.mw-logo-icon {
     float: right !important;
     width: 150px !important;
     margin: 0.5em 0 1em 1.5em !important;
     height: auto !important;
}
     max-height: 36px !important;
 
/* Clear floats so things below the article don't break */
#catlinks, .printfooter, #footer {
     clear: both;
}
}

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;
}