ammetrine

Andesine Theme by Ammetrine

Feb 10th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <link href='https://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script>
  35.  
  36.  
  37.  
  38.  
  39. <title>{Title}</title>
  40.  
  41. <link rel="shortcut icon" href="{Favicon}">
  42. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  43. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  44.  
  45.  
  46. <meta name="image:Background" content=""/>
  47. <meta name="color:Background" content="#ffffff"/>
  48. <meta name="color:Blog Title" content="#666666"/>
  49. <meta name="color:Description" content="#666666" />
  50. <meta name="color:Text" content="#000000"/>
  51. <meta name="color:Link" content="#000000"/>
  52. <meta name="color:Link Hover" content="#000000"/>
  53. <meta name="color:Scrollbar" content="#ffefd8"/>
  54. <meta name="color:title border" content="ffdfa8"/>
  55. <meta name="color:post border" content="#666666"/>
  56. <meta name="color:perma BG" content="ffdfa8"/>
  57. <meta name="color:popup border" content="ffdfa8"/>
  58.  
  59.  
  60. <meta name="if:Show Custom Link 1" content="1"/>
  61. <meta name="if:Show Custom Link 2" content="1"/>
  62. <meta name="if:Show Custom Link 3" content="1"/>
  63.  
  64.  
  65. <meta name="text:Link 1 URL" content="" />
  66. <meta name="text:Link 1 Title" content="" />
  67. <meta name="text:Link 2 URL" content="" />
  68. <meta name="text:Link 2 Title" content="" />
  69. <meta name="text:Link 3 URL" content="" />
  70. <meta name="text:Link 3 Title" content="" />
  71.  
  72.  
  73. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  74.  
  75.  
  76. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  77. <script>
  78. (function($){
  79. $(document).ready(function(){
  80. $("[title]").style_my_tooltips({
  81. tip_follows_cursor:true,
  82. tip_delay_time:0,
  83. tip_fade_speed:0
  84. }
  85. );
  86. });
  87. })(jQuery);
  88. </script>
  89.  
  90.  
  91. <link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  92.  
  93.  
  94. <style type="text/css">
  95.  
  96. ::-webkit-scrollbar-thumb{
  97. background-color:{color:scrollbar};
  98. border:1px solid {color:background};
  99. height:6px;
  100. }
  101.  
  102. ::-webkit-scrollbar {
  103. height:6px;
  104. width:4px;
  105. background-color:{color:background};
  106. }
  107.  
  108. #s-m-t-tooltip{
  109. position:absolute;
  110. margin-top: 15px;
  111. z-index:9999;
  112. background:{color:background};
  113. }
  114.  
  115.  
  116. body {
  117. background:{color:Background};
  118. color:{color:text};
  119. font-family: 'Raleway', sans-serif;mily:courier;
  120. font-size:11px;
  121. text-align:justify;
  122. margin:0;
  123. line-height:16px;
  124.  
  125.  
  126. background-color:{color:Background};
  127. background-image:url('{image:background}');
  128. background-attachment:fixed;
  129.  
  130. }
  131.  
  132.  
  133. a {
  134. color:{color:link};
  135. text-decoration:none;
  136. -webkit-transition: all 0.2s ease-in-out;
  137. -moz-transition: all 0.2s ease-in-out;
  138. -o-transition: all 0.2s ease-in-out;
  139. }
  140.  
  141.  
  142. #header {
  143. text-align:left;
  144. position:relative;
  145. left:115px;
  146. top:65px;
  147. width:250px;
  148. height:auto;
  149. padding:7px;
  150. background:#fff;
  151. }
  152.  
  153.  
  154. #blogt {
  155. font-size:60px;
  156. border-bottom:3px solid {color:title border};
  157. padding-bottom:30px;
  158. width:300px;
  159. margin-left:-60px;
  160. text-align:center;
  161. font-family: 'Raleway', sans-serif;
  162. text-transform:none;
  163. color:{color:Blog Title};
  164. }
  165.  
  166.  
  167. .navlinks {
  168. line-height:16px;
  169. margin-top:-125px;
  170. right:-255px;
  171. text-transform:lowercase;
  172. position:relative;
  173. font-family: 'Raleway', sans-serif;
  174. text-align:left;
  175. font-size:13.5px;
  176. }
  177.  
  178.  
  179. .navlinks a {
  180. margin-right:5px;
  181. margin-bottom:5px;
  182. }
  183.  
  184.  
  185. .navlinks a:hover {
  186. color:{color:Link Hover};
  187. background:#fff;
  188. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  189. -webkit-transition:all 0.3s ease-in-out;
  190. -moz-transition:all 0.3s ease-in-out;
  191. transition:all 0.3s ease-in-out;
  192. }
  193.  
  194.  
  195. #description {
  196. margin-top:10px;
  197. margin-left:-70px;
  198. padding:10px;
  199. color:{color:Description};
  200. font-family: 'Raleway', sans-serif;
  201. text-align:center;
  202. font-size:13px;
  203. }
  204.  
  205.  
  206. #con {
  207. left:50%;
  208. margin-left:-250px;
  209. position:absolute;
  210. }
  211.  
  212.  
  213. #entries {
  214. width:1050px;
  215. margin-top:130px;
  216. margin-left:-240px;
  217. {block:PermalinkPage}
  218. width:500px;
  219. {/block:PermalinkPage}
  220. }
  221.  
  222.  
  223. .posts {
  224. border:1px dotted {color:post border};
  225. width:200px;
  226. float:left;
  227. margin-right:40px;
  228. padding:7px 7px 0px 7px;
  229. {block:IndexPage}
  230. margin-bottom:40px;
  231. {/block:IndexPage}
  232.  
  233. {block:PermalinkPage}
  234. width:500px;
  235. margin-bottom:30px;
  236. position:relative;
  237. float:left;
  238. {/block:PermalinkPage}
  239. }
  240.  
  241.  
  242. .posts img {
  243. max-width:250px;
  244. }
  245.  
  246. .posts img, .posts li, .posts blockquote {max-width: 100%;}
  247. .caption {width:100%;
  248. margin-top:10px;
  249.  
  250. }
  251.  
  252. #title {
  253. font-size:12px;
  254. line-height:18px;
  255. font-weight:bold;
  256. margin-bottom:10px;
  257. text-transform:uppercase;
  258. text-align:left;
  259. }
  260.  
  261.  
  262. .text {
  263. font-size:11px;
  264. font-family: 'Raleway', sans-serif;
  265. }
  266.  
  267.  
  268. .text a:hover {
  269. text-decoration:underline;
  270. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  271. -webkit-transition:all 0.3s ease-in-out;
  272. -moz-transition:all 0.3s ease-in-out;
  273. transition:all 0.3s ease-in-out;
  274. }
  275.  
  276.  
  277. #quote{
  278. text-align:left;
  279. font-size:14px;
  280. line-height:18px;
  281. font-weight:bold;
  282. }
  283.  
  284.  
  285. #quote a:hover {
  286. text-decoration:underline;
  287. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  288. -webkit-transition:all 0.3s ease-in-out;
  289. -moz-transition:all 0.3s ease-in-out;
  290. transition:all 0.3s ease-in-out;
  291. }
  292.  
  293.  
  294. #quotesource {
  295. margin-top:15px;
  296. margin-left:15px;
  297.  
  298. }
  299.  
  300.  
  301. .player {
  302. width:25px;
  303. height:25px;
  304. overflow:hidden;
  305. position:absolute;
  306. margin-left:12px;
  307. margin-top:12px;
  308. background:white;
  309. }
  310.  
  311.  
  312. .audioinfo {
  313. margin-left:70px;
  314. }
  315.  
  316.  
  317. .albumart {
  318. position:absolute;
  319. {block:IndexPage}
  320. width:60px;
  321. height:60px;
  322. {/block:IndexPage}
  323. {block:PermalinkPage}
  324. width:60px;
  325. height:60px;
  326. {/block:PermalinkPage}
  327. }
  328.  
  329.  
  330. .albumart img {
  331. float:left;
  332. {block:IndexPage}
  333. width:60px;
  334. height:60px;
  335. {/block:IndexPage}
  336. {block:PermalinkPage}
  337. width:60px;
  338. height:60px;
  339. {/block:PermalinkPage}
  340. }
  341.  
  342.  
  343. .question {
  344. margin-bottom:10px;
  345. }
  346.  
  347. .asker {
  348. font-weight:bold;
  349. }
  350.  
  351.  
  352. .answer {
  353. margin-top:10px;
  354. }
  355.  
  356.  
  357. .chat ol {
  358. padding:0;
  359. list-style:none;
  360. }
  361.  
  362.  
  363. .line {
  364. padding:5px 0;
  365. }
  366.  
  367.  
  368. .label {
  369. font-weight:bold;
  370. }
  371.  
  372.  
  373. #permalink {
  374. margin:5px;
  375. font-size:11px;
  376. text-align:right;
  377. padding:3px;
  378. background:{color:perma BG};
  379. border-radius:0px;
  380. width:100%;
  381. margin-left:-3px;
  382. }
  383.  
  384.  
  385. #permalink a {
  386. margin-left:10px;
  387. color:#444;
  388. padding:3px;
  389. }
  390.  
  391.  
  392. #permalink a:hover {
  393. padding:3px;
  394. color:{color:Link Hover};
  395. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  396. -webkit-transition:all 0.3s ease-in-out;
  397. -moz-transition:all 0.3s ease-in-out;
  398. transition:all 0.3s ease-in-out;
  399. }
  400.  
  401.  
  402. .pagination {
  403. display:none;
  404. }
  405.  
  406.  
  407. .popup_block{
  408. display:none;
  409. background:#fff;
  410. padding:20px;
  411. border:10px solid {color:popup border}; /* if you want a solid white pop-up, delete this */
  412. float:left;
  413. position:fixed;
  414. top:50%;left:50%;
  415. z-index: 99999;
  416. -webkit-box-shadow: 0px 0px 20px #eee; /* delete for solid white */
  417. -moz-box-shadow: 0px 0px 20px #eee; /* delete for solid white */
  418. box-shadow: 0px 0px 20px #eee; /* delete for solid white */
  419. }
  420.  
  421. *html #fade {position: absolute;}
  422. *html .popup_block {position: absolute;}
  423. #fade {
  424. display:none;
  425. position:fixed;
  426. left:0px;
  427. top:0px;
  428. width:100%;
  429. height:100%;
  430. z-index:9999;
  431. background:#000; /* change to #fff for solid white */
  432. opacity:0.5; /* change to opacity:1; */
  433. }
  434.  
  435.  
  436. .notes {
  437. padding-left:20px;
  438. font-size:11px;
  439. }
  440.  
  441. .pagination {
  442. display: none;
  443. }
  444.  
  445.  
  446. #credit {
  447. position:fixed;
  448. right:10px;
  449. z-index:9999;
  450. bottom:5px;
  451. }
  452.  
  453.  
  454. {CustomCSS}
  455. </style>
  456.  
  457. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  458.  
  459. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  460.  
  461. <script>
  462. $(function(){
  463. var $container = $('#entries');
  464. $container.imagesLoaded(function(){
  465. $container.masonry({
  466. itemSelector: '.posts',
  467. });
  468. });
  469. $container.infinitescroll({
  470. itemSelector : ".posts",
  471. navSelector : "div.pagination",
  472. nextSelector : ".pagination a#next",
  473. loadingImg : "",
  474. loadingText : "<em></em>",
  475. bufferPx : 10000,
  476. extraScrollPx: 12000,
  477. },
  478. // trigger Masonry as a callback
  479. function( newElements ) {
  480. var $newElems = $( newElements ).css({ opacity: 0 });
  481. // ensure that images load before adding to masonry layout
  482. $newElems.imagesLoaded(function(){
  483. $newElems.animate({ opacity: 1 });
  484. $container.masonry( 'appended', $newElems, true );
  485. });
  486. }
  487. );
  488. });
  489. </script>
  490.  
  491.  
  492. </head>
  493.  
  494. <body>
  495.  
  496. <div id="con">
  497.  
  498. <div id="credit"><a href="http://ammetrine.tumblr.com/" target="_blank" title="ammetrine's themes"><img src="http://38.media.tumblr.com/tumblr_lu2de5CqUh1qfoi4t.gif"></a></div>
  499.  
  500. <div id="header">
  501. <div id="blogt">{Title}</div>
  502. <div id="description">{Description}</div>
  503.  
  504. <div class="navlinks">
  505. <a href="/">home</a> <br>
  506. <a href="#?w=400" rel="box1" class="poplight">inbox</a> <br>
  507. <a href="/archive">archive</a> <br>
  508. {block:ifShowCustomlink1}<a href="{text:Link 1 URL}">{text:Link 1 Title}</a> <br>
  509. {/block:ifShowCustomLink1}
  510. {block:ifShowCustomlink2}<a href="{text:Link 2 URL}" >{text:Link 2 Title}</a> <br>{/block:ifShowCustomLink2}
  511. {block:ifShowCustomlink3}<a href="{text:Link 3 URL}">{text:Link 3 Title}</a> <br>{/block:ifShowCustomLink3}
  512. <a href="http://ammetrine.tumblr.com" target="_blank">theme</a>
  513. </div>
  514.  
  515. </div>
  516.  
  517.  
  518. <div id="entries">
  519.  
  520. {block:Posts}
  521.  
  522. <div class="posts">
  523.  
  524. {block:Quote}
  525. <div class="quote">
  526. '<strong><i>{Quote}</i></strong>'
  527. </div>
  528. {block:Source}
  529. <br><div class="quotesource">— {Source}</div>
  530. {/block:Source}
  531.  
  532. {block:IndexPage}
  533. <div id="permalink">
  534. <a href="{Permalink}" >{NoteCount}</a>
  535. <a href="{ReblogURL}">RBLG</a>
  536. </div>
  537. {/block:IndexPage}
  538. {/block:Quote}
  539.  
  540.  
  541. {block:Text}
  542. {block:Title}
  543. <div id="title">{Title}</div>
  544. {/block:Title}
  545. <div class="text">
  546. {Body}
  547. </div>
  548.  
  549. {block:IndexPage}
  550. <div id="permalink">
  551. <a href="{Permalink}" >{NoteCount}</a>
  552. <a href="{ReblogURL}">RBLG</a>
  553. </div>
  554. {/block:IndexPage}
  555. {/block:Text}
  556.  
  557.  
  558. {block:Link}
  559. <div id="title">
  560. <a href="{URL}">{Name}</a>
  561. </div>
  562. {block:Description}{Description}{/block:Description}
  563.  
  564. {block:IndexPage}
  565. <div id="permalink">
  566. <a href="{Permalink}" >{NoteCount}</a>
  567. <a href="{ReblogURL}">RBLG</a>
  568. </div>
  569. {/block:IndexPage}
  570. {/block:Link}
  571.  
  572.  
  573. {block:Chat}
  574. {block:Title}
  575. <h1>{Title}</h1>
  576. {/block:Title}
  577. <div class="chat">
  578. <ol>{block:Lines}
  579. <li class="line {Alt}">
  580. {block:Label}
  581. <span class="label">
  582. {Label}</span>
  583. {/block:Label}{Line}</li>
  584. {/block:Lines}
  585. </ol>
  586. </div>
  587.  
  588. {block:IndexPage}
  589. <div id="permalink">
  590. <a href="{Permalink}" >{NoteCount}</a>
  591. <a href="{ReblogURL}"</a>
  592. </div>
  593. {/block:IndexPage}
  594. {/block:Chat}
  595.  
  596.  
  597. {block:Photo}
  598. {block:IndexPage}
  599. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></a>
  600.  
  601. <div id="permalink">
  602. <a href="{Permalink}" >{NoteCount}</a>
  603. <a href="{ReblogURL}">RBLG</a>
  604. </div>
  605. {/block:IndexPage}
  606.  
  607. {block:PermalinkPage}
  608. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  609. <br>
  610. {/block:PermalinkPage}
  611. {/block:Photo}
  612.  
  613.  
  614. {block:Photoset}
  615. {block:IndexPage}
  616. {Photoset}
  617.  
  618. <div id="permalink">
  619. <a href="{Permalink}" >{NoteCount}</a>
  620. <a href="{ReblogURL}">RBLG</a>
  621. </div>
  622. {/block:IndexPage}
  623. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  624. {/block:Photoset}
  625.  
  626.  
  627. {block:Video}
  628. {Video-250}
  629.  
  630. {block:IndexPage}
  631. <div id="permalink">
  632. <a href="{Permalink}" >{NoteCount}</a>
  633. <a href="{ReblogURL}">RBLG</a>
  634. </div>
  635. {/block:IndexPage}
  636. {/block:Video}
  637.  
  638.  
  639. {block:Audio}
  640. {block:AlbumArt}
  641. <div class="albumart">
  642. <img src="{AlbumArtURL}">
  643. </div>
  644. {/block:AlbumArt}
  645. <div class="player">{AudioPlayerWhite}</div>
  646.  
  647. <div class="audioinfo">
  648. Title: {block:TrackName}{TrackName}{/block:TrackName}<br>
  649.  
  650. Artist: {block:Artist}{Artist}{/block:Artist}<br>
  651.  
  652. Plays: {block:PlayCount}{FormattedPlayCount}{/block:PlayCount}
  653.  
  654. {block:IndexPage}
  655. <div id="permalink">
  656. <a href="{Permalink}" >{NoteCount}</a>
  657. <a href="{ReblogURL}">RBLG</a>
  658. </div>
  659. {/block:IndexPage}
  660. </div>
  661. {/block:Audio}
  662.  
  663.  
  664. {block:Answer}
  665. <div class="question">
  666. <div class="asker">{Asker} said: </div>
  667. {Question}
  668. </div>
  669. <div class="answer"><br><i>{Answer}</i></div>
  670.  
  671. {block:IndexPage}
  672. <div id="permalink">
  673. <a href="{Permalink}" >{NoteCount}</a>
  674. <a href="{ReblogURL}">RBLG</a>
  675. </div>
  676. {/block:IndexPage}
  677. {/block:Answer}
  678.  
  679.  
  680.  
  681. {block:PermalinkPage}
  682. <div class="notes">
  683. {block:Date}{Caption} posted {TimeAgo}{/block:Date}
  684. {block:NoteCount} with {NoteCount} notes {/block:NoteCount}
  685. {block:RebloggedFrom}
  686. via <a href="{ReblogParentURL}">{ReblogParentName}</a>,
  687. {/block:RebloggedFrom}
  688. {block:ContentSource}originally from <a href="{SourceURL}">{SourceTitle} </a>{/block:ContentSource}
  689. <br>{block:hastags}{block:tags}#<a href="/tagged/{Tag}">{Tag}</a> &nbsp;&nbsp; {/block:tags}{/block:hastags}
  690. <br>{PostNotes}
  691. </div>
  692. {/block:PermalinkPage}
  693.  
  694. </div>
  695. {/block:Posts}
  696.  
  697. <div class="pagination">
  698. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> &middot;{/block:PreviousPage} {block:NextPage}<a href="{NextPage}" id="next">next</a>{/block:NextPage}{/block:Pagination}
  699. </div>
  700.  
  701.  
  702.  
  703. </div>
  704.  
  705. </div>
  706.  
  707. </body>
  708.  
  709. <div id="box1" class="popup_block">
  710. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  711.  
  712. </div>
  713.  
  714.  
  715. </html>
Add Comment
Please, Sign In to add comment