palfin

Navigation #5

Dec 15th, 2013
1,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 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. <!-- BASE CODE BY DYLAENOBRIENS -->
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6.  
  7. <head>
  8.  
  9. <title>{Title}</title>
  10.  
  11. {block:Description}<meta name="description" content="{MetaDescription}"/>
  12. {/block:Description}
  13. <link rel="shortcut icon" href="{Favicon}" />
  14. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  15.  
  16. <style type="text/css">
  17.  
  18.  
  19. ::-webkit-scrollbar-thumb:vertical {border:3px solid #fff;height:12px; background-color:{color:scrollbar};}
  20. ::-webkit-scrollbar-thumb:horizontal {background-color:#fff;}
  21. ::-webkit-scrollbar {background-color:{color:scrollbar};height:7px;width:12px;border:5px solid #fff;}
  22. ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment{background-color:{color:scrollbar};display:block;height:8px;border-right:2px solid #fff;border-left:2px solid #fff;
  23. }
  24.  
  25.  
  26. body {
  27. font-style:none;
  28. background-color:{color:bg};
  29. font-family:calibri;
  30. color:{color:text};
  31. font-size:9px;
  32. }
  33.  
  34.  
  35. a {
  36. color:{color:link};
  37. text-decoration:none;
  38. -webkit-transition: all 0.5s ease-out;
  39. -moz-transition: all 0.5s ease-out;
  40. transition: all 0.5s ease-out;
  41. }
  42.  
  43. a:hover {
  44. color:{color:hover};
  45. text-decoration:none;
  46. -webkit-transition: all 0.8s ease-out;
  47. -moz-transition: all 0.8s ease-out;
  48. transition: all 0.8s ease-out;
  49. }
  50.  
  51. img {
  52. border:none;
  53. }
  54.  
  55. blockquote {
  56. padding-left:5px;
  57. border-left:2px solid {color:border};
  58. }
  59.  
  60. h1 {
  61. font-size:10px;
  62. }
  63.  
  64.  
  65. *, body, a, a:hover {cursor: url("http://www.totallylayouts.com/cursors/random/tiny_cursor.png"), auto }
  66.  
  67.  
  68. #everything {
  69. margin-left:250px;
  70. margin-top:100px;
  71. }
  72.  
  73. #sidebar {
  74. width: 100px;
  75. height: 670px;
  76. display: block;
  77. position: fixed;
  78. margin-top:-130px;
  79. margin-left: -110px;
  80. }
  81.  
  82. #one {
  83. margin-top:220px;
  84. margin-left: -70px;
  85. -webkit-transition: opacity 0.8s ease-in-out;
  86. -moz-transition: opacity 0.8s ease-in-out;
  87. -o-transition: opacity 0.8s ease-in-out;
  88. -ms-transition: opacity 0.8s ease-in-out;
  89. transition: opacity 0.8s ease-in-out;
  90. }
  91.  
  92. #one img {
  93. opacity:1;
  94. width:250px;
  95. height:220px;
  96. padding:5px;
  97. }
  98.  
  99. #title {
  100. font-family:'times new roman';
  101. font-size:80px;
  102. margin-top:-67px;
  103. margin-left:295px;
  104. color:#000;
  105. }
  106.  
  107. #links {
  108. width:150px;
  109. font-family:'cambria';
  110. text-transform:uppercase;
  111. text-align:center;
  112. margin-top:-325px;
  113. margin-left:432px;
  114. }
  115.  
  116. #links a {
  117. padding:3px;
  118. font-size:8px;
  119. color:#bbbaba;
  120. -webkit-transition: all 0.4s ease-in-out;
  121. -moz-transition: all 0.4s ease-in-out;
  122. -o-transition: all 0.4s ease-in-out;
  123. -ms-transition: all 0.4s ease-in-out;
  124. transition: all 0.4s ease-in-out;
  125. }
  126.  
  127. #links a:hover {
  128. color:#fff;
  129. background-color:#000;
  130. }
  131.  
  132. #grouptitle {
  133. padding:5px;
  134. text-align:center;
  135. font-style:italic;
  136. font-family:'times new roman';
  137. color:#000;
  138. font-size:17px;
  139. width:118px;
  140. margin-left:190px;
  141. margin-top:90px;
  142. border-left:2px solid #000;
  143. border-right:2px solid #000;
  144. border-top:2px solid #000;
  145. }
  146.  
  147. #grouplinks {
  148. width:120px;
  149. margin-top:0px;
  150. padding:4px;
  151. margin-left:190px;
  152. border:2px solid #000;
  153. }
  154.  
  155. #grouplinks a {
  156. font-family:'times new roman';
  157. display:block;
  158. color:#000;
  159. font-size:10px;
  160. padding:6px;
  161. text-align:center;
  162. letter-spacing:1px;
  163. text-transform:uppercase;
  164. margin-bottom:5px;
  165. -webkit-transition: all 0.4s ease-in-out;
  166. -moz-transition: all 0.4s ease-in-out;
  167. -o-transition: all 0.4s ease-in-out;
  168. -ms-transition: all 0.4s ease-in-out;
  169. transition: all 0.4s ease-in-out;
  170. }
  171.  
  172. #grouplinks a:hover {
  173. background:#000;
  174. color:#fff;
  175. }
  176.  
  177. {CustomCSS}
  178.  
  179. </style></head>
  180.  
  181.  
  182. <body>
  183.  
  184. <div id="everything">
  185.  
  186. <div id="title">TITLE</div>
  187. <div id="sidebar">
  188. <div id="one"><img src="https://31.media.tumblr.com/23cf55088ae8a672d1887fa43c39db76/tumblr_mxbz0yEwPk1sk32ylo1_500.jpg"></div>
  189.  
  190.  
  191. <div id="links">
  192. <a href="/">HOME</a>
  193. <a href="/ask">ASK</a>
  194. <a href="http://hellzayn.tumblr.com/">CREDIT</a>
  195. </div>
  196.  
  197. <table id="all" border="0" cellpadding="0" cellspacing="0">
  198.  
  199.  
  200. <td><div id="grouptitle"><big>Group One</div>
  201. <div id="grouplinks">
  202. <a href="/tagged/">link 1</a>
  203.  
  204. <a href="/tagged/">link 2</a>
  205.  
  206. <a href="/tagged/">link 3</a>
  207.  
  208. <a href="/tagged/">link 4</a>
  209.  
  210. <a href="/tagged/">link 5</a>
  211.  
  212. <a href="/tagged/">link 6</a>
  213.  
  214. </div></td>
  215.  
  216.  
  217. <td><div id="grouptitle"><big>Group One</div>
  218. <div id="grouplinks">
  219. <a href="/tagged/">link 1</a>
  220.  
  221. <a href="/tagged/">link 2</a>
  222.  
  223. <a href="/tagged/">link 3</a>
  224.  
  225. <a href="/tagged/">link 4</a>
  226.  
  227. <a href="/tagged/">link 5</a>
  228.  
  229. <a href="/tagged/">link 6</a>
  230.  
  231. </div></td>
  232.  
  233. <td><div id="grouptitle"><big>Group One</div>
  234. <div id="grouplinks">
  235. <a href="/tagged/">link 1</a>
  236.  
  237. <a href="/tagged/">link 2</a>
  238.  
  239. <a href="/tagged/">link 3</a>
  240.  
  241. <a href="/tagged/">link 4</a>
  242.  
  243. <a href="/tagged/">link 5</a>
  244.  
  245. <a href="/tagged/">link 6</a>
  246.  
  247. </div></td>
  248.  
  249. <tr>
  250.  
  251. </table>
  252.  
  253. </div>
  254. </body>
  255. </html>
Advertisement
Add Comment
Please, Sign In to add comment