MediaWiki:Vector-2022.css: Difference between revisions

From openwfm
No edit summary
(97.5)
 
(30 intermediate revisions by the same user not shown)
Line 1: Line 1:
body.skin-vector-2022 .mw-page-container {
/* Static contained banner above content */
  padding-top: 80px;
body.skin-vector-2022 .mw-page-container::before {
}
 
body.skin-vector-2022::before {
   content: "";
   content: "";
   position: absolute;
   display: block;
  top: 0;
  left: 0;
   width: 100%;
   width: 100%;
   height: 70px;
   height: 97.5px; /* or adjust as needed */
   background: url("https://wiki.openwfm.org/images/c/cb/Openwfm.png") no-repeat left center;
   background: url("/images/c/cb/Openwfm.png") no-repeat center center;
   background-size: contain;
   background-size: contain;
   background-color: #fff;
   background-color: #fff; /* optional, ensures clean base */
   z-index: 1;
   margin-bottom: -2em;
  margin-top: -1em;
}
}

Latest revision as of 17:59, 7 August 2025

/* Static contained banner above content */
body.skin-vector-2022 .mw-page-container::before {
  content: "";
  display: block;
  width: 100%;
  height: 97.5px; /* or adjust as needed */
  background: url("/images/c/cb/Openwfm.png") no-repeat center center;
  background-size: contain;
  background-color: #fff; /* optional, ensures clean base */
  margin-bottom: -2em;
  margin-top: -1em;
}