Advertisement
dearhannibal

Mercurial

Sep 3rd, 2013
4,657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.63 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!-- oh hey look i made a theme *high five* edit all you want really, basically everything is customizable! as long as you leave the credit intact thank you -->
  6.  
  7.  
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12.  
  13. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  14.  
  15. <!-- default variables -->
  16.  
  17. <meta name="color:background" content="#ffffff">
  18. <meta name="color:title" content ="#3b3b3b">
  19. <meta name="color:text" content="#3b3b3b">
  20. <meta name="color:tags" content="#3b3b3b">
  21. <meta name="color:permalink" content="#e0e0e0">
  22. <meta name="color:link" content="#b8b8b8">
  23. <meta name="color:link hover" content="#3b3b3b">
  24. <meta name="color:border" content="#eeeeee">
  25. <meta name="color:scrollbar" content="#eeeeee">
  26. <meta name="color:scrollbar bg" content="#ffffff">
  27.  
  28. <meta name="if:show captions" content="1"/>
  29. <meta name="text:Link 1 URL" content="" />
  30. <meta name="text:Link 1" content="" />
  31. <meta name="text:Link 2 URL" content="" />
  32. <meta name="text:Link 2" content="" />
  33. <meta name="text:Link 3 URL" content="" />
  34. <meta name="text:Link 3" content="" />
  35. <meta name="text:Link 4 URL" content="" />
  36. <meta name="text:Link 4" content=""/>
  37. <meta name="text:Link 5 URL" content="" />
  38. <meta name="text:Link 5" content="" />
  39.  
  40.  
  41.  
  42.  
  43. <link href='http://fonts.googleapis.com/css?family=Libre+Baskerville:400,400italic' rel='stylesheet' type='text/css'>
  44.  
  45. <link href='http://fonts.googleapis.com/css?family=Felipa|Libre+Baskerville:400italic|Damion' rel='stylesheet' type='text/css'>
  46.  
  47. <!-- CSS styling aww yeah. This is the fun part. -->
  48.  
  49. <style type="text/css">
  50.  
  51. ::-webkit-scrollbar {width:5px; height:auto; background:{color:scrollbar bg};}
  52. ::-webkit-scrollbar-corner {background:{color:scrollbar};}
  53. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  54. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  55.  
  56. #credit {position:fixed;
  57. float:right;
  58. opacity:0.7;
  59. bottom:18px;
  60. right:18px;
  61. padding:6px;
  62. font-size:10px;
  63. text-align:center;
  64. height:10px;
  65. width:10px;
  66. font-family:georgia;
  67. -webkit-transition:all 0.5s ease-in-out;
  68. -moz-transition:all 0.5s ease-in-out;
  69. transition:all 0.5s ease-in-out;}
  70. #credit a {color:black;}
  71.  
  72. body {
  73. margin:0px;
  74. padding:0px;
  75. font-family:libre baskerville;
  76. font-size:9px;
  77. color:{color:text};
  78. background:{color:background};
  79. }
  80.  
  81. a:link, a, a:active, a:visited {
  82. text-decoration:none;
  83. color:{color:link};
  84. -webkit-transition: all 0.5s ease-in-out;
  85. -moz-transition: all 0.5s ease-in-out;
  86. -o-transition: all 0.5s ease-in-out;
  87. -ms-transition: all 0.5s ease-in-out;
  88. transition: all 0.5s ease-in-out;
  89. }
  90. a:hover {
  91. color:{color:link hover};
  92. }
  93.  
  94. #entry {
  95. margin-left:540px;
  96. width:520px;
  97. font-family: libre baskerville;
  98. }
  99.  
  100. .post {
  101. float:center;
  102. overflow:hidden;
  103. text-align:justify;
  104. padding-top:60px;
  105. padding-bottom:90px;
  106. padding-right:20px;
  107. width:500px;
  108. overflow:hidden;
  109. }
  110.  
  111. .permalink {
  112. position:absolute;
  113. opacity:0;
  114. font-size:9px;
  115. margin-top:20px;
  116. font-weight:normal;
  117. {block:indexpage}
  118. margin-left:540px;
  119. {/block:indexpage}
  120. {block:permalinkpage}
  121. display:none;
  122. {/block:permalinkpage}
  123. -webkit-transition: all 0.5s ease-in-out;
  124. -moz-transition: all 0.5s ease-in-out;
  125. -o-transition: all 0.5s ease-in-out;
  126. -ms-transition: all 0.5s ease-in-out;
  127. transition: all 0.5s ease-in-out;
  128. }
  129.  
  130. .permalink a {
  131. color:{color:permalink};
  132. }
  133.  
  134. .post:hover .permalink {
  135. opacity:1;
  136. }
  137.  
  138. .tags {
  139. position:absolute;
  140. width:250px;
  141. opacity:0;
  142. font-size:9px;
  143. margin-top:20px;
  144. {block:indexpage}
  145. margin-left:540px;
  146. {/block:indexpage}
  147. {block:permalinkpage}
  148. display:none;
  149. {/block:permalinkpage}
  150. -webkit-transition: all 0.5s ease-in-out;
  151. -moz-transition: all 0.5s ease-in-out;
  152. -o-transition: all 0.5s ease-in-out;
  153. -ms-transition: all 0.5s ease-in-out;
  154. transition: all 0.5s ease-in-out;
  155. }
  156.  
  157. .tags a {
  158. color:{color:tags};
  159. }
  160.  
  161. .tags a:hover {
  162. color:{color:tags};
  163. }
  164.  
  165. .post:hover .tags {
  166. opacity:1;
  167. }
  168.  
  169.  
  170.  
  171. h1 {
  172. font-size:14px;
  173. text-transform:none;
  174. font-weight:lighter;
  175. padding-left:10px;
  176. color:{color:title};
  177. }
  178. h1 a {
  179. color:{color:title};
  180. text-transform:none;
  181. }
  182.  
  183.  
  184.  
  185.  
  186. #sidebar {
  187. width:220px;
  188. position:fixed;
  189. height:auto;
  190. margin-top:0px;
  191. left:110px;
  192. text-align:center;
  193. padding-top:150px;
  194. height:120%;
  195. border-right:1px solid #e3e3e3;
  196. padding-right:95px;
  197. }
  198.  
  199.  
  200. #sidebarlinks {
  201. height:auto;
  202. font-family:'felipa', cursive;
  203. opacity:1;
  204. padding:4px;
  205. margin-top:-225px;
  206. padding-bottom:6px;
  207. margin-left:15px;
  208. font-size:15px;
  209. font-weight:normal;
  210. text-transform:lowercase;
  211. letter-spacing:1px;
  212. color:{color:sidelink};
  213. text-align:center;
  214. }
  215.  
  216.  
  217.  
  218. #sidebarlinks a {
  219. padding:0 4px;
  220. line-height:15px;
  221. margin-bottom:3px;
  222. text-align:center;
  223. display:inline-block;
  224. border-bottom:2px solid transparent;
  225. }
  226.  
  227. #sidebarlinks a:hover {text-decoration:none;
  228. border-bottom:2px solid {color:link};}
  229.  
  230.  
  231. .description {
  232. font-family: 'Libre Baskerville', serif;
  233. color: {color:text};
  234. padding-top:6px;
  235. padding-left:20px;
  236. font-size:9px;
  237. width:125px;
  238. line-height:130%;
  239. margin-left:auto;
  240. margin-right:auto;
  241. text-align:justify;}
  242.  
  243. .pagination {
  244. margin-top:150px;
  245. margin-left:10px;
  246. text-align:center;
  247. font-family:libre baskerville;
  248. font-size:9px;
  249. }
  250.  
  251. .pagination a {
  252. color:{color:link};
  253. -webkit-transition: all 0.5s ease-in-out;
  254. -moz-transition: all 0.5s ease-in-out;
  255. -o-transition: all 0.5s ease-in-out;
  256. -ms-transition: all 0.5s ease-in-out;
  257. transition: all 0.5s ease-in-out;
  258. }
  259.  
  260. .pagination a:hover {
  261. color:{color:link hover};
  262. }
  263.  
  264. .quote {
  265. font-family:baskerville;
  266. font-size:18px;
  267. font-style:italic;
  268. text-align:right;
  269. line-height:110%;
  270. padding-right:5px;
  271. padding-left:5px;
  272. padding-bottom:3px;
  273. }
  274.  
  275. #source {
  276. text-align:left;
  277. padding-left:20px;
  278. padding-right:5px;
  279. }
  280.  
  281. .audioimage {
  282. float:left;
  283. text-align:center;
  284. margin-left:0px;
  285. width:95px;
  286. border:0px solid;
  287. color:transparent;
  288. }
  289.  
  290. .audioimage img {
  291. max-width:95px;
  292. height:95px;
  293. width:95px;
  294. }
  295.  
  296. .player {
  297. width:41px;
  298. height:41px;
  299. position:absolute;
  300. z-index:3;
  301. background:#FFFFFF;
  302. margin-top:6px;
  303. margin-left:27px;
  304. opacity:0.3;
  305. transition-duration: 0.6s;
  306. -moz-transition-duration: 0.6s;
  307. -webkit-transition-duration: 0.6s;
  308. -o-transition-duration: 0.6s;
  309. border-radius:20px 20px 20px 20px;
  310. }
  311.  
  312. .player:hover {
  313. opacity:0.80;
  314. transition-duration: 0.6s;
  315. -moz-transition-duration: 0.6s;
  316. -webkit-transition-duration: 0.6s;
  317. -o-transition-duration: 0.6s;
  318. }
  319.  
  320. .audioplayer {
  321. background-color:transparent;
  322. width:15px; height:25px;
  323. overflow:hidden;
  324. padding:3px;
  325. margin-left:5px;
  326. margin-top:5px;
  327. -webkit-border-radius:15px 15px 15px 15px;
  328. }
  329.  
  330.  
  331. .data {
  332. background-color:{color:background};
  333. color:{color:text};
  334. text-transform:uppercase;
  335. height:10px; padding:6px 0px 5px 0px;
  336. width:401px;
  337. margin-bottom:-7px;
  338. margin-left:99px;
  339. text-align:center
  340. }
  341.  
  342. .data b {
  343. color:{color:source};
  344. line-height:7px;
  345. }
  346.  
  347.  
  348. .caption {
  349. text-align:left;
  350. padding-left:10px;
  351. padding-right:10px;
  352. font-family:baskerville;
  353. display:block;
  354. }
  355. .caption img {
  356. max-width:490px;
  357. }
  358.  
  359. blockquote {
  360. padding-left:5px;
  361. border-left:1px solid {color:border};
  362. }
  363.  
  364. #question
  365. .asker {text-align:left;
  366. font-style:'libre baskerville';
  367. font-style:italic;
  368. font-size:10px;
  369. line-height:130%;
  370. color:{color:title};
  371. border-bottom:1px solid {color:border};
  372. padding-bottom:5px;
  373. }
  374.  
  375. .answer {color:{color:text};
  376. padding-top:5px;
  377. text-align:left}
  378. #answer {
  379. text-align:right;
  380. margin-right:50px;}
  381.  
  382. ol.notes {
  383. padding-left:50px;
  384. padding-bottom:2%;
  385. width:400px;
  386. list-style-type:lower-roman;
  387. text-align:center;
  388. }
  389.  
  390. ol.notes li.note{
  391. border-bottom:1px solid {color:border};
  392. padding:2%;
  393. }
  394.  
  395. ol.notes li.note img.avatar{
  396. width:0px;
  397. height:0px;}
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404. </style></head>
  405.  
  406. <body>
  407.  
  408. <div id="credit"><a href="http://dearhannibal.tumblr.com/"><img src="http://oi43.tinypic.com/11rryja.jpg"></a></div>
  409.  
  410. <div id="con">
  411.  
  412. <div id="sidebar">
  413.  
  414. <img src="http://oi40.tinypic.com/6pxpja.jpg">
  415.  
  416. <div id="sidebarlinks">
  417. {block:ifLink1}<a href="/" title="home">{text:Link 1}</a>{/block:ifLink1}&nbsp;
  418. {block:ifLink2}<a href="{text:Link 2 URL}" title="message">{text:Link 2}</a>{/block:ifLink2}&nbsp;
  419. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}&nbsp;
  420. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}&nbsp
  421. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a>{/block:ifLink5}
  422. </div>
  423.  
  424.  
  425. <div class="description">{Description}
  426. </div>
  427.  
  428. <br>
  429. <br>
  430.  
  431. {block:IndexPage}
  432. <div class="pagination">
  433. {block:PreviousPage}
  434. <a href="{PreviousPage}">back</a>
  435. &nbsp;&nbsp;-&nbsp;&nbsp;
  436. {/block:PreviousPage}
  437. {block:NextPage}
  438. <a href="{NextPage}">forth</a>
  439. {block:NextPage}
  440. </div>
  441. {/block:IndexPage}
  442. </div>
  443. </div>
  444.  
  445. <div id="entry">
  446.  
  447. {block:Posts}
  448. <div class="post">
  449.  
  450. {block:IndexPage}
  451. <div class="permalink">
  452. <span style="font-size:9px;"></span><a href="{Permalink}">{NoteCount}</a>
  453. </div>
  454. <br>
  455. <br>
  456. <div class="tags">
  457. {block:HasTags}{block:Tags}<span style="color:{color:border};font-size:8px;"></span><a href="/tagged/{Tag}">{Tag}</a><br>{/block:Tags}{/block:HasTags}
  458. </div>
  459. {/block:IndexPage}
  460.  
  461. {block:Text}
  462. {block:Title}<h1>{Title}</h1>{/block:Title}
  463. {Body}
  464. {/block:Text}
  465.  
  466.  
  467. {block:Photo}
  468. <a href="{Permalink}"><img src="{PhotoURL-500}"></a>
  469. {block:Caption}
  470. {block:ifshowcaptions}
  471. <span class="caption">{Caption}</span>
  472. {/block:ifshowcaptions}
  473. {/block:Caption}
  474. {/block:Photo}
  475.  
  476.  
  477. {block:Photoset}
  478. {Photoset-500}
  479. {block:Caption}
  480. {block:ifshowcaptions}
  481. <span class="caption">{Caption}</span>
  482. {/block:ifshowcaptions}
  483. {/block:Caption}
  484. {/block:Photoset}
  485.  
  486. {block:Quote}
  487. <div class="quote">❝ {Quote} ❞</div>
  488. {block:Source}
  489. <div id="source">— {Source}</div>
  490. {/block:Source}
  491. {/block:Quote}
  492.  
  493.  
  494. {block:Link}
  495. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  496. {block:Description}
  497. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  498. {/block:Description}
  499. {/block:Link}
  500.  
  501.  
  502. {block:Chat}
  503. {block:Title}<h1>{Title}</h1>{/block:Title}
  504. {block:Lines}
  505. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  506. {/block:Lines}
  507. {/block:Chat}
  508.  
  509. {block:Audio}
  510. <span style="background-color:{color:background}; width:95px; height:95px; align=left">{block:AlbumArt}<img src="{AlbumArtURL}" class="albumart" width="95px" height="95px" align="left"/>{/block:AlbumArt}
  511. <br><br>
  512. <div class="player"><div class="audioplayer">{AudioPlayer}</div> </div></span>
  513.  
  514. <div class="data">{block:TrackName}{TrackName} - {/block:TrackName}
  515. {block:Artist}{Artist}{/block:Artist}</div>
  516.  
  517. <br><br>
  518.  
  519. {block:Caption}
  520. {block:ifshowcaptions}
  521. <span class="caption">{Caption}</span>
  522. {/block:ifshowcaptions}
  523. {/block:Caption}
  524. {/block:Audio}
  525.  
  526.  
  527. {block:Video}
  528. {Video-500}
  529. {block:Caption}
  530. {block:ifshowcaptions}
  531. <span class="caption">{Caption}</span>
  532. {/block:ifshowcaptions}
  533. {/block:Caption}
  534. {/block:Video}
  535.  
  536.  
  537. {block:Answer}
  538. <div id="question">
  539. <div class="asker">
  540. "{Question}" &nbsp; said {Asker}</div>
  541. <div class="answer">{Answer}</div>
  542. </div>
  543.  
  544. {/block:Answer}
  545.  
  546. {block:PermalinkPage}
  547. <div id="bottompost">
  548. {block:Date}{DayOfWeek}, {DayofMonth} of {Month}, {Year}{/block:Date}
  549. <font style="text-transform:lowercase;">
  550. {block:ContentSource}<br>by: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}</a></font><br>
  551. <div id="bottomtags">{block:HasTags}{block:Tags}<span style="color:{color:border};font-size:8px;"></span><a href="/tagged/{Tag}">{Tag}</a> &nbsp;{/block:Tags}{/block:HasTags}
  552. <br><br><br><font style="font-size:10px;text-align:center;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</font>
  553. </div>
  554. {/block:PermalinkPage}
  555.  
  556. </div>
  557. {/block:Posts}
  558.  
  559. {block:PermalinkPage}
  560. {block:PostNotes}
  561. <div id="notes">{PostNotes}</div>
  562. {/block:PostNotes}
  563. {/block:permalinkpage}
  564.  
  565.  
  566. </div>
  567. </div>
  568.  
  569.  
  570. </body>
  571. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement