MediaWiki:Common.css: Difference between revisions

From PavHaki Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
:root {
  --b: #A2A9B1; /*Border color used to match the default wiki skin*/
}


div.infobox {
div.infobox {
float:right;
  float:right;
width:300px;
  width:300px;
display:flex;
  display:flex;
flex-direction:column;
  flex-direction:column;
align-items:center;
  align-items:center;
border:1px solid black;
  border:1px solid var(--b);
}
}

Revision as of 18:36, 16 September 2017

/* CSS placed here will be applied to all skins */

:root {
  --b: #A2A9B1; /*Border color used to match the default wiki skin*/
}

div.infobox {
  float:right;
  width:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  border:1px solid var(--b);
}