Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142
  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, h2 {
  11. font-family : monospace;
  12. color : #F77;
  13. margin:auto;
  14. margin-top:100px;
  15. width:50%;
  16. font-size:5em;
  17. }
  18. @keyframes rotation
  19. {
  20. 0% {color: #FA0;transform:rotate(0deg);}
  21. 50% {color: #F11;transform:rotate(150deg);font-size:3em;}
  22. 100% {color: #F0A;transform:rotate(30deg);}
  23. }
  24. #smiley {
  25. animation: rotation 5s infinite;
  26. animation-delay:3s;
  27. animation-direction:alternate;
  28. width:3em;
  29. }
  30. #smiley:hover {
  31. animation-play-state:paused;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <h1 id="smiley">:-(</h1>
  37. <h2>Sorry, an error occured...</h2>
  38. </body>
  39. </html>