Advertisement
septims

About Page

Nov 23rd, 2013
6,292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5. ╔╔ ══ ══ Rules:
  6. ║║ -do not use as base
  7. ╚╚ ══ ╗╗ -do not steal bits of code
  8. ║║ -do not remove credits
  9. ══ ══ ╝╝
  10.  
  11.  
  12. -->
  13.  
  14.  
  15. <!DOCTYPE html>
  16. <head>
  17.  
  18. <title>{Title}</title>
  19.  
  20. <link rel="shortcut icon" href="{Favicon}">
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  22.  
  23. <link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
  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. <style type="text/css">
  54.  
  55.  
  56. body {
  57. background:white;/*background color*/
  58. font-family:raleway;
  59. text-align:justify;
  60. line-height:14px;
  61. font-size:11px;
  62. color:black;/*font color*/
  63. }
  64. a {color:black;
  65. text-decoration:none;
  66. }
  67.  
  68. #head {
  69. width:450px;
  70. top:150px;
  71. left:50%;
  72. position:fixed;
  73. margin-left:-225px;
  74. }
  75.  
  76. #about {-moz-column-count:2; /* Firefox */
  77. -webkit-column-count:2; /* Safari and Chrome */
  78. column-count:2;
  79. -moz-column-gap:25px; /* Firefox */
  80. -webkit-column-gap:25px; /* Safari and Chrome */
  81. column-gap:25px;
  82. height:300px;
  83. overflow:auto}
  84.  
  85. #text {position:fixed;
  86. bottom:5px;
  87. right:10px;
  88. text-transform:uppercase;
  89. font-family:arial;
  90. padding:5px 5px;
  91. font-size:14px;
  92. transform:rotate(90deg);
  93. -ms-transform:rotate(90deg); /* IE 9 */
  94. -webkit-transform:rotate(90deg); /* Safari and Chrome */}
  95. #text a {text-decoration:none;}
  96. #title {font-size:22px;
  97. font-weight:bold;
  98. border-bottom:1px solid #eee;
  99. margin-bottom:15px;z-index:5;
  100. background:white;
  101. text-align:center;
  102. line-height:50px;
  103. text-transform:uppercase;
  104. }
  105.  
  106. #bat { -webkit-transition:all 0.6s;
  107. -moz-transition:all 0.6s;
  108. -ms-transition:all 0.6s;
  109. -o-transition:all 0.6s;
  110. transition:all 0.6s;}
  111. #title:hover #bat{letter-spacing:10px;
  112. color:white;
  113. background:transparent;
  114. -webkit-transition:all 0.6s;
  115. -moz-transition:all 0.6s;
  116. -ms-transition:all 0.6s;
  117. -o-transition:all 0.6s;
  118. transition:all 0.6s;
  119. }
  120. #linkies {font-size:12px;
  121. z-index:2;
  122. opacity:0;
  123. -webkit-transition:all 0.6s;
  124. -moz-transition:all 0.6s;
  125. -ms-transition:all 0.6s;
  126. -o-transition:all 0.6s;
  127. transition:all 0.6s;
  128. position:absolute;
  129. width:450px;text-align:center;
  130. text-transform:uppercase;}
  131. #linkies a {padding:5px;}
  132. #title:hover #linkies {opacity:1;
  133. -webkit-transition:all 0.6s;
  134. -moz-transition:all 0.6s;
  135. -ms-transition:all 0.6s;
  136. -o-transition:all 0.6s;
  137. transition:all 0.6s; }
  138.  
  139. {CustomCSS}
  140.  
  141. #s-m-t-tooltip{
  142. font-size:9px;
  143. position:absolute;
  144. margin-top: 15px;
  145. letter-spacing:1px;
  146. z-index:9999;
  147. background:white;
  148. color:{color:text};
  149. text-transform:uppercase;
  150. padding:2px 3px 2px 3px;
  151. -webkit-transition:all 0.3s;
  152. -moz-transition:all 0.3s;
  153. -ms-transition:all 0.3s;
  154. -o-transition:all 0.3s;
  155. transition:all 0.3s;
  156. }
  157. </style>
  158.  
  159.  
  160.  
  161. </head>
  162.  
  163.  
  164. <body>
  165.  
  166. <div id="text">
  167. <a href="http://farahmir.tumblr.com" target="_blank" title="septim" >S</a></div>
  168.  
  169. <div id="head">
  170.  
  171. <div id="title">
  172.  
  173. <div id="linkies">
  174. <a href="/">Home</a>
  175. <a href="/ask">Ask</a>
  176. </div>
  177.  
  178. <div id="bat">
  179. <!--title-->
  180. About
  181. </div>
  182.  
  183.  
  184. </div>
  185.  
  186. <div id="about">
  187. <!--text-->
  188. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  189. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  190. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  191.  
  192. </div>
  193.  
  194. </body>
  195. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement