MediaWiki:Vector-2022.css: Difference between revisions

From openwfm
(minimial css)
(97.5)
 
(32 intermediate revisions by the same user not shown)
Line 1: Line 1:
body.skin-vector-2022 #mw-page-base::before {
/* Static contained banner above content */
body.skin-vector-2022 .mw-page-container::before {
   content: "";
   content: "";
   display: block;
   display: block;
   height: 110px;
  width: 100%;
   background: url("/images/c/cb/Openwfm.png") no-repeat center;
   height: 97.5px; /* or adjust as needed */
   background-size: cover;
   background: url("/images/c/cb/Openwfm.png") no-repeat center center;
}
   background-size: contain;
 
  background-color: #fff; /* optional, ensures clean base */
body.skin-vector-2022 .mw-page-container {
  margin-bottom: -2em;
   margin-top: 110px;
   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;
}