MediaWiki:Common.css: Difference between revisions

m
margin and box shadow added to flex
m (minor flex adjustments)
m (margin and box shadow added to flex)
Line 423:
/* Create two unequal columns that sits next to each other */
/* left column */
.left-side {
flex: 65%;
background-color: #f7f7f7;
padding: 10px15px;
margin: 5px;
box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
 
/* right column */
.right-side {
flex: 25%;
background-color: #dbdbdb;
padding: 10px15px;
margin: 5px;
box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
 
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px800px) {
.row {
flex-direction: column;