Advertisement
ammetrine

Aquamarine Theme by Ammetrine

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