Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Content added Content deleted
(styling for responsive image gallery)
(testing changes to responsive image gallery styling)
Line 473: Line 473:
/* Create four equal columns that sits next to each other */
/* Create four equal columns that sits next to each other */
.column {
.column {
flex: 1;
flex: 25%; /*1*/
max-width: 100%;
max-width: 25%; /*100%*/
/*background-color:var(--color-surface-1);*/
/*background-color:var(--color-surface-1);*/
/*border:1px solid var(--border-color-base);*/
/*border:1px solid var(--border-color-base);*/
/*color:var(--color-base-emphasized);*/
/*color:var(--color-base-emphasized);*/
border-radius: 8px;
/*border-radius: 8px;*/
/*box-shadow: 0 3px 6px rgba(0,0,0,0.04),0 3px 6px rgba(0,0,0,0.0575);*/
/*box-shadow: 0 3px 6px rgba(0,0,0,0.04),0 3px 6px rgba(0,0,0,0.0575);*/
padding: 5px;
padding: 5px;
Line 492: Line 492:
@media (max-width: 800px) {
@media (max-width: 800px) {
.column {
.column {
flex: 48%;
flex: 50%;
max-width: 100%;
max-width: 50%;
}
}
}
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.