Advertisement
trashcandy

assassination theme

Oct 20th, 2016
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.10 KB | None | 0 0
  1. <html>
  2. <!--
  3. theme by evelo
  4. base code by nezzi00
  5.  
  6. dont remove the credit
  7. -->
  8. <title>{Title}</title>
  9. <link rel="shortcut icon" href="{image:favicon}">
  10.  
  11. <meta name="image:background" content=""/>
  12. <meta name="image:sidebar" content=""/>
  13. <meta name="image:favicon" content=""/>
  14. <meta name="image:side image right" content="" />
  15.  
  16. <meta name="color:background" content="#fff"/>
  17. <meta name="color:text" content="#d3d3d3"/>
  18. <meta name="color:link" content="#ADD8E6"/>
  19. <meta name="color:link hover" content="#72bcd4"/>
  20. <meta name="color:post bg" content="#fff"/>
  21. <meta name="color:border" content="#d3d3d3"/>
  22. <meta name="color:ask bg" content="#fbfbfb"/>
  23.  
  24. <meta name="if:title" content="1"/>
  25. <meta name="if:sidebar img" content="1"/>
  26. <meta name="if:description" content="1"/>
  27. <meta name="if:full bg" content="0"/>
  28.  
  29. <meta name="select:post size" content="250px"/>
  30. <meta name="select:post size" content="300px"/>
  31. <meta name="select:post size" content="350px"/>
  32. <meta name="select:post size" content="400px"/>
  33.  
  34. <meta name="select:border" content="solid"/>
  35. <meta name="select:border" content="dotted"/>
  36. <meta name="select:border" content="dashed"/>
  37. <meta name="select:border" content="outset"/>
  38.  
  39. <meta name="select:font" content="arial"/>
  40. <meta name="select:font" content="ms gothic"/>
  41. <meta name="select:font" content="consolas"/>
  42.  
  43. <meta name="text:link divider" content="+"/>
  44. <meta name="text:link 1" content=""/>
  45. <meta name="text:link 1 url" content="/"/>
  46. <meta name="text:link 2" content=""/>
  47. <meta name="text:link 2 url" content="/"/>
  48. <meta name="text:link 3" content=""/>
  49. <meta name="text:link 3 url" content="/"/>
  50. <meta name="text:link 4" content=""/>
  51. <meta name="text:link 4 url" content="/"/>
  52.  
  53. <style>
  54.  
  55.  
  56. body {
  57.  
  58. font-size: 12px;
  59. color: {color:text};
  60. background-image: url('{image:background}');
  61. {block:ifnotfullbg}
  62. background-repeat: repeat;
  63. background-attachment: fixed;
  64. {/block:ifnotfullbg}
  65. {block:iffullbg}
  66. background-size: cover;
  67. background-attachment: fixed;
  68. {/block:iffullbg}
  69. background-color: {color:background};
  70. font-family: {select:font};
  71.  
  72. }
  73.  
  74. ul {
  75. list-style-type: hiragana;
  76.  
  77. }
  78.  
  79. a, a:visited {
  80.  
  81. border-bottom: 1px dotted {color:Border};
  82. text-decoration: none;
  83. color:{color:link};
  84. -webkit-transition-duration: .3s;
  85. -moz-transition-duration: .3s;
  86. -o-transition-duration: .3s;
  87.  
  88. }
  89.  
  90. a:hover {
  91.  
  92. color:{color:link hover};
  93. transition-duration: .3s;
  94. -webkit-transition-duration: .3s;
  95. -moz-transition-duration: .3s;
  96. -o-transition-duration: .3s;
  97. }
  98.  
  99. #entries {
  100.  
  101. position: relative;
  102. padding: 15px;
  103. border: 1px {select:border} {color:border};
  104. width: {select:post size};
  105. margin: 30px 5px 20px 650px;
  106. background: {color:post bg};
  107.  
  108.  
  109. }
  110.  
  111. #entries blockquote {
  112.  
  113. color: {color:text};
  114. border-left: 1px {select:border}{color:border};
  115. padding: 0px 0px 0px 5px;
  116.  
  117. }
  118.  
  119. #sidebar {
  120.  
  121. position:fixed;
  122. margin-left: 300px;
  123. margin-top: 100px;
  124. width: 150px;
  125.  
  126.  
  127. }
  128.  
  129. #sidebar img {
  130.  
  131. width: 120px;
  132. height: 120px;
  133. border: 1px {select:border} {color:border};
  134. }
  135.  
  136. #sidebar .title {
  137.  
  138. font-size: 13px;
  139. margin-bottom: 5px;
  140.  
  141. }
  142.  
  143. #sidebar .clicky {
  144.  
  145. margin-top: 10px;
  146. }
  147.  
  148. #sidebar .desc {
  149.  
  150. margin-top: 10px;
  151.  
  152. }
  153.  
  154. .ask {
  155.  
  156. background: {color:ask bg};
  157. border: 1px {select:border}{color:border};
  158. padding: 5px;
  159.  
  160. }
  161.  
  162. #credit {
  163.  
  164. position: fixed;
  165. padding: 7px;
  166. border: 0px {select:border}{color:border};
  167. width: 10px;
  168. height: 7;
  169. line-height: 90%;
  170. bottom: 5px;
  171. left: 5px;
  172. }
  173.  
  174.  
  175. </style>
  176.  
  177. <head>
  178.  
  179. </head>
  180.  
  181. <body>
  182.  
  183. <div id="sidebar">
  184. <center>
  185.  
  186. {block:iftitle}
  187. <div class="title">
  188. {Title}
  189. </div>
  190. {/block:iftitle}
  191.  
  192. {block:ifsidebarimg}
  193. <img src="{image:sidebar}">
  194. {/block:ifsidebarimg}
  195.  
  196. <div class="clicky">
  197. {block:iflink1}
  198. <a href="{text:link 1 url}">{text:link 1}</a> {text:link divider}
  199. {/block:iflink1}
  200. {block:iflink2}
  201. <a href="{text:link 2 url}">{text:link 2}</a> {text:link divider}
  202. {/block:iflink2}
  203. {block:iflink3}
  204. <a href="{text:link 3 url}">{text:link 3}</a>
  205. {/block:iflink3}
  206. </div>
  207.  
  208. {block:ifdescription}
  209. <div class="desc">
  210. {Description}
  211. </div>
  212. {/block:ifdescription}
  213. <div id="pages">
  214.  
  215. {block:PreviousPage}
  216. <a href="{PreviousPage}">previous</a>
  217. {/block:PreviousPage}
  218.  
  219. {block:NextPage}
  220. <a href="{NextPage}">next</a>
  221. {/block:NextPage}
  222.  
  223. </div>
  224. </center>
  225. </div>
  226.  
  227. <div id="credit">
  228. <a href="http://candychuuya.tumblr.com">🍙</a>
  229. </div>
  230.  
  231.  
  232. <!-- POSTS -->
  233.  
  234. <div id="content">
  235.  
  236. {block:Posts}
  237. <div id="entries">
  238.  
  239.  
  240.  
  241. {block:NoRebloggedFrom}
  242. {block:RebloggedFrom}
  243. {ReblogParentName}
  244. {/block:RebloggedFrom}
  245. {/block:NoRebloggedFrom}
  246.  
  247.  
  248. {block:ContentSource}
  249. <!-- {SourceURL}
  250. {block:SourceLogo}
  251. <img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  252. {/block:SourceLogo}
  253. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  254. {/block:ContentSource}
  255.  
  256.  
  257. {block:Text}
  258. {block:Title}
  259. <b>{Title}</b>
  260. {block:Title}
  261. {Body}
  262. {/block:Text}
  263.  
  264. {block:Photo}
  265. {LinkOpenTag}
  266. <img src="{PhotoURL-400}" alt="{PhotoAlt}" style="width: {select:post size};">
  267. {LinkCloseTag}
  268. {block:Caption}
  269. {Caption}
  270. {/block:Caption}
  271. {/block:Photo}
  272.  
  273. {block:Photoset}
  274. {LinkOpenTag}
  275. {Photoset}
  276. {LinkCloseTag}
  277. {block:Caption}
  278. {Caption}
  279. {/block:Caption}
  280. {/block:Photoset}
  281.  
  282. {block:Quote}
  283. {Quote}
  284. {block:Source}
  285. {Source}
  286. {/block:Source}
  287. {/block:Quote}
  288.  
  289. {block:Link}
  290. <a href="{URL}" target="_blank">{Name}</a>
  291. {block:Caption}
  292. {Caption}
  293. {/block:Caption}
  294. {/block:Link}
  295.  
  296. {block:Chat}
  297. {block:Title}
  298. <b>{Title}</b>
  299. {/block:Title}
  300. {block:Lines}
  301. <div class="line {Alt}">
  302. {block:Label}
  303. <b>{Label}</b>
  304. {/block:Label}
  305. {Line}
  306. </div>
  307. {/block:Lines}
  308. {/block:Chat}
  309.  
  310. {block:Audio}
  311. {block:AudioPlayer}
  312. {AudioPlayer}
  313. {block:AudioPlayer}
  314. {block:TrackName}
  315. {TrackName}
  316. {/block:TrackName}
  317. {block:Artist}
  318. {Artist}
  319. {/block:Artist}
  320. {block:Caption}
  321. {Caption}
  322. {/block:Caption}
  323. {/block:Audio}
  324.  
  325. {block:Video}
  326. <div style="overflow:hidden;">
  327. {Video-400}
  328. </div>
  329. {block:Caption}
  330. {Caption}
  331. {block:Caption}
  332. {/block:Video}
  333.  
  334. {block:Answer}
  335. <div class="ask">
  336. {Asker} said:
  337. {Question}
  338. </div>
  339. {Answer}
  340. {block:Answerer}
  341. {Answerer}
  342. {/block:Answerer}
  343. {/block:Answer}
  344.  
  345. {block:PostNotes}
  346. {PostNotes}
  347. {/block:PostNotes}
  348. <!-- PERMALINK -->
  349.  
  350. {block:Date}
  351. <div class="permalink" style="margin-top:5px;">
  352. <a href="{Permalink}">
  353. {TimeAgo}
  354. +{NoteCount};
  355. {block:HasTags}
  356. {block:Tags}
  357. {Tag}
  358. {/block:Tags}
  359. {/block:HasTags}
  360. </a>
  361. </div>
  362. {/block:Date}
  363.  
  364.  
  365.  
  366.  
  367. </div>
  368. </div>
  369. </body>
  370. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement