Advertisement
Guest User

theme 05: the last time; by primrosetylers

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