MediaWiki:Common.css: Difference between revisions

From Umbrary
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: #n-randompage { display: none; }")
 
No edit summary
 
Line 2: Line 2:


#n-randompage { display: none; }
#n-randompage { display: none; }
@media screen and (min-width: 821px) {
    .hide_if_big {
        display:none;
    }
}
@media screen and (max-width: 820px) {
    .hide_if_small {
        display:none;
    }
}

Latest revision as of 20:53, 23 September 2022

/* CSS placed here will be applied to all skins */

#n-randompage { display: none; }

@media screen and (min-width: 821px) {
    .hide_if_big {
        display:none;
    }
}
@media screen and (max-width: 820px) {
    .hide_if_small {
        display:none;
    }
}