Advertisement
septims

Profile Page

May 23rd, 2014
6,681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.93 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5.  
  6.  
  7. -->
  8.  
  9.  
  10. <!DOCTYPE html>
  11. <head>
  12.  
  13. <title>{Title}</title>
  14.  
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17.  
  18.  
  19.  
  20.  
  21.  
  22. <!-- jquery -->
  23.  
  24.  
  25. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  26.  
  27. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  28.  
  29. <script>
  30.  
  31. (function($){
  32.  
  33. $(document).ready(function(){
  34.  
  35. $("a[title]").style_my_tooltips({
  36.  
  37. tip_follows_cursor:true,
  38.  
  39. tip_delay_time:30,
  40.  
  41. tip_fade_speed:300,
  42.  
  43. attribute:"title"
  44.  
  45. });
  46.  
  47. });
  48.  
  49. })(jQuery);
  50.  
  51. </script>
  52.  
  53.  
  54.  
  55. <!--CSS customization here. -->
  56.  
  57. <style type="text/css">
  58.  
  59. #s-m-t-tooltip{
  60. font-size:10px;
  61. font-family:times new roman, serif;
  62. position:absolute;
  63. margin:25px 15px;
  64. letter-spacing:1px;
  65. z-index:9999;
  66. background:white;
  67. text-transform:uppercase;
  68. padding:2px 3px 2px 3px;
  69. -webkit-transition:all 0.3s;
  70. -moz-transition:all 0.3s;
  71. -ms-transition:all 0.3s;
  72. -o-transition:all 0.3s;
  73. transition:all 0.3s;
  74. }
  75.  
  76.  
  77.  
  78.  
  79. /*scrollbar*/
  80. ::-webkit-scrollbar{height: 5px;
  81. width: 3px;
  82. -webkit-border-radius: 0px;
  83. background-color:{color:background}}
  84. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  85. ::-webkit-scrollbar-track{background-color:{color:background};}
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93. /*main structure*/
  94. blockquote {padding:5px 0 5px 30px;
  95. border-left:1px solid #f3f3f3;
  96. margin-left:0;
  97. }
  98.  
  99. body {
  100. color:black;
  101. font-family:helvetica, sans-serif;
  102. font-size:10px;
  103. text-align:center;
  104. margin:0;
  105. line-height:180%}
  106.  
  107.  
  108. a {
  109. color:black;
  110. text-decoration:none;
  111. }
  112.  
  113. a:hover {
  114. text-decoration:none;}
  115.  
  116. img{
  117. opacity:1;
  118. border:none;
  119. text-decoration:none}
  120.  
  121. #left {background:#f3f3f3;
  122. width:50%;
  123. left:0;
  124. top:0;
  125. position:fixed;
  126. height:100%;
  127. }
  128. #right {background:#fff;
  129. width:50%;
  130. right:0;
  131. top:0;
  132. position:fixed;
  133. height:100%;
  134. -webkit-transform-style: preserve-3d;
  135. -moz-transform-style: preserve-3d;
  136. transform-style: preserve-3d;
  137. }
  138.  
  139. #left .img {width:250px;
  140. position:Absolute;
  141. top:50%;
  142. left:50%;
  143. margin-left:-125px;
  144. -ms-transform: translateY(-50%); /* IE 9 */
  145. -webkit-transform: translateY(-50%); /* Chrome, Safari, Opera */
  146. -moz-transform: translateY(-50%);
  147. transform: translateY(-50%);
  148. }
  149. .img img {width:250px;
  150. display:block;
  151. }
  152.  
  153. .after {box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
  154. position:absolute;
  155. content:"";
  156. bottom:5px;
  157. left:5px;
  158. z-index:2;
  159. color:white;
  160. height:27px;
  161. width:27px;
  162. background:transparent;
  163. border-bottom:3px solid white;
  164. border-left:3px solid white;
  165. -webkit-transition:all 0.6s;
  166. -moz-transition:all 0.6s;
  167. -ms-transition:all 0.6s;
  168. -o-transition:all 0.6s;
  169. transition:all 0.6s;
  170.  
  171. }
  172. .before{box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
  173. position:absolute;
  174. content:"";
  175. top:5px;
  176. right:5px;
  177. z-index:2;
  178. color:white;
  179. height:27px;
  180. width:27px;
  181. background:transparent;
  182. border-top:3px solid white;
  183. border-right:3px solid white;
  184. -webkit-transition:all 0.6s;
  185. -moz-transition:all 0.6s;
  186. -ms-transition:all 0.6s;
  187. -o-transition:all 0.6s;
  188. transition:all 0.6s;
  189. }
  190. .img:hover .before, .img:hover .after {width:calc(100% - 13px);
  191. height:calc(100% - 13px);
  192. -webkit-transition:all 0.6s;
  193. -moz-transition:all 0.6s;
  194. -ms-transition:all 0.6s;
  195. -o-transition:all 0.6s;
  196. transition:all 0.6s;
  197. }
  198.  
  199. .inf {
  200. width:250px;
  201. text-transform:uppercase;
  202. letter-spacing:2px;
  203. font-weight:bold;
  204. top: 50%;
  205. left:50%;
  206. margin-left:-125px;
  207. position:absolute;
  208. -webkit-transform: translateY(-50%);
  209. -ms-transform: translateY(-50%);
  210. transform: translateY(-50%);
  211. }
  212. h1 {
  213. letter-spacing:3px;
  214. font-size:20px;
  215. display:inline-block;
  216. padding:0 5px 15px 5px;
  217. font-family:times new roman, serif;
  218. border-bottom:5px solid #f3f3f3;
  219. -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
  220. text-shadow: rgba(0,0,0,.01) 0 0 1px;
  221. }
  222. .mike {font-size:12px;
  223. position:fixed;
  224. text-align:Center;
  225. bottom:10px;
  226. right:10px;
  227. opacity:.3;
  228. }
  229. p {padding:5px 0};
  230. .mike a {margin: 0 5px;}
  231. .go {font-size:14px;
  232. display:block;
  233. margin-top:15px;
  234. }
  235.  
  236. </style>
  237.  
  238.  
  239.  
  240. </head>
  241.  
  242. <body>
  243.  
  244.  
  245. <div id="left">
  246. <div class="img">
  247. <div class="before"></div><div class="after"></div>
  248. <a href="/"><img src="http://37.media.tumblr.com/tumblr_m9nft6RDLJ1qizi55o1_500.jpg"></a> </div>
  249. </div>
  250. <div id="right">
  251. <div class="inf">
  252. <!--about title-->
  253. <h1>Jon Snow</h1>
  254. <!--about text-->
  255. <p>Uncanny resemblance to a king, unfortunate circumstance.</p>
  256. <p>Cold bites at heart, wolves bites at bones.</p>
  257. <p>Hard as ice, yet gentle as falling snow. King of the North, ruler of no one.</P>
  258. <p>bastard.</p>
  259. <a href="/" title="home" class="go">&#10164;</a>
  260. </div>
  261. </div>
  262.  
  263. <div class="mike">
  264. <a href="http://farahmir.tumblr.com" target="_blank" title="Theme">&copy;</a>
  265. </div>
  266.  
  267.  
  268.  
  269.  
  270. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement