MediaWiki:Common.css: Difference between revisions

hide responsive columns
(more flex stuff for responsive layout)
(hide responsive columns)
Line 425:
/* left column */
.left-side {
flex: 7065%;
background-color: #f7f7f7;
border:1px solid #ccc;
Line 450:
}
 
/* Create four equal columns that sits next to each other - useful for galleries */
.column {
flex: 25%;
Line 462:
}
 
/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
.column {
Line 470:
}
 
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
.column {
Line 476:
max-width: 100%;
}
} */