dearhannibal

Luminescence

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