Advertisement
Guest User

theme 36: i carry your heart; by primrosetylers

a guest
Oct 4th, 2014
3,317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5.  
  6. theme 36: i carry your heart;
  7. coded by irma at primrosetylers.tumblr.com
  8. do not steal, remove the credit, or use as a base
  9.  
  10. -->
  11.  
  12. <title>{Title}</title>
  13. {block:Description}<meta name="description" content="{MetaDescription}">{/block:Description}
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16.  
  17. <!-- meta stuffs go here -->
  18.  
  19. <meta name="color:background" content="#fff">
  20. <meta name="color:scrollbar" content="#eee">
  21. <meta name="color:title" content="#000">
  22. <meta name="color:subtitle" content="#fff">
  23. <meta name="color:link bg" content="#000">
  24. <meta name="color:link text" content="#fff">
  25. <meta name="color:link text hover" content="#aaa">
  26. <meta name="color:header bg on scroll" content="#000">
  27. <meta name="color:description" content="#000">
  28. <meta name="color:tooltip text" content="#fff">
  29. <meta name="color:tooltip background" content="#000">
  30. <meta name="color:post border" content="#ddd">
  31. <meta name="color:posts" content="#fff">
  32. <meta name="color:post text" content="#000">
  33. <meta name="color:post info" content="#aaa">
  34. <meta name="color:post info hover" content="#000">
  35. <meta name="color:posts link" content="#aaa">
  36. <meta name="color:posts link hover" content="#000">
  37. <meta name="color:pagination" content="#aaa">
  38. <meta name="color:pagination hover" content="#000">
  39. <meta name="color:blockquote" content="#aaa">
  40.  
  41. <meta name="if:500px posts" content="0">
  42. <meta name="if:400px posts" content="1">
  43. <meta name="if:250px posts" content="0">
  44. <meta name="if:show tags" content="1">
  45. <meta name="if:show caption" content="1">
  46. <meta name="if:tiny cursor" content="1">
  47. <meta name="if:infinite scroll" content="0">
  48.  
  49. <meta name="text:subtitle" content="subtitle">
  50. <meta name="text:link 1" content="index">
  51. <meta name="text:link 1" content="index">
  52. <meta name="text:link 1 url" content="/">
  53. <meta name="text:link 2" content="mssg">
  54. <meta name="text:link 2 url" content="/ask">
  55. <meta name="text:link 3" content="past">
  56. <meta name="text:link 3 url" content="/archive">
  57. <meta name="text:link 4" content="">
  58. <meta name="text:link 4 url" content="">
  59. <meta name="text:link 5" content="">
  60. <meta name="text:link 5 url" content="">
  61. <meta name="text:link 6" content="">
  62. <meta name="text:link 6 url" content="">
  63.  
  64. <!-- metas end-->
  65.  
  66. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
  67. <script type="text/javascript">
  68. $(function(){
  69. var stickyRibbonTop = $('.header').offset().top;
  70.  
  71. $(window).scroll(function(){
  72. if( $(window).scrollTop() > stickyRibbonTop ) {
  73. $('.header').addClass('cool');
  74. } else {
  75. $('.header').removeClass('cool');
  76. }
  77. });
  78. });
  79. </script>
  80.  
  81. <!-- infinite scroll script -->
  82.  
  83. {block:IfInfiniteScroll}
  84. <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
  85. {/block:IfInfiniteScroll}
  86. {block:IfNotInfiniteScroll}{/block:IfNotInfiniteScroll}
  87.  
  88.  
  89. <link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  90.  
  91. <!-- tooltip script -->
  92. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  93. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  94. <script>
  95. (function($){
  96. $(document).ready(function(){
  97. $("a[title]").style_my_tooltips({
  98. tip_follows_cursor:true,
  99. tip_delay_time:30,
  100. tip_fade_speed:300,
  101. attribute:"title"
  102. });
  103. });
  104. })(jQuery);
  105. </script>
  106.  
  107. <style type="text/css">
  108.  
  109. /*tooltip css*/
  110. #s-m-t-tooltip {
  111. max-width:300px;
  112. position:absolute;
  113. z-index:99999;
  114. margin-top:20px;
  115. text-transform:uppercase;
  116. padding:2px 4px 2px 4px;
  117. background-color:{color:tooltip background};
  118. font-family:arial;
  119. font-size:10px;
  120. color:{color:tooltip text};
  121. }
  122.  
  123. body {
  124. background-color:{color:background};
  125. font-family:'Lato', calibri;
  126. color:{color:post text};
  127. font-size:11px;
  128. }
  129.  
  130. a {
  131. text-decoration:none;
  132. color:{color:posts link};
  133. -webkit-transition:0.5s;
  134. -moz-transition:0.5s;
  135. -ms-transition:0.5s;
  136. -o-transition:0.5s;
  137. }
  138.  
  139. blockquote {
  140. border-left:2px solid {color:blockquote};
  141. padding-left:10px;
  142. max-width:450px;
  143. }
  144.  
  145. blockquote img {
  146. max-width:100%;
  147. }
  148.  
  149. a:hover {
  150. color:{color:posts link hover};
  151. }
  152.  
  153. pre, code, p {
  154. white-space: pre-wrap;
  155. white-space: -moz-pre-wrap;
  156. white-space: -pre-wrap;
  157. white-space: -o-pre-wrap;
  158. word-wrap: break-word;
  159. }
  160.  
  161. ::-webkit-scrollbar {
  162. width: 8px;
  163. }
  164.  
  165. ::-webkit-scrollbar-track {
  166. background-color:{color:background};
  167. }
  168.  
  169. ::-webkit-scrollbar-thumb {
  170. background-color:{color:scrollbar};
  171. }
  172.  
  173. ::-webkit-scrollbar:horizontal {
  174. height:8px;
  175. }
  176.  
  177. ::selection {
  178. background: {color:scrollbar};
  179. }
  180. ::-moz-selection {
  181. background: {color:scrollbar};
  182. }
  183.  
  184. h2 {
  185. text-align:center;
  186. }
  187.  
  188. /*header*/
  189.  
  190. .header {
  191. position:absolute;
  192. width:550px;
  193. left:50%;
  194. margin-left:-275px;
  195. top:30vh;
  196. -webkit-transition:0.5s;
  197. -moz-transition:0.5s;
  198. -ms-transition:0.5s;
  199. -o-transition:0.5s;
  200. transition:0.5s;
  201. }
  202.  
  203. #title {
  204. text-align:center;
  205. font-size:45px;
  206. font-family:arial;
  207. font-weight:bold;
  208. letter-spacing:-3px;
  209. color:{color:title};
  210. }
  211.  
  212. #links {
  213. background-color:{color:link bg};
  214. margin-top:10px;
  215. margin-bottom:10px;
  216. text-align:center;
  217. font-size:12px;
  218. overflow:hidden;
  219. text-transform:uppercase;
  220. padding:5px;
  221. }
  222.  
  223. #special {
  224. display:none;
  225. text-align:center;
  226. font-size:45px;
  227. font-family:arial;
  228. font-weight:bold;
  229. letter-spacing:-3px;
  230. color:{color:subtitle}!important;
  231. text-transform:lowercase;
  232. padding-top:30px;
  233. }
  234.  
  235. #links a {
  236. color:#fff;
  237. margin:2px 5px 2px 5px;
  238. }
  239.  
  240. #links a:hover {
  241. color:{color:link text hover};
  242. }
  243.  
  244. #description {
  245. width:450px;
  246. margin:auto;
  247. text-align:center;
  248. color:{color:description};
  249. }
  250.  
  251.  
  252. .cool #links {
  253. position:fixed;
  254. width:550px;
  255. padding:5px;
  256. top:0;
  257. margin-top:0;
  258. background:{color:header bg on scroll};
  259. -webkit-transition:0.5s;
  260. -moz-transition:0.5s;
  261. -ms-transition:0.5s;
  262. -o-transition:0.5s;
  263. transition:0.5s;
  264. }
  265.  
  266. .cool #special {
  267. display:block;
  268. color:{color:link bg};
  269. }
  270. /*pag*/
  271.  
  272. #pag {
  273. font-size:14px;
  274. letter-spacing:2px;
  275. color:{color:pagination};
  276. width:100%;
  277. text-align:center;
  278. z-index:7;
  279. margin-bottom:50px;
  280. margin-top:75px;
  281. }
  282.  
  283. #pag a {color:{color:pagination};}
  284. #pag a:hover {color:{color:pagination hover};}
  285.  
  286. /*posts*/
  287.  
  288. .autopagerize_page_element {
  289. margin-top:85vh;
  290. }
  291.  
  292. #postage {
  293. {block:If500pxPosts}width:500px;{/block:if500pxPosts}
  294. {block:If400pxPosts}width:400px;{/block:if400pxPosts}
  295. {block:If250pxPosts}width:250px;{/block:if250pxPosts}
  296. margin-top:50px;
  297. margin-bottom:50px;
  298. margin-left:auto;
  299. margin-right:auto;
  300. background-color:{color:posts}; /*temp*/
  301. padding:15px;
  302. -webkit-transition:0.5s;
  303. -moz-transition:0.5s;
  304. -ms-transition:0.5s;
  305. -o-transition:0.5s;
  306. }
  307.  
  308. #panorama img {
  309. {block:If500pxPosts}width:500px;{/block:if500pxPosts}
  310. {block:If400pxPosts}width:400px;{/block:if400pxPosts}
  311. {block:If250pxPosts}width:250px;{/block:if250pxPosts}
  312. }
  313.  
  314. #text img {
  315. max-width:85%;
  316. }
  317.  
  318. #words {
  319. font-style:italic;
  320. font-size:15px;
  321. }
  322.  
  323. .source {
  324. text-align:right;
  325. padding-right:5px;
  326. }
  327.  
  328. #linkpost {
  329. text-align:center;
  330. font-size:11px;
  331. }
  332.  
  333. .linkety {
  334. font-size:15px;
  335. }
  336.  
  337. #chat ul {
  338. list-style:none;
  339. font-family:courier;
  340. margin-left:-30px;
  341. }
  342.  
  343. .label {
  344. text-transform:uppercase;
  345. font-weight:bold;
  346. }
  347.  
  348. #audioplayer {
  349. width:25px;
  350. height:25px;
  351. position:absolute;
  352. overflow:hidden;
  353. margin-top:25px;
  354. margin-left:25px;
  355. opacity:0.7;
  356. border-radius:100%;
  357. -webkit-border-radius:100%;
  358. -moz-border-radius:100%;
  359. }
  360.  
  361. #albumart {
  362. width:75px;
  363. height:75px;
  364. background-color:#e3e3e3;
  365. }
  366.  
  367. #ask span a {
  368. color:{color:post text};
  369. font-style:italic;
  370. }
  371.  
  372. .info {
  373. text-align:center;
  374. text-transform:uppercase;
  375. {block:If500pxPosts}width:500px;{/block:If500pxPosts}
  376. {block:If400pxPosts}width:400px;{/block:if400pxPosts}
  377. {block:If250pxPosts}width:250px;{/block:if250pxPosts}
  378. opacity:1;
  379. padding-top:5px;
  380. padding-bottom:5px;
  381. color:{color:post info};
  382. font-size:12px;
  383. }
  384.  
  385. .info a {
  386. color:{color:post info};
  387. }
  388.  
  389. .info a:hover {
  390. color:{color:post info hover};
  391. }
  392.  
  393. .tags {
  394. margin-top:2px;
  395. text-transform:none;
  396. opacity:0;
  397. font-size:10px;
  398. padding-left:10px;
  399. -webkit-transition:0.5s;
  400. -moz-transition:0.5s;
  401. -ms-transition:0.5s;
  402. -o-transition:0.5s;
  403. z-index:3;
  404. }
  405.  
  406. #postage:hover .tags {
  407. opacity:1;
  408. }
  409.  
  410. #postnotes {
  411. line-height:200%;
  412. }
  413.  
  414. #postnotes li {
  415. list-style:none;
  416. }
  417.  
  418. #postnotes img {
  419. margin-right:5px;
  420. }
  421.  
  422. #credit {
  423. right:10px;
  424. bottom:15px;
  425. font-size:11px;
  426. padding:2px 5px 2px 5px;
  427. text-transform:uppercase;
  428. text-align:center;
  429. background-color:#000;
  430. position:fixed;
  431. font-family:arial;
  432. opacity:0.8;
  433. }
  434.  
  435. #credit a {
  436. color:#fff;
  437. }
  438.  
  439. #credit a:hover {
  440. text-shadow:0 0 2px #fff;
  441. color:#000;
  442. opacity:1;
  443. }
  444.  
  445. {block:IfTinyCursor}
  446. /* Start http://www.cursors-4u.com */ body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur817.cur), progress !important;} /* End http://www.cursors-4u.com */
  447. {/block:IfTinyCursor}
  448.  
  449. {CustomCSS}
  450. </style>
  451. </head>
  452. <body>
  453.  
  454. <!-- HEADER -->
  455. <div class="header">
  456. <div id="title"><span>{Title}</span></div>
  457. <div id="links">
  458. {block:iflink1}<a href="{text:link 1 url}">{text:link 1}</a>{/block:iflink1}
  459. {block:iflink2}<a href="{text:link 2 url}">{text:link 2}</a>{/block:iflink2}
  460. {block:iflink3}<a href="{text:link 3 url}">{text:link 3}</a>{/block:iflink3}
  461. {block:iflink4}<a href="{text:link 4 url}">{text:link 4}</a>{/block:iflink4}
  462. {block:iflink5}<a href="{text:link 5 url}">{text:link 5}</a>{/block:iflink5}
  463. {block:iflink6}<a href="{text:link 6 url}">{text:link 6}</a>{/block:iflink6}
  464. <div id="special">{block:IfSubtitle}{text:subtitle}{/block:IfSubtitle}{block:IfNotSubtitle}{Title}{/block:IfNotSubtitle}</div>
  465. </div>
  466. <div id="description">{Description}
  467. </div>
  468. </div>
  469.  
  470. <!-- POSTS -->
  471. <div class = "autopagerize_page_element" >
  472. {block:Posts}
  473. <div id="postage">
  474.  
  475. {block:Text}
  476. <div id="text">
  477. <h2><a href="{Permalink}">{Title}</a></h2>
  478. {Body}
  479. </div> <!--text post-->
  480. {/block:Text}
  481.  
  482. {block:Photo}
  483. <div id="photo">
  484. {block:If500pxPosts}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{/block:If500pxPosts}
  485. {block:If400pxPosts}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{/block:if400pxPosts}
  486. {block:If250pxPosts}<img src="{PhotoURL-250}" alt="{PhotoAlt}"/>{/block:if250pxPosts}
  487. {block:IfShowCaption}
  488. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  489. {/block:IfShowCaption}
  490. {block:IfNotShowCaption}
  491. {block:PermalinkPage}
  492. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  493. {/block:PermalinkPage}
  494. {/block:IfNotShowCaption}
  495. </div> <!--photo post-->
  496. {/block:Photo}
  497.  
  498. {block:Panorama}
  499. <div id="panorama">
  500. {LinkOpenTag}
  501. <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>
  502. {LinkCloseTag}
  503. {block:IfShowCaption}
  504. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  505. {/block:IfShowCaption}
  506. {block:IfNotShowCaption}
  507. {block:PermalinkPage}
  508. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  509. {/block:PermalinkPage}
  510. {/block:IfNotShowCaption}
  511. </div> <!--panorama post-->
  512. {/block:Panorama}
  513.  
  514. {block:Photoset}
  515. <div id="photoset">
  516. {block:If500pxPosts}{Photoset-500}{/block:If500pxPosts}
  517. {block:If400pxPosts}{Photoset-400}{/block:if400pxPosts}
  518. {block:If250pxPosts}{Photoset-250}{/block:if250pxPosts}
  519. {block:IfShowCaption}
  520. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  521. {/block:IfShowCaption}
  522. {block:IfNotShowCaption}
  523. {block:PermalinkPage}
  524. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  525. {/block:PermalinkPage}
  526. {/block:IfNotShowCaption}
  527. </div> <!--photoset-->
  528. {/block:Photoset}
  529.  
  530. {block:Quote}
  531. <div id="quote">
  532. <div id="words">{Quote}</div>
  533. {block:Source}<div class="source">- {Source}</div>{/block:Source}
  534. </div> <!--quote-->
  535. {/block:Quote}
  536.  
  537. {block:Link}
  538. <div id="linkpost">
  539. {block:PostTitle}<h2><a href="{Permalink}">{PostTitle}</a></h2>{/block:PostTitle}
  540. <a href="{URL}" class="linkety" {Target}>{Name}</a>
  541. {block:Description}
  542. <div class="linkdesc">{Description}</div>
  543. {/block:Description}
  544. </div> <!--link-->
  545. {/block:Link}
  546.  
  547. {block:Chat}
  548. <div id="chat">
  549. <h2><a href="{Permalink}">{Title}</a></h2>
  550. <ul>
  551. {block:Lines}
  552. <li class="{Alt} user_{UserNumber}">
  553. {block:Label}
  554. <span class="label">{Label}</span>
  555. {/block:Label}{Line}
  556. </li>
  557. {/block:Lines}
  558. </ul>
  559. </div> <!--chat-->
  560. {/block:Chat}
  561.  
  562. {block:Video}
  563. <div id="video">
  564. {block:PostTitle}<h2><a href="{Permalink}">{PostTitle}</a></h2>{/block:PostTitle}
  565. {block:If500pxPosts}{Video-500}{/block:If500pxPosts}
  566. {block:If400pxPosts}{Video-400}{/block:if400pxPosts}
  567. {block:If250pxPosts}{Video-250}{/block:if250pxPosts}
  568. {block:IfShowCaption}
  569. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  570. {/block:IfShowCaption}
  571. {block:IfNotShowCaption}
  572. {block:PermalinkPage}
  573. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  574. {/block:PermalinkPage}
  575. {/block:IfNotShowCaption}
  576. </div> <!--video-->
  577. {/block:Video}
  578.  
  579. {block:Audio}
  580. <div id="audio">
  581. <table style="padding:5px; margin-bottom:5px;">
  582. <tr>
  583. <td style="vertical-align:top;padding-right:10px;"><div id="audioplayer">{AudioPlayerBlack}</div>
  584. <div id="albumart">
  585. {block:AlbumArt}
  586. <img src="{AlbumArtURL}" style="width:75px;">
  587. {/block:AlbumArt}</div></td>
  588. <td style="vertical-align:top; font-size:12px;"> {block:TrackName}<i>title:</i> {TrackName} <br />{/block:TrackName}
  589. {block:Artist}<i>artist:</i> {Artist} <br />{/block:Artist}
  590. {block:Album}<i>album:</i> {Album} <br />{/block:Album}
  591. {block:PlayCount}<i>played:</i> {FormattedPlayCount} times{/block:PlayCount}
  592. </td>
  593. </tr>
  594. </table>
  595. {block:IfShowCaption}
  596. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  597. {/block:IfShowCaption}
  598. {block:IfNotShowCaption}
  599. {block:PermalinkPage}
  600. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  601. {/block:PermalinkPage}
  602. {/block:IfNotShowCaption}
  603. </div> <!--audio-->
  604. {/block:Audio}
  605.  
  606. {block:Answer}
  607. <div id="ask">
  608. <p style="padding:10px; background-color:#aaa;">— <span>{Asker}</span>: {Question}</p>
  609. <p>{block:Answerer}— <span>{Answerer}</span> replied: {/block:Answerer}{Answer}</p>
  610. {block:Answerer}
  611. <div style="border-top:1px solid {color:info bg}">
  612. <blockquote>{Replies}</blockquote>
  613. </div>
  614. {/block:Answerer}
  615. </div> <!--ask-->
  616. {/block:Answer}
  617.  
  618. <div class="info">
  619.  
  620. {block:IndexPage}
  621. <a title="{NoteCountWithLabel}" href="{Permalink}">{MonthNumberWithZero}.{DayOfMonth}.{ShortYear}</a> - <a href="{ReblogURL}" target="_blank">REBLOG</a>
  622. {/block:IndexPage}
  623.  
  624. {block:PermalinkPage}
  625. <div class="maininfo">
  626. {block:Date}Posted on {Month} {DayOfMonth}, {Year} with {NoteCountWithLabel}{/block:Date} <br>
  627. {block:RebloggedFrom} VIA <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} {block:ContentSource}, created by <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource}
  628. </div>
  629.  
  630. {block:IfNotShowTags}
  631. {block:HasTags}
  632. <div class="tags">
  633. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  634. </div>
  635. {/block:HasTags}
  636. {/block:IfNotShowTags}
  637. {/block:PermalinkPage}
  638.  
  639. {block:IfShowTags}
  640. {block:HasTags}
  641. <div class="tags">
  642. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  643. </div>
  644. {/block:HasTags}
  645. {/block:IfShowTags}
  646. </div> <!--info-->
  647.  
  648. {block:PermalinkPage}
  649. <div id="postnotes">
  650. {PostNotes}
  651. </div>
  652. {/block:PermalinkPage}
  653.  
  654. </div> <!--postage-->
  655. {/block:Posts}
  656.  
  657. {block:IfNotInfiniteScroll}
  658. {block:Pagination}
  659. <div id="pag">
  660. {block:PreviousPage}<a href="{PreviousPage}">BACK</a> - {/block:PreviousPage}
  661. {block:JumpPagination length="5"}
  662. {block:CurrentPage}[{PageNumber}]{/block:CurrentPage}
  663. {block:JumpPage}<a href="{URL}">{PageNumber}</a>{/block:JumpPage}
  664. {/block:JumpPagination}
  665. {block:NextPage} - <a href="{NextPage}">GO</a>{/block:NextPage}
  666. </div>
  667. {/block:Pagination}
  668. {/block:IfNotInfiniteScroll}
  669. {block:IfInfiniteScroll}{/block:IfInfiniteScroll}
  670.  
  671. </div> <!-- autopagerize page element thing -->
  672.  
  673. <div id="credit"><a href="http://primrosetylers.tumblr.com">✿THEME</a></div>
  674.  
  675. </body>
  676. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement