MediaWiki:Common.css: Difference between revisions

From PavHaki Wiki
No edit summary
No edit summary
Line 24: Line 24:
}
}


div.image {
div.image img {
   max-width: 100%;
   max-width: 100%;
   height: auto;
   height: auto;
}
img {
}
}

Revision as of 18:49, 16 September 2017

/*Global variables
 *
 *NOTES:
 *- Use two spaces for indentation
 */

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





/*Formatting for infoboxes*/

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

div.image img {
  max-width: 100%;
  height: auto;
}