Difference between revisions 155888 and 157207 on test2wiki

/* Ugly badge forBadge clearly indicating this is a test  wiki */

#p-logo::before {
  content: "TESTSITE";
  display: block;
  position: absolute;
  bottom: 0;
  background: orange#C6FFE0;
  color: #000333;
  font: bold 17px/1 "Comic Sans MS"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);
}