bychloethemes

Redirect Page 1a - by Chloe

May 14th, 2015
3,950
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="text:New Url" content="" />
  5. <meta name="color:Text" content="#ffffff" />
  6. <meta name="color:Background" content="#000000" />
  7. <title>REDIRECT</title>
  8. <style type="text/css">
  9. body {
  10. background:{color:Background};
  11. font-family: 'consolas';
  12. }
  13. #redirect {
  14. border:10px solid {color:Text};
  15. width:640px;
  16. height:200px;
  17. position: absolute;
  18. margin-left: 50%;
  19. left:-330px;
  20. top: 180px;
  21. font-size: 90px;
  22. line-height: 220px;
  23. vertical-align: middle;
  24. letter-spacing: -5px;
  25. text-transform: uppercase;
  26. color: {color:Text};
  27. text-align: left;
  28. text-indent: 20px;
  29. }
  30. .loading {
  31. overflow: hidden;
  32. font-size: 80px;
  33. letter-spacing: -25px;
  34. height: 120px;
  35. display: inline-block;
  36. top:255px;
  37. margin-left: 50%;
  38. left:190px;
  39. position: absolute;
  40. color: {color:Text};
  41. -webkit-animation-duration: 2s;
  42. -moz-animation-duration: 2s;
  43. animation-duration: 2s;
  44. -webkit-animation-name: slidein;
  45. -moz-animation-name: slidein;
  46. animation-name: slidein;
  47. -webkit-animation-iteration-count: infinite;
  48. -moz-animation-iteration-count: infinite;
  49. animation-iteration-count: infinite;
  50. }
  51.  
  52. @-webkit-keyframes slidein {
  53. from {
  54. width:0px;
  55. }
  56.  
  57. to {
  58. width:150px;
  59. }
  60. }
  61.  
  62. @-moz-keyframes slidein {
  63. from {
  64. width:0px;
  65. }
  66.  
  67. to {
  68. width:150px;
  69. }
  70. }
  71. @keyframes slidein {
  72. from {
  73. width:0px;
  74. }
  75.  
  76. to {
  77. width:150px;
  78. }
  79. }
  80. </style>
  81. </head>
  82. <body>
  83. <div id="redirect">Redirecting</div><div class="loading">. . .</div>
  84. <script>setTimeout(function(){window.location.href='http://{text:New Url}.tumblr.com'},5000);</script>
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment