You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

error.html 790B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>WBO - Error</title>
  6. <style>
  7. html {
  8. background-color: #303;
  9. }
  10. h1,
  11. h2 {
  12. font-family: monospace;
  13. color: #F77;
  14. margin: auto;
  15. margin-top: 100px;
  16. width: 50%;
  17. font-size: 5em;
  18. }
  19. @keyframes rotation {
  20. 0% {
  21. color: #FA0;
  22. transform: rotate(0deg);
  23. }
  24. 50% {
  25. color: #F11;
  26. transform: rotate(150deg);
  27. font-size: 3em;
  28. }
  29. 100% {
  30. color: #F0A;
  31. transform: rotate(30deg);
  32. }
  33. }
  34. #smiley {
  35. animation: rotation 5s infinite;
  36. animation-delay: 3s;
  37. animation-direction: alternate;
  38. width: 3em;
  39. }
  40. #smiley:hover {
  41. animation-play-state: paused;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <h1 id="smiley">:-(</h1>
  47. <h2>Sorry, an error occured...</h2>
  48. </body>
  49. </html>