MediaWiki:Common.css: Difference between revisions

m
hide margin for responsive layout, change two column layout to 1000px
m (left and right side infobox bg changed to white)
m (hide margin for responsive layout, change two column layout to 1000px)
 
(12 intermediate revisions by the same user not shown)
Line 28:
height:auto;
margin-bottom:0.2em;
text-align:center;
border-radius:10px;
}
 
.res-img-800 img {
display: block;
margin-left: auto;
margin-right: auto;
max-width:100%;
width:800px;
height:auto;
margin-bottom:0.2em;
text-align:center;
border-radius:10px;
}
 
.res-img-1000 img {
display: block;
margin-left: auto;
margin-right: auto;
max-width:100%;
width:1000px;
height:auto;
margin-bottom:0.2em;
text-align:center;
border-radius:10px;
}
 
.res-img-1200 img {
display: block;
margin-left: auto;
margin-right: auto;
max-width:100%;
width:1200px;
height:auto;
margin-bottom:0.2em;
text-align:center;
border-radius:10px;
}
 
Line 83 ⟶ 121:
font-weight:300;
}
/*.mw-body {
/*font-family:avenir;*/
/*font-weight:300;*/
font-size:115%;
}*/
/******************************
* Hide category header 3
Line 149 ⟶ 187:
position: relative;
overflow: hidden;
max-width: 1125px1200px;
height: auto;
margin-bottom: 0;
Line 156 ⟶ 194:
max-width: 100%;
height: auto;
/*width: auto\9;*/
border-radius:10px;
}
.banner-box-wide {
Line 216 ⟶ 255:
.mainpage_box h3 {
margin:0.1em 0;
}
/******************************
* TABLE: cleantable
******************************/
table.cleantable {
background-color: #f2f2f2;
color: #444;
margin: 1em 0;
border: 1px solid #fff;
text-align: left;
}
 
table.cleantable > tr > th,
table.cleantable > tr > td,
table.cleantable > * > tr > th,
table.cleantable > * > tr > td {
border: 2px solid #fff;
padding: 0.4em;
text-align: left;
}
 
table.cleantable > tr > th,
table.cleantable > * > tr > th {
background-color: #50ab8a;
text-align: center;
color: #fff;
padding: 10px 5px;
}
 
table.cleantable > caption {
font-weight: bold;
}
 
Line 266 ⟶ 274:
table.plaintable > * > tr > td {
border: 2px solid #fff;
padding: 0.1em 0.4em 0.1em 0.6em;
text-align: left;
}
Line 280 ⟶ 288:
table.plaintable > caption {
font-weight: bold;
}
 
table.plaintable td:hover {
background: #e5e5e5;
}
 
Line 407 ⟶ 419:
* FLEX FOR "THIS PHOTO" PAGES
******************************/
/* {
box-sizing: border-box;
}*/
 
/* Column container */
Line 450 ⟶ 462:
}
 
/*********************************************************
* Styling for a responsive image gallery with 4 coloumns
* FLEX FOR HORIZONTAL INFOBOXES
*********************************************************/
.row {
/* Create two unequal columns that sits next to each other */
display: flex;
/* left column */
flex-wrap: wrap;
.left-side-infobox {
flexpadding: 50%0 5px;
background-color: #fff;
/*padding: 10px;*/
margin: 10px;
}
 
/* Create four equal columns that sits next to each other */
/* right column */
.right-side-infobox {
flex: 50%;
background-color: #fff;
/*padding: 10px;*/
margin: 10px;
}
 
/* Create four equal columns that sits next to each other - useful for galleries
.column {
flex: 25%; /*1*/
max-width: 25%; /*100%*/
/*background-color:var(--color-surface-1);*/
padding: 0 4px;
/*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 482 ⟶ 489:
}
 
/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px1000px) {
.column {
flex: 50%;
Line 490 ⟶ 497:
}
 
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
.column {
Line 496 ⟶ 503:
max-width: 100%;
}
} */
 
/******************************
* FLEX FOR HORIZONTAL INFOBOXES
******************************/
/* Create two unequal columns that sits next to each other */
/* left column */
.left-side-infobox {
flex: 50%;
background-color: #fff;
/*padding: 10px;*/
margin: 10px;
}
 
/* right column */
.right-side-infobox {
flex: 50%;
background-color: #fff;
/*padding: 10px;*/
margin: 10px;
}