Revision 157207 of "MediaWiki:Group-user.css" on test2wiki

/* Badge clearly indicating this is a test wiki */

#p-logo::before {
  content: "TEST–SITE";
  display: block;
  position: absolute;
  bottom: 0;
  background: #C6FFE0;
  color: #333;
  font: bold 17px/1 sans-serif;
  opacity: 0.9;
  border: 3px solid red;
  border-radius: 2em;
  text-align: center;
  padding: 0.5em 1em;
  box-sizing: border-box;
  width: 100%;
  transform: rotate(-10deg);
  letter-spacing: 4px;
  pointer-events: none;
  transition: transform 1s ease;
}

#p-logo:hover::before {
  transform: rotate(0deg);
}