// Utilities // // Other things which effect the behaviour of components // Flush left // // Used when you want to push an element to the left of its containing element // // Markup: //
// // //
.mw-ui-flush-left { float: left; margin-left: 0; padding-left: 0; } // Flush right // // Used when you want to push an element to the right of its containing element // // Markup: //
// // //
.mw-ui-flush-right { float: right; padding-right: 0; margin-right: 0; } // Center block // // Centers the element in its containing element // // Markup: //
// //
.mw-ui-center-block { display: block; margin-left: auto; margin-right: auto; }