Jump to content

MediaWiki:User:Spmtn1.css

From Ditzy Wiki
Revision as of 01:39, 13 March 2026 by Spmtn1 (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* The CSS file of the ONLY red page on the Okayxairen Wiki. */
/* Rest in peace, okayxairen.miraheze.org. MediaWiki is so much better. */
body {
background-color: red;
}
p {
text-shadow: rgb(255, 0, 0) 1px 0 10px;
text-decoration-color: red;
}
h1 {
  color: red;
  animation: cooleffect 6s linear infinite;
}
 /* I have to make this page an eyesore, sorry in advance */
  @keyframes cooleffect {
    0%, 100% {
      transform: translateY(0px);
    }
    25% {
      transform: translateY(-1px) ;
    }
    50% {
      transform: rotateY(10deg) ;
    }
    75% {
      transform: translateY(16px) ;
    }
  }