Advertisement
Guest User

theme 31: fractals; by primrosetylers

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