Advertisement
257px

Switch

Dec 4th, 2014
843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  7.  
  8. <meta name="text:2nd title" content="I've moved to" />
  9. <meta name="text:url" content="YourUrl" />
  10. <meta name="image:bg" content="" />
  11.  
  12. <style>
  13.  
  14.  
  15. body{
  16. color:#000;
  17. font-size:12px;
  18. font-family:"arial";
  19. line-height:150%;
  20. background: url({image:bg}) no-repeat center center fixed;
  21. -webkit-background-size: cover;
  22. -moz-background-size: cover;
  23. -o-background-size: cover;
  24. background-size: cover;
  25. }
  26.  
  27. a{
  28. font-weight:bold;
  29. text-decoration:none;
  30. color:black;
  31. }
  32.  
  33. a:hover{
  34. color:white;
  35. }
  36.  
  37.  
  38. #cont:hover a{
  39. color:white;
  40. }
  41.  
  42. #container{
  43. height:300px;
  44. width:440px;
  45. margin-top:200px;
  46. margin-left:200px;
  47. -moz-transition-duration:0.3s;
  48. -webkit-transition-duration:0.3s;
  49. -o-transition-duration:0.3s;
  50. }
  51.  
  52. #first-text{
  53. position:fixed;
  54. background:black;
  55. color:white;
  56. font-family:"arial black";
  57. font-size:50px;
  58. padding:35px;
  59. -moz-transition-duration:0.3s;
  60. -webkit-transition-duration:0.3s;
  61. -o-transition-duration:0.3s;
  62. }
  63.  
  64. #cont:hover #first-text{
  65. background:white;
  66. color:black;
  67. -moz-transition-duration:0.3s;
  68. -webkit-transition-duration:0.3s;
  69. -o-transition-duration:0.3s;
  70. }
  71.  
  72.  
  73. #cont:hover #second-text{
  74. background:black;
  75. -moz-transition-duration:0.3s;
  76. -webkit-transition-duration:0.3s;
  77. -o-transition-duration:0.3s;
  78. }
  79.  
  80.  
  81. #second-text{
  82. width:auto;
  83. position:fixed;
  84. background:white;
  85. color:black;
  86. font-family:"arial black";
  87. font-size:50px;
  88. padding:35px;
  89. margin-top:-200px;
  90. margin-left:40%;
  91. -moz-transition-duration:0.3s;
  92. -webkit-transition-duration:0.3s;
  93. -o-transition-duration:0.3s;
  94.  
  95. }
  96.  
  97. #credit {
  98. position:fixed;
  99. font-size:12px;
  100. color:#000;
  101. width:18px;
  102. height:18px;
  103. padding-right:2px;
  104. padding-bottom:2px;
  105. background:#fff;
  106. font-weight:bold;
  107. overflow:hidden;
  108. border:1px solid #eee;
  109. line-height:150%;
  110. letter-spacing:2px;
  111. top:30px;
  112. left:30px;
  113. text-transform:lowercase;
  114. text-align:center;
  115. font-style:none;
  116. -moz-transition-duration:0.3s;
  117. -webkit-transition-duration:0.3s;
  118. -o-transition-duration:0.3s;
  119.  
  120. }
  121.  
  122. #credit:hover{
  123. width:auto;
  124. -moz-transition-duration:0.3s;
  125. -webkit-transition-duration:0.3s;
  126. -o-transition-duration:0.3s;
  127. }
  128.  
  129. #credit a {
  130. letter-spacing: 0px;
  131. padding:3px;
  132. color:#000;
  133. font-style:none;
  134. -moz-transition-duration:0.3s;
  135. -webkit-transition-duration:0.3s;
  136. -o-transition-duration:0.3s;
  137. }
  138.  
  139. /* Custom CSS */
  140. {CustomCSS}
  141. </style>
  142. </head>
  143. <body>
  144.  
  145. <div id="cont">
  146. <div id="container">
  147. <div id="first-text">
  148.  
  149. I've moved to
  150.  
  151. </div>
  152.  
  153.  
  154.  
  155. </div>
  156.  
  157.  
  158. <div id="second-text">
  159.  
  160. <a href="http://{text:url}.tumblr.com">{text:url}</a>
  161. </div>
  162. ></div>
  163.  
  164.  
  165. <div id="credit"><a href="http://257pxthemes.tumblr.com/">© 257px thm.</a></div>
  166. </body>
  167. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement