Advertisement
pictochat

(old) redirect 2 : crossing

Nov 26th, 2012
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <!--
  3. Redirect 2 : Crossing by lauren (sinnohs) @ tumblr
  4. -->
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head>
  7. <meta name="color:Background" content="#fff" />
  8. <meta name="color:InteriorBG" content="#fff" />
  9. <meta name="color:Description" content="#ccc" />
  10. <meta name="color:Title" content="#ccc" />
  11. <meta name="color:Underline" content="#ccc" />
  12. <meta name="color:ButtonText" content="#ccc" />
  13. <meta name="color:ButtonTextHover" content="#777" />
  14. <meta name="color:Text" content="#ccc" />
  15. <meta name="color:Border" content="#ccc" />
  16.  
  17. <meta name="text:RedirectURL" content="http://" />
  18.  
  19. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  20. <title>{Title}</title>
  21. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  22. <link rel="shortcut icon" href="{Favicon}" />
  23. <link rel="apple-touch-icon" href="{PortraitURL-128}"/>
  24. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  25.  
  26. <style type="text/css">
  27.  
  28. /* BODY, LINKS */
  29.  
  30. body {
  31. background: {color:Background} url('{image:Background}') bottom right fixed no-repeat;
  32. margin: 0;
  33. padding: 0;
  34. font: 12px consolas;
  35. }
  36.  
  37. a {
  38. color:{color:ButtonText};
  39. text-decoration: none;
  40. -webkit-transition: all 0.5s ease-in-out;
  41. -moz-transition: all 0.5s ease-in-out;
  42. -o-transition: all 0.5s ease-in-out;
  43. transition: all 0.5s ease-in-out;
  44. }
  45.  
  46. a:hover {
  47. color:{color:ButtonTextHover};
  48. text-decoration: none;
  49. }
  50.  
  51. /* BASIC STRUCTURE */
  52.  
  53. .interior {
  54. color:{color:Text};
  55. background-color:{color:InteriorBG};
  56. font-size:12px;
  57. text-align:center;
  58. padding:10px;
  59. line-height:19px;
  60. margin-left:auto;
  61. margin-right:auto;
  62. margin-top:100px;
  63. width:250px;
  64. border:1px dashed {color:Border};
  65. }
  66.  
  67. /* TITLE */
  68.  
  69. .title {
  70. padding:2px;
  71. font-size:15px;
  72. letter-spacing:2px;
  73. color: {color:Title};
  74. font-family:courier new;
  75. text-align:center;
  76. }
  77.  
  78. /* DESCRIPTION */
  79.  
  80. .description {
  81. padding:10px;
  82. font:10px consolas;
  83. text-align:center;
  84. }
  85.  
  86. /* BUTTON */
  87.  
  88. #button {
  89. text-align:center;
  90. color:{color:Text};
  91. font-size:10px;
  92. text-transform:uppercase;
  93. margin-bottom:5px;
  94. padding:2px 5px;
  95. font-family:consolas;
  96. letter-spacing:1px;
  97. }
  98.  
  99. #button a {
  100. color:{color:ButtonText};
  101. text-decoration: none;
  102. -webkit-transition: all 0.5s ease-in-out;
  103. -moz-transition: all 0.5s ease-in-out;
  104. -o-transition: all 0.5s ease-in-out;
  105. transition: all 0.5s ease-in-out;
  106. padding-bottom:3px;
  107. border-bottom:1px solid transparent;
  108. }
  109.  
  110. #button a:hover {
  111. color:{color:ButtonTextHover};
  112. border-bottom:1px solid {color:Underline};
  113. }
  114.  
  115. /* CREDIT */
  116.  
  117. #credit {
  118. position:fixed;
  119. bottom:0px;
  120. right:0px;
  121. font: bold 12px courier new;
  122. padding:5px;
  123. }
  124.  
  125. </style>
  126. </head>
  127. <body>
  128.  
  129. <div class="interior">
  130. <div class="title">{Title}</div>
  131. <div class="description">{Description}</div>
  132. <div id="button">
  133. <a href="{text:RedirectURL}">new url</a></div>
  134. </div>
  135.  
  136. <a href="http://sinnohs.tumblr.com/" target="_blank" title="Crossing Redirect - REVAMPED" id="credit">th</a>
  137. </body>
  138. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement