Advertisement
khalisar

theme 1

Aug 1st, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.97 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. <meta name="color:bg" content="#ffffff">
  18. <meta name="color:link" content="#bbb8b8">
  19. <meta name="color:text" content="#9a9a9a">
  20. <meta name="color:tags" content="#b9b7b7">
  21. <meta name="color:ask" content="#fcfcfc">
  22. <meta name="color:hover" content="#eeeeee">
  23. <meta name="color:border" content="#e7e7e7">
  24. <meta name="color:scrollbar" content="#d6d5d5">
  25. <meta name="color:link hover" content="#d6d5d5">
  26. <meta name="color:pagination" content="#d6d5d5">
  27.  
  28. <meta name="image:sidebar" content=""/>
  29.  
  30. <meta name="text:link 1" content="">
  31. <meta name="text:link 1 url" content="/">
  32. <meta name="text:link 2" content="">
  33. <meta name="text:link 2 url" content="/">
  34. <meta name="text:link 3" content="">
  35. <meta name="text:link 3 url" content="/">
  36. <meta name="text:link 4" content="">
  37. <meta name="text:link 4 url" content="/">
  38.  
  39.  
  40.  
  41.  
  42. <meta name="if:Cursor" content="1">
  43.  
  44.  
  45. <style type="text/css">
  46.  
  47.  
  48. /*--scrollbar--*/
  49.  
  50. ::-webkit-scrollbar-thumb:vertical {border:3px solid #fff;height:12px; background-color:{color:scrollbar};}
  51. ::-webkit-scrollbar-thumb:horizontal {background-color:#fff;}
  52. ::-webkit-scrollbar {background-color:{color:scrollbar};height:7px;width:12px;border:5px solid #fff;}
  53. ::-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;
  54. }
  55. /*--body--*/
  56.  
  57.  
  58. body {
  59. font-style:none;
  60. background-color:{color:bg};
  61. font-family:calibri;
  62. color:{color:text};
  63. font-size:9px;
  64. }
  65.  
  66.  
  67. a {
  68. color:{color:link};
  69. text-decoration:none;
  70. -webkit-transition: all 0.5s ease-out;
  71. -moz-transition: all 0.5s ease-out;
  72. transition: all 0.5s ease-out;
  73. }
  74.  
  75. a:hover {
  76. color:{color:hover};
  77. text-decoration:none;
  78. -webkit-transition: all 0.8s ease-out;
  79. -moz-transition: all 0.8s ease-out;
  80. transition: all 0.8s ease-out;
  81. }
  82.  
  83. img {
  84. border:none;
  85. }
  86.  
  87. blockquote {
  88. padding-left:5px;
  89. border-left:2px solid {color:border};
  90. }
  91.  
  92. h1 {
  93. font-size:10px;
  94. }
  95.  
  96. /*--Cursor code--*/
  97.  
  98. {block:ifCursor}
  99.  
  100. *, body, a, a:hover {cursor: url("http://www.totallylayouts.com/cursors/random/tiny_cursor.png"), auto }
  101.  
  102. {/block:ifCursor}
  103.  
  104.  
  105.  
  106. /*--sidebar--*/
  107.  
  108. #sidebar {
  109. color:{color:text};
  110. position:fixed;
  111. width:160px;
  112. text-align:left;
  113. }
  114. #sidebarimage {
  115. width:160px;
  116. }
  117.  
  118. #sidebarimage img {
  119. position:fixed;
  120. width:190px;
  121. height:600px;
  122. margin-top:0px;
  123. margin-left:175px;
  124. padding:3px;
  125. }
  126.  
  127. /*--links--*/
  128.  
  129. #sidebar:hover #links {
  130. opacity:.9;
  131. margin-top:-179px;
  132. -moz-transition-duration:1s;
  133. -webkit-transition-duration:1s;
  134. -o-transition-duration:1s;
  135. }
  136.  
  137. #links {
  138. position:absolute;
  139. letter-spacing:1px;
  140. position:fixed;
  141. font-family:times;
  142. width:200px;
  143. opacity:0;
  144. margin-top:100px;
  145. margin-left:172px;
  146. background-color:#fff;
  147. font-size:11px;
  148. text-transform:uppercase;
  149. text-align:center;
  150. line-height:170%;
  151. -moz-transition-duration:1s;
  152. -webkit-transition-duration:1s;
  153. -o-transition-duration:1s;
  154. }
  155.  
  156. #links a{
  157. width:152px;
  158. line-height:130%;
  159. margin-left:4px;
  160. color:{color:link};
  161. letter-spacing:0px;
  162. text-decoration:none;
  163. }
  164.  
  165. #links a:hover {
  166. text-align:center;
  167. text-decoration:{color:link hover};
  168. text-transform:uppercase;
  169. color: {color:link hover};
  170. padding:0px;
  171. -moz-transition-duration:1s;
  172. -webkit-transition-duration:1s;
  173. -o-transition-duration:1s;
  174. }
  175.  
  176.  
  177. /*--posts--*/
  178.  
  179. #posts {
  180. width:500px;
  181. margin-bottom:10px;
  182. padding:1px;
  183. font-size:11px;
  184. color:{color:text};
  185. line-height:90%;
  186. text-align:justify;
  187. }
  188. /*--description--*/
  189.  
  190. #description {
  191. width:147px;
  192. padding:9px;
  193. opacity: .9;
  194. border: 1px solid {color:border};
  195. background-color: #ffffff;
  196. font-family:'calibri';
  197. font-size:9px;
  198. text-align:center;
  199. margin-left:190px;
  200. margin-top:285px;
  201. color:{color:text};
  202.  
  203.  
  204. }
  205. #pagination {
  206. font-size:10px;
  207. text-transform:uppercase;
  208. margin-top:0px;
  209. margin-left:32px;
  210. width:120px;
  211. letter-spacing:1px;
  212. font-style:normal;
  213. text-align:center;
  214. }
  215.  
  216.  
  217.  
  218. #pagination a {
  219. color: {color:pagination};
  220. }
  221.  
  222.  
  223. #postscontainer {
  224. margin-bottom:20px;
  225. padding:1px;
  226. margin-left:450px;
  227. margin-top:55px;
  228. }
  229.  
  230.  
  231. #info {
  232. margin-bottom:10px;
  233. font-size:8px;
  234. margin-top:10px;
  235. text-align:left;
  236. padding:5px;
  237. color:{color:link};
  238. border-top:1px solid {color:border};
  239. }
  240.  
  241.  
  242. #reblog {
  243. text-transform:uppercase;
  244. font-family:trebuchet ms;
  245. margin-left:-5px;
  246. margin-top:-5px;
  247. text-align:center;
  248. color:white;
  249. background-color:#cfcece;
  250. width:35px;
  251. padding:3px;
  252. }
  253.  
  254. #reblog a {
  255. color:white;
  256. }
  257.  
  258. #notes {
  259. margin-left:40px;
  260. margin-top:-12px;
  261. }
  262.  
  263. #rightinfo {
  264. text-transform:uppercase;
  265. font-family:trebuchet ms;
  266. margin-left:370px;
  267. text-align:justify;
  268. float:right;
  269. background-color:#cfcece;
  270. padding:3px;
  271. margin-top:-12px;
  272. color:white;
  273. }
  274.  
  275. #rightinfo a {
  276. color:white;
  277. }
  278.  
  279. /*--tags--*/
  280.  
  281. #tags {
  282. width:490px;
  283. margin-left:-4px;
  284. margin-top:7px;
  285. font-size:8px;
  286. color:{color:tags}:
  287. }
  288.  
  289. #tags a {
  290. color:{color:tags};
  291. }
  292.  
  293. #tags a:hover {
  294. color:{color:hover}
  295. }
  296.  
  297. /*--asks--*/
  298.  
  299. #askbg {
  300. padding:12px;
  301. background-color:{color:ask};
  302. }
  303.  
  304. #ask {
  305. margin-top:-10px;
  306. font-family:calibri;
  307. text-align:left;
  308. }
  309.  
  310. #ask img {
  311. margin-top:30px;
  312. width:50px;
  313. }
  314.  
  315.  
  316.  
  317.  
  318.  
  319. {CustomCSS}
  320.  
  321.  
  322.  
  323. </style></head>
  324.  
  325.  
  326. <body>
  327.  
  328. <div id="sidebar">
  329. <div id="sidebarimage">
  330. <img src="{image:sidebar}"></div>
  331.  
  332. <div id="description">{description}</div>
  333.  
  334. <div id="links">
  335. <a href="{text:link 1 url}">{text:link 1}</a>
  336. <a href="{text:link 2 url}">{text:link 2}</a>
  337. <a href="{text:link 3 url}">{text:link 3}</a>
  338. <a href="{text:link 4 url}">{text:link 4}</a>
  339.  
  340. </div>
  341.  
  342. {block:Pagination}
  343. <div id="pagination">
  344.  
  345. {block:PreviousPage}<a href="{PreviousPage}">Prev</a>{/block:PreviousPage}
  346. {block:NextPage}<a href="{NextPage}">Next</a>{/block:NextPage}
  347. </div>{/block:Pagination}
  348.  
  349. </div></div>
  350.  
  351.  
  352. <div id="postscontainer">
  353.  
  354. {block:Posts}
  355.  
  356. <div id="posts">
  357.  
  358.  
  359. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  360.  
  361.  
  362. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  363.  
  364. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  365.  
  366. {block:Quote}{Quote}{block:Source} &#8212;{Source}{/block:Source}{/block:Quote}
  367.  
  368. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  369.  
  370. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  371.  
  372. {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  373.  
  374. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  375.  
  376. {block:Answer}<div id="askbg"><div id="ask"></div><br><img src="{AskerPortraitURL-24}"> {Asker} said: {Question}</div> {Answer}{/block:Answer}
  377.  
  378. <div id="info"><div id="reblog"><a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div><div id="notes"><a href="{Permalink}">
  379. {NoteCountWithLabel}</a></div>
  380. <div id="rightinfo">{block:Date}<a href="{Permalink}">
  381. {TimeAgo}</a></a>{/block:Date} |{block:RebloggedFrom}<a href="{ReblogParentURL}"
  382. title="{ReblogParenttitle}">Via</a> | <a href="{ReblogRootURL}"title="{ReblogRoottitle}">Source</a>{/block:RebloggedFrom}</div>
  383. {block:HasTags} <div id="tags">Tags:{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div>
  384.  
  385.  
  386. </div>
  387.  
  388. {/block:Posts}
  389.  
  390. {block:PostNotes}{PostNotes}</div>{/block:PostNotes}
  391. {/block:Posts}
  392.  
  393. </div>
  394.  
  395.  
  396. </body>
  397. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement