Advertisement
heavenlydoctor

redirect (theme)

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