dearhannibal

custom

Jun 2nd, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.78 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="image:sidebar" content=""/>
  29. <meta name="if:show captions" content="1"/>
  30. <meta name="if:Show Sidebar Image" content="1">
  31. <meta name="if:Round Sidebar Image" content="0">
  32. <meta name="text:Link 1 URL" content="" />
  33. <meta name="text:Link 1" content="" />
  34. <meta name="text:Link 2 URL" content="" />
  35. <meta name="text:Link 2" content="" />
  36. <meta name="text:Link 3 URL" content="" />
  37. <meta name="text:Link 3" content="" />
  38. <meta name="text:Link 4 URL" content="" />
  39. <meta name="text:Link 4" content=""/>
  40. <meta name="text:Link 5 URL" content="" />
  41. <meta name="text:Link 5" content="" />
  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=Dancing+Script' rel='stylesheet' type='text/css'>
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  48.  
  49. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js">
  50. </script>
  51. <script type="text/javascript">
  52. $(document).ready(function(){
  53. $(".links").hide();
  54. $(".blogtitle").mouseover(function(){
  55. $(this).next(".links").slideToggle('normal');
  56. }); }); </script>
  57.  
  58. <!-- CSS styling aww yeah. This is the fun part. -->
  59.  
  60. <style type="text/css">
  61.  
  62. ::-webkit-scrollbar {width:5px; height:auto; background:{color:scrollbar bg};}
  63. ::-webkit-scrollbar-corner {background:{color:scrollbar};}
  64. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  65. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  66.  
  67. #credit {
  68. position:fixed;
  69. float:right;
  70. opacity:0.8;
  71. bottom:18px;
  72. right:18px;
  73. padding:6px;
  74. font-size:18px;
  75. text-align:center;
  76. height:10px;
  77. width:10px;
  78. font-family:'VT323';
  79. letter-spacing:1px;
  80. color:{color:credit};
  81. -webkit-transition:all 0.5s ease-in-out;
  82. -moz-transition:all 0.5s ease-in-out;
  83. transition:all 0.5s ease-in-out;}
  84. #credit a {color:black;}
  85.  
  86.  
  87.  
  88. body {
  89. margin:0px;
  90. padding:0px;
  91. width:auto;
  92. font-family:libre baskerville;
  93. font-size:9px;
  94. color:{color:text};
  95. background:{color:background};
  96. }
  97.  
  98. a:link, a, a:active, a:visited {
  99. text-decoration:none;
  100. color:{color:link};
  101. -webkit-transition: all 0.5s ease-in-out;
  102. -moz-transition: all 0.5s ease-in-out;
  103. -o-transition: all 0.5s ease-in-out;
  104. -ms-transition: all 0.5s ease-in-out;
  105. transition: all 0.5s ease-in-out;
  106. }
  107. a:hover {
  108. color:{color:link hover};
  109. }
  110.  
  111. #con {
  112. position:absolute;
  113. left:50%;
  114. margin-left:-220px;
  115. }
  116.  
  117. #entry {
  118. margin:auto;
  119. position:absolute;
  120. width:400px;
  121. font-family:cambria;
  122. font-size:10px;
  123.  
  124. }
  125.  
  126. .post {
  127. margin:auto;
  128. float:center;
  129. overflow:hidden;
  130. text-align:justify;
  131. padding-top:140px;
  132. padding-bottom:20px;
  133. width:400px;
  134. overflow:hidden;
  135. }
  136.  
  137. #permalink {
  138. width:392px;
  139. margin-bottom:2px;
  140. margin-top:25px;
  141. margin-left:-7px;
  142. font-family:arial;
  143. font-size:8px;
  144. text-align:center;
  145. text-transform:lowercase;
  146. letter-spacing:2px;
  147. padding:5px;
  148. border-top:1px solid {color:border};
  149. padding:10px;
  150. }
  151.  
  152. #permalink a {
  153. margin-top:10px;
  154. color:{color:bottompost link};
  155. }
  156.  
  157. #permalink a:hover {
  158. color:{color:bottompost link hover};
  159. }
  160.  
  161. #bottompost {
  162. width:392px;
  163. text-align:center;
  164. margin-top:15px;
  165. font-size:9px;
  166. text-transform:lowercase;
  167. border-top:1px solid #f8f8f8;
  168. padding:10px;
  169. margin-left:-10px;
  170. }
  171. #bottompost a {
  172. margin:0 5px;
  173. color:{color:link};
  174. }
  175.  
  176.  
  177. .tags {
  178. padding-right:5px;
  179. padding-left:5px;
  180. color:{color:tags};
  181. font-size:9px;
  182. margin-top:5px;
  183.  
  184. }
  185. .tags a{
  186. color:{color:tags};
  187. text-transform:none;
  188.  
  189. }
  190.  
  191.  
  192.  
  193.  
  194. h1 {
  195. font-size:14px;
  196. text-transform:none;
  197. font-weight:lighter;
  198. padding-left:10px;
  199. color:{color:title};
  200. }
  201. h1 a {
  202. color:{color:title};
  203. text-transform:none;
  204. }
  205.  
  206.  
  207.  
  208. #sidebar {
  209. margin:auto;
  210. margin-left:-10px;
  211. }
  212.  
  213.  
  214.  
  215. .blogtitle {
  216. margin:auto;
  217. color:{color:title};
  218. opacity:1;
  219. position:relative;
  220. text-transform:none;
  221. text-align:center;
  222. font-size:24px;
  223. font-family: 'Dancing Script', cursive;
  224. margin-top:50px;
  225. margin-left:0px;
  226. }
  227.  
  228.  
  229. #links {
  230. margin:auto;
  231. font-family:times new roman;
  232. margin-top:15px;
  233. padding-left:3px;
  234. font-size:10px;
  235. font-style:none;
  236. font-weight:normal;
  237. text-transform:lowercase;
  238. letter-spacing:1px;
  239. text-align:center;
  240. }
  241.  
  242.  
  243. #links a {
  244. padding:0 4px;
  245. line-height:15px;
  246. margin-bottom:3px;
  247. text-align:center;
  248. display:inline-block;
  249. border-bottom:2px solid transparent;
  250. }
  251.  
  252. #links a:hover {text-decoration:none;
  253. border-bottom:2px solid {color:link};}
  254.  
  255.  
  256. #sidebarimage {
  257. margin:auto;
  258. padding-bottom:-3px;
  259. margin-top:35px;
  260. margin-bottom:-25px;
  261. {block:ifNotShowSidebarImage}
  262. display:none;
  263. {/block:ifNotShowSidebarImage}}
  264.  
  265. #sidebarimage img{
  266. width:130px;
  267. {block:ifShowSidebarImage}
  268. {block:ifRoundSidebarImage}
  269. border-radius:100%;
  270. {/block:ifRoundSidebarImage}
  271. {/block:ifShowSidebarImage}
  272. text-align:center;
  273.  
  274. }
  275.  
  276. .description {
  277. margin:auto;
  278. font-family:cambria;
  279. color: {color:text};
  280. letter-spacing:0px;
  281. margin-top:-5px;
  282. margin-bottom:25px;
  283. font-size:11px;
  284. width:250px;
  285. line-height:130%;
  286. font-style:normal;
  287. text-align:justify;}
  288.  
  289. .pagination {
  290. width:200px;
  291. margin:auto;
  292. margin-top:100px;
  293. margin-bottom:100px;
  294. text-align:center;
  295. text-transform:lowercase;
  296. font-family: 'PT Serif', serif;
  297. font-weight:normal;
  298. text-decoration:;
  299. margin-left:100px;
  300. font-size:9px;
  301. }
  302.  
  303. .pagination a {
  304. color:{color:title};
  305. margin-bottom:10px;
  306. background:#ffffff;
  307. padding:5px;
  308. -webkit-transition: all 0.5s ease-in-out;
  309. -moz-transition: all 0.5s ease-in-out;
  310. -o-transition: all 0.5s ease-in-out;
  311. -ms-transition: all 0.5s ease-in-out;
  312. transition: all 0.5s ease-in-out;
  313. }
  314.  
  315. .pagination a:hover {
  316. color:{color:link hover};
  317. }
  318.  
  319.  
  320. .quote {
  321. font-family:baskerville;
  322. font-size:18px;
  323. font-style:italic;
  324. text-align:right;
  325. line-height:110%;
  326. padding-right:5px;
  327. padding-left:5px;
  328. padding-bottom:3px;
  329. }
  330.  
  331. #source {
  332. text-align:left;
  333. padding-left:20px;
  334. padding-right:5px;
  335. }
  336.  
  337. .tumblr_audio_player {
  338. {block:if400pxPosts}
  339. width:400px;
  340. {/block:if400pxPosts}
  341. height:30px;
  342. {block:if500pxPosts}width:500px;{/block:if500pxPosts}
  343. }
  344.  
  345. .player {
  346. width:30px;
  347. overflow:hidden;
  348. padding-left:10px;
  349. border-left:0px solid {color:borders};
  350. height:33px;
  351. float:left;
  352. margin-right:10px;
  353. padding-top:2px;
  354. border-right:0px solid {color:background};
  355. }
  356.  
  357. .audio_info {
  358. padding-top:0px;
  359. font-family:sans-serif;
  360. font-weight:bold;
  361. font-size:12px;
  362. line-height:18px;
  363. }
  364.  
  365. .plays {
  366. font-weight:none;
  367. font-style:none;
  368. text-transform:none;
  369. font-size:10px;
  370. margin-bottom:10px;
  371. }
  372.  
  373.  
  374. .data {
  375. background-color:{color:background};
  376. color:{color:text};
  377. text-transform:uppercase;
  378. height:10px; padding:6px 0px 5px 0px;
  379. width:401px;
  380. margin-bottom:-7px;
  381. margin-left:99px;
  382. text-align:center
  383. }
  384.  
  385. .data b {
  386. color:{color:source};
  387. line-height:7px;
  388. }
  389.  
  390.  
  391. .caption {
  392. text-align:left;
  393. padding-left:10px;
  394. padding-right:10px;
  395. font-family:baskerville;
  396. display:block;
  397. }
  398. .caption img {
  399. max-width:490px;
  400. }
  401.  
  402. blockquote {
  403. padding-left:5px;
  404. border-left:1px solid {color:border};
  405. }
  406.  
  407. #asker {
  408. text-align:left;
  409. margin-top:0px;
  410. font-size:10px;
  411. font-style:none;
  412. padding:10px;
  413. background-color:#f5f5f5;
  414. margin-bottom:20px;
  415. }
  416.  
  417. #asker a {
  418. font-size:10px;
  419. font-family:'arial';
  420. letter-spacing:1px;
  421. background:none;
  422. border-bottom:1px solid {color:link};
  423. color:{color:text}
  424. }
  425.  
  426. #question {
  427. font-size:9px;
  428. font-family:'libre baskerville';
  429. letter-spacing:0px;
  430. background:none;
  431. }
  432.  
  433. ol.notes {
  434. padding-left:0px;
  435. padding-bottom:2%;
  436. width:400px;
  437. list-style-type:none;
  438. text-align:center;
  439. }
  440.  
  441. ol.notes li.note{
  442. border-bottom:1px solid {color:border};
  443. padding:2%;
  444. }
  445.  
  446. ol.notes li.note img.avatar{
  447. width:0px;
  448. height:0px;}
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455. </style></head>
  456.  
  457. <body>
  458.  
  459. <div id="credit"><a href="http://dehaan.tk/">AD</a></div>
  460.  
  461. <div id="con">
  462.  
  463.  
  464. <div id="entry">
  465.  
  466. <div id="sidebar">
  467.  
  468. <div id="sidebarimage">
  469.  
  470. <center><a href="/"><img src="{image:sidebar}"></a></center>
  471.  
  472. </div>
  473.  
  474. <div class="blogtitle">{Title}
  475.  
  476. <div id="links">
  477. {block:ifLink1}<a href="{text:Link 1 URL}" title="home">{text:Link 1}</a>{/block:ifLink1}&nbsp;
  478. {block:ifLink2}<a href="{text:Link 2 URL}" title="message">{text:Link 2}</a>{/block:ifLink2}&nbsp;
  479. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}&nbsp;
  480. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}&nbsp
  481. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a>{/block:ifLink5}
  482. </div>
  483. </div>
  484.  
  485.  
  486. <div class="description">{Description}
  487. </div>
  488.  
  489.  
  490. </div>
  491.  
  492. {block:Posts}
  493. <div class="post">
  494.  
  495.  
  496. {block:Text}
  497. {block:Title}<h1>{Title}</h1>{/block:Title}
  498. {Body}
  499. {/block:Text}
  500.  
  501.  
  502. {block:Photo}
  503. <a href="{Permalink}"><img src="{PhotoURL-400}"></a>
  504. {block:Caption}
  505. {block:ifshowcaptions}
  506. <span class="caption">{Caption}</span>
  507. {/block:ifshowcaptions}
  508. {/block:Caption}
  509. {/block:Photo}
  510.  
  511.  
  512. {block:Photoset}
  513. {Photoset-400}
  514. {block:Caption}
  515. {block:ifshowcaptions}
  516. <span class="caption">{Caption}</span>
  517. {/block:ifshowcaptions}
  518. {/block:Caption}
  519. {/block:Photoset}
  520.  
  521. {block:Quote}
  522. <div class="quote">❝ {Quote} ❞</div>
  523. {block:Source}
  524. <div id="source">— {Source}</div>
  525. {/block:Source}
  526. {/block:Quote}
  527.  
  528.  
  529. {block:Link}
  530. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  531. {block:Description}
  532. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  533. {/block:Description}
  534. {/block:Link}
  535.  
  536.  
  537. {block:Chat}
  538. {block:Title}<h1>{Title}</h1>{/block:Title}
  539. {block:Lines}
  540. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  541. {/block:Lines}
  542. {/block:Chat}
  543.  
  544. {block:Audio}{block:AudioPlayer}
  545. <div class="player">{AudioPlayerWhite}</div>
  546. {/block:AudioPlayer}
  547. <div class="audio_info">{block:TrackName}{TrackName}{/block:TrackName}<div class="plays">by {block:Artist}{Artist}{/block:Artist}</div></div>
  548. {/block:Audio}
  549.  
  550.  
  551. {block:Video}
  552. {Video-400}
  553. {block:Caption}
  554. {block:ifshowcaptions}
  555. <span class="caption">{Caption}</span>
  556. {/block:ifshowcaptions}
  557. {/block:Caption}
  558. {/block:Video}
  559.  
  560.  
  561. {block:Answer}
  562. <div id="asker"><b>{Asker}</b> <font id="question">asked:
  563. {Question}</font></div>
  564. <div class="answer" style="font-size:9px; font-family:'libre baskerville'; margin-left:7px;">{Answer}</div>
  565. {/block:Answer}
  566.  
  567. <div id="bottompost">
  568. {block:NewDayDate}
  569. <a href="{Permalink}">{Month} {DayofMonth}{DayOfMonthSuffix}
  570. {/block:NewDayDate}</a>
  571. {block:SameDayDate}<a href="{Permalink}">{Month} {DayofMonth}{DayOfMonthSuffix}
  572. {/block:SameDayDate}</a> -
  573. {block:NoteCount}<a href="{Permalink}">{NoteCountWithLabel}{/block:NoteCount}</a>
  574. {block:PermalinkPage}
  575. {block:ContentSource}
  576. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  577. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  578. {/block:SourceLogo}
  579. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  580. {/block:ContentSource}
  581. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} / <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  582. {/block:PermalinkPage}
  583.  
  584. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}" style="color:{color:tags};">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  585. </div>
  586.  
  587.  
  588.  
  589. {block:PermalinkPage}
  590. <!-- <div id="permalink">
  591. {block:Date}{DayOfWeek} {DayofMonth} of {Month}, {Year},{/block:Date}
  592. <font style="text-transform:lowercase;">{block:NoteCount} with {NoteCountWithLabel} {/block:NoteCount}
  593. <br>{block:ContentSource}by: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom} &nbsp; via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}</a></font><br>
  594. <div id="tags">{block:HasTags}{block:Tags}<span style="opacity:0.5;">#</span><a href="/tagged/{Tag}">{Tag}</a> &nbsp;{/block:Tags}{/block:HasTags}
  595. </div>-->
  596. {/block:PermalinkPage}
  597.  
  598. </div>
  599.  
  600.  
  601. {/block:Posts}
  602.  
  603. {block:PermalinkPage}
  604. {block:PostNotes}
  605. <div id="notes">{PostNotes}</div>
  606. {/block:PostNotes}
  607. {/block:permalinkpage}
  608.  
  609. <div class="pagination">
  610. {block:PreviousPage}
  611. <a href="{PreviousPage}">back in the past</a>
  612. {/block:PreviousPage}
  613. {block:NextPage}
  614. <a href="{NextPage}">to the future</a>
  615. {block:NextPage}
  616. </div>
  617.  
  618. </div>
  619. </div>
  620.  
  621.  
  622. </body>
  623. </html>
Advertisement
Add Comment
Please, Sign In to add comment