Advertisement
Guest User

theme 08: i don't count; by primrosetylers

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