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
No edit summary
Line 6: Line 6:
}
}


/* Default side bar logo (desktop) */
body > header > div.citizen-header__logo > a > img {
body > header > div.citizen-header__logo > a > img {
     content: url("/images/favicon.png");
     content: url("/images/favicon.png");
     width: 64px;   /* adjust as needed */
     width: 32px;
     height: auto;
     height: auto;
}
}
/* Mobile logo for small screens */
@media (max-width: 768px) {
    body > header > div.citizen-header__logo > a > img {
        content: url("/images/favicon.png");
        width: 16px;
    }
}





Revision as of 14:50, 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;
}

/* Default side bar logo (desktop) */
body > header > div.citizen-header__logo > a > img {
    content: url("/images/favicon.png");
    width: 32px;
    height: auto;
}

/* Mobile logo for small screens */
@media (max-width: 768px) {
    body > header > div.citizen-header__logo > a > img {
        content: url("/images/favicon.png");
        width: 16px;
    }
}



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