MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
imported>ReedemtheD3ad!
(Created page with "→‎CSS placed here will be applied to all skins: →‎This governs the sections on the Community portal: .cpbox { display: flex; flex-direction: row-reverse; fl...")
 
(No difference)

Latest revision as of 18:45, 2 October 2018

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

/* This governs the sections on the Community portal */
.cpbox {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}
.cpbox #admins {
    box-sizing: border-box;
    width: calc(33% - 10px);
    margin: 5px;
    flex-grow: 1;
    min-width: 300px;
}
.cpbox #help {
    box-sizing: border-box;
    width: calc(67% - 10px);
    margin: 5px;
    flex-grow: 1;
}