Difference between revisions of "MediaWiki:Common.css"

From Tâi-oân-pit
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: @media all and ( min-width: 720px ) { .main-page-left { float: left; width: 55%; } .main-page-r...")
 
No edit summary
Line 2: Line 2:


@media all and ( min-width: 720px ) {
@media all and ( min-width: 720px ) {
     .main-page-left {
     .mp-row {
        float: left;
      display: flex;
        width: 55%;
     }
     }
     .main-page-right {
 
        float: right;
     .mp-left-col {
        width: 45%;
      flex: 55%;
    }
 
    .mp-right-col {
      flex: 45%;
     }
     }
}
}

Revision as of 2019 nî 9 goe̍h 11 ji̍t, 10:23

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

@media all and ( min-width: 720px ) {
    .mp-row {
      display: flex;
    }

    .mp-left-col {
      flex: 55%;
    }

    .mp-right-col {
      flex: 45%;
    }
}