| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html>
-
- <head>
- <meta charset="utf-8" />
- <title>WBO - Error</title>
- <style>
- html {
- background-color: #303;
- }
-
- h1,
- h2 {
- font-family: monospace;
- color: #F77;
- margin: auto;
- margin-top: 100px;
- width: 50%;
- font-size: 5em;
- }
-
- @keyframes rotation {
- 0% {
- color: #FA0;
- transform: rotate(0deg);
- }
-
- 50% {
- color: #F11;
- transform: rotate(150deg);
- font-size: 3em;
- }
-
- 100% {
- color: #F0A;
- transform: rotate(30deg);
- }
- }
-
- #smiley {
- animation: rotation 5s infinite;
- animation-delay: 3s;
- animation-direction: alternate;
- width: 3em;
- }
-
- #smiley:hover {
- animation-play-state: paused;
- }
- </style>
- </head>
-
- <body>
- <h1 id="smiley">:-(</h1>
- <h2>Sorry, an error occured...</h2>
- </body>
-
- </html>
|