Jump to content

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1,009: Line 1,009:
}
}


.mw-wiki-logo {
    width: 100px !important;
    height: 100px !important;
}


/* Unrelated to looks of the website! */
/* Unrelated to looks of the website! */
Line 1,024: Line 1,020:


body.page-Main_Page.ns-subject h1.firstHeading { display:none; }
body.page-Main_Page.ns-subject h1.firstHeading { display:none; }
/* used by the front page starts*/
/* Default styles for desktop (769px or more) */
@media only screen and (min-width: 769px) {
    .desktop-view {
        display: block !important;
    }
    .mobile-view {
        display: none !important;
    }
}
/* Mobile styles */
@media only screen and (max-width: 768px) {
    .desktop-view {
        display: none !important;
    }
    .mobile-view {
        display: block !important;
    }
}
/* used by the front page end*/