MediaWiki:Common.css: Difference between revisions

m
hide margin for responsive layout, change two column layout to 1000px
(styling for responsive image gallery)
m (hide margin for responsive layout, change two column layout to 1000px)
 
(One intermediate revision by the same user not shown)
Line 473:
/* Create four equal columns that sits next to each other */
.column {
flex: 125%; /*1*/
max-width: 10025%; /*100%*/
/*background-color:var(--color-surface-1);*/
/*border:1px solid var(--border-color-base);*/
/*color:var(--color-base-emphasized);*/
/*border-radius: 8px;*/
/*box-shadow: 0 3px 6px rgba(0,0,0,0.04),0 3px 6px rgba(0,0,0,0.0575);*/
padding: 5px;
/*margin: 5px;*/
}
 
Line 490:
 
/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px1000px) {
.column {
flex: 4850%;
max-width: 10050%;
}
}