Advertisement
heavenlydoctor

redirect (page)

Sep 1st, 2014
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!----THEME BY CLARASCAPALDIS. STANDARD RULES APPLY. THEME BLOG: ELISIONTHEMES.TUMBLR.COM---->
  5.  
  6. <title>{title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8.  
  9. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  10.  
  11. <script type="text/javascript">
  12. function leave() {
  13. window.location = "http://clarascapaldis.tumblr.com"; //change redirect url//
  14. }
  15. setTimeout("leave()", 8000);
  16. </script>
  17.  
  18. <link href='http://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
  19.  
  20. <style type="text/css">
  21.  
  22. ::-webkit-scrollbar {background-color:black; border:2px solid #fff;height:5px; width:5px;}
  23. ::-webkit-scrollbar-thumb:vertical {background-color:black; border:1px solid #fff; height:40px;}
  24. ::-webkit-scrollbar-thumb:horizontal {background-color:black;border:1px solid #fff; height:8px!important}
  25.  
  26.  
  27.  
  28. body {
  29. background:url('http://static.tumblr.com/9y86jzv/sIHnb8m8u/hoverz.jpg') no-repeat fixed; /*change background image*/
  30. background-size:cover;
  31. margin:0;width:100%;height:100%;
  32. font:11px Corbel;
  33. padding: 0;
  34. position:absolute;
  35. }
  36.  
  37. a {
  38. text-decoration:none;
  39. outline:none;
  40. color:#fff; /*change link color here */
  41. -webkit-transition: all 0.5s ease-in-out;
  42. -moz-transition: all 0.5s ease-in-out;
  43. -o-transition: all 0.5s ease-in-out;
  44. }
  45.  
  46. a:hover {
  47. color:#fff; /*change link hover color here */
  48. -webkit-transition: all 0.5s ease-in-out;
  49. -moz-transition: all 0.5s ease-in-out;
  50. -o-transition: all 0.5s ease-in-out;
  51. }
  52.  
  53. .container {
  54. width:400px;
  55. height:200px;
  56. position:relative;
  57. top:50%;
  58. margin-top:-140px;
  59. left:50%;
  60. margin-left:-240px;
  61. font-family: 'Quicksand', sans-serif;
  62. text-transform:uppercase;
  63. color:#fff;
  64. border:10px solid rgba(255,255,255, 0.3);
  65. padding:45px;
  66. }
  67.  
  68. .inner {
  69. width:400px;
  70. height:200px;
  71. background-color:rgba(255,255,255, 0.3);
  72. padding:20px;
  73. margin-left:-20px;
  74. margin-top:-20px;
  75. }
  76.  
  77. .hasmoved {
  78. font-size:50px;
  79. position:relative;
  80. width:100%;
  81. top:21%;
  82. text-align:center;
  83. text-transform:uppercase;
  84. letter-spacing:5px;
  85. }
  86.  
  87. .urls {
  88. position:relative;
  89. top:22%;
  90. text-align:center;
  91. font-size:12px;
  92. }
  93.  
  94. #old {
  95. display:inline-block;
  96. margin-right:15px;
  97. letter-spacing:4px;
  98. }
  99.  
  100. #new {
  101. display:inline-block;
  102. margin-left:15px;
  103. letter-spacing:4px;
  104. }
  105.  
  106. #redirect {
  107. font-size:25px;
  108. position:relative;
  109. top:21%;
  110. width:100%;
  111. text-align:center;
  112. letter-spacing:4px;
  113. -webkit-transition: all 0.5s ease-in-out;
  114. -moz-transition: all 0.5s ease-in-out;
  115. -o-transition: all 0.5s ease-in-out;
  116. }
  117.  
  118. #credit {
  119. letter-spacing:3px;
  120. text-align:center;
  121. position:relative;
  122. top:23%;
  123. }
  124.  
  125.  
  126. </style>
  127. </head>
  128. <body>
  129. <div class="container">
  130. <div class="inner">
  131.  
  132. <div class="urls">
  133. <div id="old">
  134. heavenlydoctor <!---change old url---->
  135. </div>
  136. &rarr;
  137. <div id="new">
  138. <a href="http://clarascapaldis.tumblr.com/">clarascapaldis</a> <!----change new url---->
  139. </div>
  140. </div>
  141. <div class="hasmoved">
  142. moved urls
  143. </div>
  144. <div id="redirect">redirecting...</div>
  145.  
  146. </div>
  147.  
  148. <!---do not touch--->
  149. <div id="credit"><a href="http://gloriousponds.co.vu/">theme by clarascapaldis</a></div>
  150.  
  151. </div>
  152.  
  153.  
  154.  
  155.  
  156. </body>
  157.  
  158.  
  159. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement