Advertisement
ammetrine

Rude Jade Theme by Ammetrine

Aug 18th, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <link href='https://fonts.googleapis.com/css?family=Handlee' rel='stylesheet' type='text/css'>
  4. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  5. <link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/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="#f0d4e1"/>
  54. <meta name="color:Link Hover" content="#000000"/>
  55. <meta name="color:Scrollbar" content="#f0d4e1"/>
  56. <meta name="color:Credit BG" content="#f0d4e1"/>
  57. <meta name="color:Sidebar Border" content="#000000"/>
  58. <meta name="color:Post Border" content="#000000"/>
  59. <meta name="color:Post Background" content="#f0d4e1"/>
  60. <meta name="color:Perma Background" content="#ffffff"/>
  61. <meta name="color:Perma Border" content="#000000"/>
  62. <meta name="color:Perma Text" content="#f0d4e1"/>
  63. <meta name="color:Perma Text Hover" 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: 'Times New Roman'family:courier;
  126. font-size:11px;
  127. text-align:justify;
  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. text-align:right;
  150. position:fixed;
  151. left:40px;
  152. top:40px;
  153. width:195px;
  154. border:1px dashed {color:Sidebar Border};
  155. padding:7px;
  156. background:#fff;
  157. }
  158.  
  159.  
  160. #blogt {
  161. font-size:22px;
  162. text-align:right;
  163. font-family: 'Times New Roman'
  164. text-transform:uppercase;
  165. color:{color:Blog Title};
  166. }
  167.  
  168.  
  169. .navlinks {
  170. line-height:16px;
  171. text-transform:lowercase;
  172. position:relative;
  173. font-family: 'Times New Roman'
  174. text-align:right;
  175. }
  176.  
  177.  
  178. .navlinks a {
  179. margin-right:5px;
  180. margin-bottom:5px;
  181. display:inline-block;
  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:15px 0;
  197. color:{color:Description};
  198. font-family: 'Times New Roman'
  199. text-align:right;
  200. }
  201.  
  202.  
  203. #con {
  204. left:50%;
  205. margin-left:-250px;
  206. position:absolute;
  207. }
  208.  
  209.  
  210. #entries {
  211. width:820px;
  212. margin-top:40px;
  213. margin-left:-80px;
  214.  
  215. {block:PermalinkPage}
  216. width:500px;
  217. {/block:PermalinkPage}
  218. }
  219.  
  220.  
  221. .posts {
  222. width:200px;
  223. float:left;
  224. margin-right:40px;
  225. padding:13px 13px 9px 13px;
  226. border:dashed 1px {color:Post Border};
  227. background:{color:Post Background};
  228. {block:IndexPage}
  229. margin-bottom:40px;
  230. {/block:IndexPage}
  231.  
  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: 'Times New Roman'
  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. font-size:12.5px;
  375. text-align:center;
  376. opacity:0;
  377. position:absolute;
  378. padding-top:15px;
  379. padding-right:5.5px;
  380. margin-top:-35px;
  381. margin-left:-53px;
  382. top:50%;
  383. left:50%;
  384. width:100px;
  385. height:50px;
  386. background:{color:Perma Background};
  387. border:dashed 1px {color:Perma Border};
  388. -webkit-transition: all .3s ease-in-out;
  389. -moz-transition: all .3s ease-in-out;
  390. -ms-transition: all .3s ease-in-out;
  391. -o-transition: all .3s ease-in-out;
  392. transition: all .3s ease-in-out;
  393.  
  394. }
  395.  
  396. .posts:hover #permalink {
  397. opacity:1;
  398. }
  399.  
  400.  
  401. #permalink a {
  402. margin-left:10px;
  403. color:{color:Perma Text};
  404. padding:3px;
  405. }
  406.  
  407.  
  408. #permalink a:hover {
  409. padding:3px;
  410. color:{color:Perma Text Hover};
  411. -webkit-transition:opacity 0.3s ease-in-out; opacity: 0.5;
  412. -webkit-transition:all 0.3s ease-in-out;
  413. -moz-transition:all 0.3s ease-in-out;
  414. transition:all 0.3s ease-in-out;
  415. }
  416.  
  417.  
  418. .pagination {
  419. display:none;
  420. }
  421.  
  422.  
  423. .popup_block{
  424. display:none;
  425. background:#fff;
  426. padding:20px;
  427. float:left;
  428. position:fixed;
  429. top:50%;left:50%;
  430. z-index: 99999;
  431. }
  432.  
  433. *html #fade {position: absolute;}
  434. *html .popup_block {position: absolute;}
  435. #fade {
  436. display:none;
  437. position:fixed;
  438. left:0px;
  439. top:0px;
  440. width:100%;
  441. height:100%;
  442. z-index:9999;
  443. background:#000; /* change to #fff for solid white */
  444. opacity:0.5; /* change to opacity:1; */
  445. }
  446.  
  447.  
  448. .notes {
  449. padding-left:20px;
  450. font-size:11px;
  451. }
  452.  
  453. .pagination {
  454. display: none;
  455. }
  456.  
  457.  
  458. #credit {
  459. position:fixed;
  460. right:5px;
  461. bottom:5px;
  462. background:{color:Credit BG};
  463. padding-top:5px;
  464. padding-right:5px;
  465. padding-left:5px;
  466. padding-bottom:2px;
  467. font-size:12px;
  468. font-family: 'Times New Roman'
  469. z-index:9999;
  470. }
  471.  
  472. #credit a{
  473. color:#666;
  474. }
  475.  
  476. {CustomCSS}
  477. </style>
  478.  
  479. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  480.  
  481. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  482.  
  483. <script>
  484. $(function(){
  485. var $container = $('#entries');
  486. $container.imagesLoaded(function(){
  487. $container.masonry({
  488. itemSelector: '.posts',
  489. });
  490. });
  491. $container.infinitescroll({
  492. itemSelector : ".posts",
  493. navSelector : "div.pagination",
  494. nextSelector : ".pagination a#next",
  495. loadingImg : "",
  496. loadingText : "<em></em>",
  497. bufferPx : 10000,
  498. extraScrollPx: 12000,
  499. },
  500. // trigger Masonry as a callback
  501. function( newElements ) {
  502. var $newElems = $( newElements ).css({ opacity: 0 });
  503. // ensure that images load before adding to masonry layout
  504. $newElems.imagesLoaded(function(){
  505. $newElems.animate({ opacity: 1 });
  506. $container.masonry( 'appended', $newElems, true );
  507. });
  508. }
  509. );
  510. });
  511. </script>
  512.  
  513.  
  514. </head>
  515.  
  516. <body>
  517.  
  518. <div id="con">
  519.  
  520. <div id="credit"><a href="http://ammetrine.tumblr.com/">AT</a></div>
  521.  
  522. <div id="sidebar">
  523. <div id="blogt">{Title}</div>
  524. <div id="description">{Description}</div>
  525.  
  526. <div class="navlinks">
  527. <a href="/">home</a>
  528. <a href="#?w=400" rel="box1" class="poplight">inbox</a>
  529. <a href="/archive">archive</a>
  530. {block:ifShowCustomlink1}<a href="{text:Link 1 URL}">{text:Link 1 Title}</a>
  531. {/block:ifShowCustomLink1}
  532. {block:ifShowCustomlink2}<a href="{text:Link 2 URL}" >{text:Link 2 Title}</a>{/block:ifShowCustomLink2}
  533. {block:ifShowCustomlink3}<a href="{text:Link 3 URL}">{text:Link 3 Title}</a>{/block:ifShowCustomLink3}
  534. <a href="http://ammetrine.tumblr.com" target="_blank"><i class="fa fa-copyright"></i>
  535. </a>
  536. </div>
  537.  
  538. </div>
  539.  
  540.  
  541. <div id="entries">
  542.  
  543. {block:Posts}
  544.  
  545. <div class="posts">
  546.  
  547. {block:Quote}
  548. <div class="quote">
  549. '<strong><i>{Quote}</i></strong>'
  550. </div>
  551. {block:Source}
  552. <br><div class="quotesource">— {Source}</div>
  553. {/block:Source}
  554.  
  555. {block:IndexPage}
  556. <div id="permalink">
  557. <a href="{Permalink}" >{NoteCount}</a> <br>
  558. <a href="{ReblogURL}">reblog</a>
  559. </div>
  560. {/block:IndexPage}
  561. {/block:Quote}
  562.  
  563.  
  564. {block:Text}
  565. {block:Title}
  566. <div id="title">{Title}</div>
  567. {/block:Title}
  568. <div class="text">
  569. {Body}
  570. </div>
  571.  
  572. {block:IndexPage}
  573. <div id="permalink">
  574. <a href="{Permalink}" >{NoteCount}</a> <br>
  575. <a href="{ReblogURL}">reblog</a>
  576. </div>
  577. {/block:IndexPage}
  578. {/block:Text}
  579.  
  580.  
  581. {block:Link}
  582. <div id="title">
  583. <a href="{URL}">{Name}</a>
  584. </div>
  585. {block:Description}{Description}{/block:Description}
  586.  
  587. {block:IndexPage}
  588. <div id="permalink">
  589. <a href="{Permalink}" >{NoteCount}</a> <br>
  590. <a href="{ReblogURL}">reblog</a>
  591. </div>
  592. {/block:IndexPage}
  593. {/block:Link}
  594.  
  595.  
  596. {block:Chat}
  597. {block:Title}
  598. <h1>{Title}</h1>
  599. {/block:Title}
  600. <div class="chat">
  601. <ol>{block:Lines}
  602. <li class="line {Alt}">
  603. {block:Label}
  604. <span class="label">
  605. {Label}</span>
  606. {/block:Label}{Line}</li>
  607. {/block:Lines}
  608. </ol>
  609. </div>
  610.  
  611. {block:IndexPage}
  612. <div id="permalink">
  613. <a href="{Permalink}" >{NoteCount}</a> <br>
  614. <a href="{ReblogURL}"</a>
  615. </div>
  616. {/block:IndexPage}
  617. {/block:Chat}
  618.  
  619.  
  620. {block:Photo}
  621. {block:IndexPage}
  622. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></a>
  623.  
  624. <div id="permalink">
  625. <a href="{Permalink}" >{NoteCount}</a> <br>
  626. <a href="{ReblogURL}">reblog</a>
  627. </div>
  628. {/block:IndexPage}
  629.  
  630. {block:PermalinkPage}
  631. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  632. <br>
  633. {/block:PermalinkPage}
  634. {/block:Photo}
  635.  
  636.  
  637. {block:Photoset}
  638. {block:IndexPage}
  639. {Photoset}
  640.  
  641. <div id="permalink">
  642. <a href="{Permalink}" >{NoteCount}</a> <br>
  643. <a href="{ReblogURL}">reblog</a>
  644. </div>
  645. {/block:IndexPage}
  646. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  647. {/block:Photoset}
  648.  
  649.  
  650. {block:Video}
  651. {Video-250}
  652.  
  653. {block:IndexPage}
  654. <div id="permalink">
  655. <a href="{Permalink}" >{NoteCount}</a> <br>
  656. <a href="{ReblogURL}">reblog</a>
  657. </div>
  658. {/block:IndexPage}
  659. {/block:Video}
  660.  
  661.  
  662. {block:Audio}
  663. {block:AlbumArt}
  664. <div class="albumart">
  665. <img src="{AlbumArtURL}">
  666. </div>
  667. {/block:AlbumArt}
  668. <div class="player">{AudioPlayerWhite}</div>
  669.  
  670. <div class="audioinfo">
  671. Title: {block:TrackName}{TrackName}{/block:TrackName}<br>
  672.  
  673. Artist: {block:Artist}{Artist}{/block:Artist}<br>
  674.  
  675. Plays: {block:PlayCount}{FormattedPlayCount}{/block:PlayCount}
  676.  
  677. {block:IndexPage}
  678. <div id="permalink">
  679. <a href="{Permalink}" >{NoteCount}</a> <br>
  680. <a href="{ReblogURL}">reblog</a>
  681. </div>
  682. {/block:IndexPage}
  683. </div>
  684. {/block:Audio}
  685.  
  686.  
  687. {block:Answer}
  688. <div class="question">
  689. <div class="asker">{Asker} said: </div>
  690. {Question}
  691. </div>
  692. <div class="answer"><br><i>{Answer}</i></div>
  693.  
  694. {block:IndexPage}
  695. <div id="permalink">
  696. <a href="{Permalink}" >{NoteCount}</a> <br>
  697. <a href="{ReblogURL}">reblog</a>
  698. </div>
  699. {/block:IndexPage}
  700. {/block:Answer}
  701.  
  702.  
  703.  
  704. {block:PermalinkPage}
  705. <div class="notes">
  706. {block:Date}{Caption} posted {TimeAgo}{/block:Date}
  707. {block:NoteCount} with {NoteCount} notes {/block:NoteCount}
  708. {block:RebloggedFrom}
  709. via <a href="{ReblogParentURL}">{ReblogParentName}</a>,
  710. {/block:RebloggedFrom}
  711. {block:ContentSource}originally from <a href="{SourceURL}">{SourceTitle} </a>{/block:ContentSource}
  712. <br>{block:hastags}{block:tags}#<a href="/tagged/{Tag}">{Tag}</a> &nbsp;&nbsp; {/block:tags}{/block:hastags}
  713. <br>{PostNotes}
  714. </div>
  715. {/block:PermalinkPage}
  716.  
  717. </div>
  718. {/block:Posts}
  719.  
  720. <div class="pagination">
  721. {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}
  722. </div>
  723.  
  724.  
  725.  
  726. </div>
  727.  
  728. </div>
  729.  
  730. </body>
  731.  
  732. <div id="box1" class="popup_block">
  733. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  734.  
  735. </div>
  736.  
  737.  
  738. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement