Advertisement
scriptz-team

[HTML] 500 Internal Server Error - COWSAY :D

Jun 13th, 2012
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html><head>
  3. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  4. <meta charset="utf-8">
  5. <style type="text/css">
  6. body {
  7. color: white;
  8. background-color: black;
  9. }
  10. .cursor {
  11. -moz-animation-name: blink;
  12. -moz-animation-duration: 1.5s;
  13. -moz-animation-iteration-count: infinite;
  14. -moz-animation-timing-function: cubic-bezier(1,0,0,1);
  15. }
  16. html, body, #wrapper {
  17. height:100%;
  18. margin: 0;
  19. padding: 0;
  20. border: none;
  21. text-align: center;
  22. font-size: 24pt;
  23. font-family: 'Inconsolata',monospace;
  24. font-weight: normal;
  25. }
  26. #wrapper {
  27. margin: 0 auto;
  28. text-align: left;
  29. vertical-align: middle;
  30. }
  31. .cow {
  32. font-family: 'Inconsolata',monospace;
  33. font-size: 24pt;
  34. }
  35. .description {
  36. border-right: .5em solid;
  37. border-right: 1ch solid;
  38. width: 9em;
  39. width: 18ch;
  40. white-space: nowrap;
  41. overflow: hidden;
  42. -moz-animation: typing 3s steps(18, end), blink-caret 1s cubic-bezier(1,0,0,1) infinite alternate;
  43. -webkit-animation: typing 3s steps(18, end), blink-caret 1s cubic-bezier(1,0,0,1) infinite alternate;
  44. -o-animation: typing 3s steps(18, end), blink-caret 1s cubic-bezier(1,0,0,1) infinite alternate;
  45. animation: typing 3s steps(18, end), blink-caret 1s cubic-bezier(1,0,0,1) infinite alternate;
  46. }
  47. @-moz-keyframes typing { from { width: 0; } }
  48. @-webkit-keyframes typing { from { width: 0; } }
  49. @-o-keyframes typing { from { width: 0; } }
  50. @keyframes typing { from { width: 0; } }
  51. @-moz-keyframes blink-caret { 50% { border-color: transparent; } }
  52. @-webkit-keyframes blink-caret { 50% { border-color: transparent; } }
  53. @-o-keyframes blink-caret { 50% { border-color: transparent; } }
  54. @keyframes blink-caret { 50% { border-color: transparent; } }
  55. @font-face {
  56. font-family: 'Inconsolata';
  57. font-style: normal;
  58. font-weight: normal;
  59. src: local('Inconsolata'), url('http://themes.googleusercontent.com/static/fonts/inconsolata/v5/BjAYBlHtW3CJxDcjzrnZCIbN6UDyHWBl620a-IRfuBk.woff') format('woff');
  60. }
  61.  
  62. </style>
  63. </head>
  64. <body style="-moz-user-select: text;">
  65. <table id="wrapper">
  66. <tbody><tr>
  67. <td>
  68. <pre class="cow"> ___________________________
  69. &lt; 500 Internal Server Error &gt;
  70. ---------------------------
  71. \ ^__^
  72. \ (xx)\_______
  73. (__)\ )\/\
  74. U ||----w |
  75. || ||
  76.  
  77. </pre>
  78. <div class="description">Our fault. Sorry:(</div>
  79. </td></tr>
  80. </tbody></table>
  81.  
  82.  
  83. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement