palfin

navigation page 4

Sep 8th, 2013
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.87 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.  
  8. <head>
  9.  
  10. <title>{Title}</title>
  11.  
  12. {block:Description}<meta name="description" content="{MetaDescription}"/>
  13. {/block:Description}
  14. <link rel="shortcut icon" href="{Favicon}" />
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  16.  
  17. <style type="text/css">
  18.  
  19.  
  20. /*--scrollbar--*/
  21.  
  22. ::-webkit-scrollbar-thumb:vertical {border:3px solid #fff;height:12px; background-color:{color:scrollbar};}
  23. ::-webkit-scrollbar-thumb:horizontal {background-color:#fff;}
  24. ::-webkit-scrollbar {background-color:{color:scrollbar};height:7px;width:12px;border:5px solid #fff;}
  25. ::-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;
  26. }
  27. /*--body--*/
  28.  
  29.  
  30. body {
  31. font-style:none;
  32. background-color:{color:bg};
  33. font-family:calibri;
  34. color:#000;
  35. font-size:9px;
  36. }
  37.  
  38.  
  39. a {
  40. color:{color:link};
  41. text-decoration:none;
  42. -webkit-transition: all 0.5s ease-out;
  43. -moz-transition: all 0.5s ease-out;
  44. transition: all 0.5s ease-out;
  45. }
  46.  
  47. a:hover {
  48. color:{color:hover};
  49. text-decoration:none;
  50. -webkit-transition: all 0.8s ease-out;
  51. -moz-transition: all 0.8s ease-out;
  52. transition: all 0.8s ease-out;
  53. }
  54.  
  55. img {
  56. border:none;
  57. }
  58.  
  59. blockquote {
  60. padding-left:5px;
  61. border-left:2px solid {color:border};
  62. }
  63.  
  64. h1 {
  65. font-size:10px;
  66. }
  67.  
  68. /*--Cursor code--*/
  69.  
  70.  
  71. *, body, a, a:hover {cursor: url("http://www.totallylayouts.com/cursors/random/tiny_cursor.png"), auto }
  72.  
  73. /*everything*/
  74.  
  75. #everything {
  76. margin-left:280px;
  77. margin-top:100px;
  78. }
  79.  
  80. #sidebar {
  81. background-color:#000;
  82. width: 100px;
  83. height: 670px;
  84. display: block;
  85. position: fixed;
  86. margin-top:-130px;
  87. margin-left: 10px;
  88. }
  89.  
  90. #one {
  91. margin-top:275px;
  92. margin-left: 3px;
  93. -webkit-transition: opacity 0.8s ease-in-out;
  94. -moz-transition: opacity 0.8s ease-in-out;
  95. -o-transition: opacity 0.8s ease-in-out;
  96. -ms-transition: opacity 0.8s ease-in-out;
  97. transition: opacity 0.8s ease-in-out;
  98. }
  99.  
  100. #one img {
  101. opacity:1;
  102. width:80px;
  103. height:80px;
  104. padding:5px;
  105. border: 2px double #fff;
  106. background: #fff;
  107. }
  108.  
  109. #sidebar1 {
  110. background-color:#000;
  111. width: 100px;
  112. height: 670px;
  113. display: block;
  114. position: fixed;
  115. margin-top:-370px;
  116. margin-left: 600px;
  117. }
  118.  
  119. #two {
  120. z-index:999999999999999;
  121. margin-top:280px;
  122. margin-left: 3px;
  123. -webkit-transition: opacity 0.8s ease-in-out;
  124. -moz-transition: opacity 0.8s ease-in-out;
  125. -o-transition: opacity 0.8s ease-in-out;
  126. -ms-transition: opacity 0.8s ease-in-out;
  127. transition: opacity 0.8s ease-in-out;
  128. }
  129.  
  130. #two img {
  131. border-radius:500px;
  132. opacity:1;
  133. width:80px;
  134. height:80px;
  135. padding:5px;
  136. border: 2px double #fff;
  137. background: #fff;
  138. }
  139.  
  140. /*--title--*/
  141.  
  142. #title {
  143. text-shadow: 2px 0 .2px #FF0000, -2px 0 .2px #00F1F5;
  144. font-family:'times new roman';
  145. font-size:80px;
  146. margin-top:-67px;
  147. margin-left:240px;
  148. color:#000;
  149. }
  150.  
  151.  
  152. #links {
  153. width:150px;
  154. font-family:'cambria';
  155. text-transform:uppercase;
  156. text-align:center;
  157. margin-top:-342px;
  158. margin-left:-325px;
  159. }
  160.  
  161. #links a {
  162. padding:3px;
  163. font-size:8px;
  164. color:#000;
  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. #links a:hover {
  173. color:#fff;
  174. background-color:#000;
  175. }
  176.  
  177.  
  178. #grouptitle {
  179. padding:5px;
  180. text-shadow: 1px 0 .2px #FF0000, -2px 0 .3px #00F1F5;
  181. text-align:center;
  182. font-style:italic;
  183. font-family:'times new roman';
  184. color:#000;
  185. font-size:17px;
  186. width:118px;
  187. margin-left:-320px;
  188. margin-top:80px;
  189. border-left:2px double #000;
  190. border-right:2px double #000;
  191. border-top:2px double #000;
  192. }
  193.  
  194.  
  195. #grouplinks {
  196. width:120px;
  197. margin-top:0px;
  198. padding:4px;
  199. margin-left:-320px;
  200. border:2px double #000;
  201. }
  202.  
  203.  
  204. #grouplinks a {
  205. font-family:'times new roman';
  206. display:block;
  207. color:#000;
  208. font-size:10px;
  209. padding:6px;
  210. text-align:center;
  211. letter-spacing:1px;
  212. text-transform:uppercase;
  213. margin-bottom:5px;
  214. -webkit-transition: all 0.4s ease-in-out;
  215. -moz-transition: all 0.4s ease-in-out;
  216. -o-transition: all 0.4s ease-in-out;
  217. -ms-transition: all 0.4s ease-in-out;
  218. transition: all 0.4s ease-in-out;
  219. }
  220.  
  221. #grouplinks a:hover {
  222. background:#000;
  223. color:#fff;
  224. }
  225.  
  226. #credit {
  227. right:3px;
  228. bottom:6px;
  229. font-size:9px;
  230. padding:5px;
  231. color:{color:text};
  232. background-color:#fafafa;
  233. text-transform:uppercase;
  234. border:1px solid {color:border};
  235. position:fixed;
  236. -webkit-transition: all 0.5s ease-out;
  237. -moz-transition: all 0.5s ease-out;
  238. transition: all 0.5s ease-out;
  239. }
  240.  
  241. #credit:hover {
  242. background-color:black;
  243. color:white;
  244. }
  245.  
  246. {CustomCSS}
  247.  
  248. </style></head>
  249.  
  250.  
  251. <body>
  252.  
  253. <div id="everything">
  254.  
  255. <div id="title">TITLE</div>
  256. <div id="sidebar">
  257. <div id="one"><img src="http://media.tumblr.com/bfd57c74f4de140823a35212042de9f5/tumblr_inline_msnmi89czc1qz4rgp.jpg"></div>
  258. <div id="sidebar1">
  259. <div id="two"><img src="http://media.tumblr.com/54d90a381ff0d31bb248ca1af23edcb0/tumblr_inline_msnmf2x17g1qz4rgp.jpg"></div>
  260.  
  261. <div id="links">
  262. <a href="/">HOME</a>
  263. <a href="/ask">ASK</a>
  264. <a href="http://hellzayn.tumblr.com/">CREDIT</a>
  265. </div>
  266.  
  267. <table id="all" border="0" cellpadding="0" cellspacing="0">
  268.  
  269.  
  270. <td><div id="grouptitle"><big>Group One</div>
  271. <div id="grouplinks">
  272. <a href="/tagged/">link 1</a>
  273.  
  274. <a href="/tagged/">link 2</a>
  275.  
  276. <a href="/tagged/">link 3</a>
  277.  
  278. <a href="/tagged/">link 4</a>
  279.  
  280. <a href="/tagged/">link 5</a>
  281.  
  282. <a href="/tagged/">link 6</a>
  283.  
  284. </div></td>
  285.  
  286. <tr>
  287.  
  288. <td><div id="grouptitle"><big>Group One</div>
  289. <div id="grouplinks">
  290. <a href="/tagged/">link 1</a>
  291.  
  292. <a href="/tagged/">link 2</a>
  293.  
  294. <a href="/tagged/">link 3</a>
  295.  
  296. <a href="/tagged/">link 4</a>
  297.  
  298. <a href="/tagged/">link 5</a>
  299.  
  300. <a href="/tagged/">link 6</a>
  301.  
  302. </div></td>
  303.  
  304.  
  305.  
  306. </table>
  307.  
  308.  
  309. <div id="credit"><a href="http://hellzayn.tumblr.com/">credit</a>
  310. </div>
  311. </body>
  312. </html>
Advertisement
Add Comment
Please, Sign In to add comment