MediaWiki:Common.css: Difference between revisions
Unuvun Rain (talk | contribs) No edit summary |
Unuvun Rain (talk | contribs) No edit summary |
||
Line 19: | Line 19: | ||
div.infobox { | div.infobox { | ||
float:right; | float:right; | ||
max-width: | max-width: 256px; | ||
min-width: | min-width: 256px; | ||
display:flex; | display:flex; | ||
flex-direction:column; | flex-direction:column; |
Revision as of 21:12, 16 September 2017
/*Global variables
*
*NOTES:
*- Use two spaces for indentation
*/
:root {
--boxbg: #F8F9FA;
--boxborder: #A2A9B1; /*Border color used to match the default wiki skin*/
--boxheader: #EFEFEF;
}
/*Formatting for infoboxes*/
div.infobox {
float:right;
max-width: 256px;
min-width: 256px;
display:flex;
flex-direction:column;
align-items:center;
border:1px solid var(--boxborder);
background-color: var(--boxbg);
padding: 4px;
}
div.infoboxSectionHeader {
text-align: center;
background-color: var(--boxheader);
width: 100%;
}
div.image {
display:flex;
flex-direction:column;
align-items:center;
}
div.image img {
max-width: 100%;
height: auto;
}
div.table {
min-width: 0em;
width: 100%;
display: flex;
flex-wrap: wrap;
}
div.rowname {
width: 40%;
}
div.rowitem {
width: 60%;
}