Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Create an account below if you want to be able to make edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 6: Line 6:
     display: none;
     display: none;
}
}
/* Change sidebar logo to small one */
body > header > div.citizen-header__logo > a {
    background-image: url("/images/favicon.png");
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
}
body > header > div.citizen-header__logo > a > img {
    display: none;  /* hide the original <img> */
}




Line 30: Line 14:
     width: 124px;  /* adjust as needed */
     width: 124px;  /* adjust as needed */
     height: auto;
     height: auto;
}
#footer-icons {
    filter: brightness(50%); /* darkens icons by 50% */
}
}

Revision as of 15:01, 16 November 2025

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

/* Hide site name text */

.skin-citizen .mw-logo-wordmark {
    display: none;
}


/* Put larger logo in the footer */

#footer-sitetitle > img {
    content: url("/images/OpenfrontWiki_cropped.png");
    width: 124px;   /* adjust as needed */
    height: auto;
}


#footer-icons {
    filter: brightness(50%); /* darkens icons by 50% */
}