Note: After saving, you have to bypass your browser's cache to see the changes. Internet Explorer: hold down the Ctrl key and click the Refresh or Reload button. Firefox: hold down the Shift key while clicking Reload (or press Ctrl-Shift-R). Google Chrome and Safari users can just click the Reload button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.

/**
 * Logo badge
 * Version: 2018-05-19
 * Source: https://test.wikipedia.org/wiki/MediaWiki:Vector.css
 */
.skin-theme-clientpref-day .mw-logo::before {
  content: "Beta-Cluster";
  letter-spacing: 1px;
  display: block;
  position: absolute;
  bottom: 5px;
  background: #C6FFE0;
  color: #333;
  font: bold 17px/1 sans-serif;
  opacity: 0.9;
  border: 3px solid #007092;
  border-radius: 2em;
  text-align: center;
  padding: 0.5em 1em;
  box-sizing: border-box;
  width: 200px;
  transform: rotate(-10deg);
  pointer-events: none;
  transition: transform 0.2s ease-out; /* transition out */
}
.mw-logo-wordmark {
	visibility: hidden !important;
}
.skin-theme-clientpref-night .mw-logo:before {
    position: absolute;
    content: '';
    width: 90px;
    height: 15px;
    background-image: linear-gradient(to bottom, red 0%, orange 20%, yellow 40%, green 60%, blue 80%, purple 100%);
    transform: rotate(22deg);
    left: -35px;
    margin-top: -48px;
}


.skin-theme-clientpref-night .mw-logo:after {
    content: '';
    filter: blur(30px) saturate(5);
    width: 50px;
    height: 50PX;
    background: gold;
    position: absolute;
    z-index: -1;
}

.skin-theme-clientpref-night .mw-logo-icon {
    z-index: 1;
}