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
 */
.mw-logo,
#p-logo {
  position: relative;
}
.mw-logo::before,
#p-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: 100%;
  transform: rotate(-10deg);
  pointer-events: none;
  transition: transform 0.2s ease-out; /* transition out */
}
#p-logo:hover::before {
  transition: transform 0.5s ease; /* transition in */
  transform: rotate(0deg);
}

/** Start copy from en.wikipedia.org <https://en.wikipedia.org/wiki/MediaWiki:Vector.css> */

/* Don't display some stuff on the main page */
.page-Main_Page #deleteconfirm,
.page-Main_Page #t-cite,
.page-Main_Page #footer-info-lastmod,
.action-view.page-Main_Page #siteSub,
.action-view.page-Main_Page #contentSub,
.action-view.page-Main_Page #contentSub2 {
	display: none !important;
}

/* Position coordinates */
#coordinates {
	position: absolute;
	top: 0;
	right: 0;
	float: right;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	text-align: right;
	text-indent: 0;
	font-size: 85%;
	text-transform: none;
	white-space: nowrap;
}
/* correct position for VE */
.ve-ce-surface-enabled #coordinates {
	margin-right: 2em;
	margin-top: -1em;
}
.mw-indicator #coordinates {
	position: absolute;
	top: 3.5em;
	right: 0;
	line-height: 1.6;
	text-align: right;
	font-size: 92%;
	white-space: nowrap;
}

/* FR topicon position */
body.skin-vector-legacy div.flaggedrevs_short {
	position: absolute;
	top: -3em;
	right: 100px;
	z-index: 1;
}

/* Make "From Wikipedia, the free encyclopedia" a bit smaller */
body.skin-vector-legacy #siteSub {
	font-size: 92%;
}


/* Move page status indicators down slightly */
body.skin-vector-legacy .mw-indicators {
	padding-top: 0.4em;
}

/* Override [[phab:T265947]] */
.mw-body-content blockquote {
	border-left: none;
}

/** End copy from en.wikipedia.org */