yLii

Infinite Isotope 228

Jan 7th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 55.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html style="cursor:url('{image:Cursor}'), crosshair !important;">
  3. <head>
  4. <title>{Title}</title>
  5.  
  6.  
  7. <!--jquery-->
  8. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/bXomx943d/jquery-1.7.1.min.js"></script>
  9. <!-- isotope -->
  10. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/pGOokx1ys/isotope.js"></script>
  11. <!--horizontal horiz-->
  12. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/XcXokx1w3/isotope-horiz.js"></script>
  13. <!--infinite scroll -->
  14. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/tIEmx9449/jquery.infinitescroll.min.js"></script>
  15. <!--smooth scrolling -->
  16. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.6/SmoothScroll.min.js"></script>
  17. <!-- smoothstate
  18. <script src="https://rawgit.com/miguel-perez/smoothState.js/master/demos/csstricks/assets/js/jquery.smoothState.min.js"></script> -->
  19. <!-- images Loaded -->
  20. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/9ACokx21m/imagesloaded.js"></script>
  21. <!--mousewheel -->
  22. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/Qt9okx233/mousewheel.js"></script>
  23. <!-- style my tooltips -->
  24. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/iIZol19jf/jquery.style-my-tooltips.js"></script>
  25. <script type="text/css" src="http://static.tumblr.com/iuvoef7/pqtol19jl/style-my-tooltips.css"></script>
  26. <!-- font awesome -->
  27. <script type="text/javascript" src="http://static.tumblr.com/iuvoef7/Mmpokx241/fontawesome.js"></script>
  28. <!--Responsive photosets-->
  29. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  30.  
  31. <!-- <script src="http://static.tumblr.com/iuvoef7/M7sok4zc0/photoset.js"></script> -->
  32.  
  33. <script src="http://static.tumblr.com/iuvoef7/6Smoskpjg/photoset06.js"></script>
  34.  
  35.  
  36.  
  37. <script>
  38. $(document).ready(function(){
  39. $('body').css('opacity','0');
  40. $('body').delay(800).animate({opacity: 1}, 'slow');
  41.  
  42. });
  43. </script>
  44.  
  45.  
  46.  
  47. <script>
  48. //main function, called isotope
  49. var isotope = $(function(){
  50. // filter items when filter link is clicked
  51. // quick search regex
  52. var qsRegex;
  53. var buttonFilter;
  54. var $container = $('#content');
  55. var $boxes = $('.box').css('opacity','0');
  56.  
  57.  
  58. $container.imagesLoaded(function(){
  59. $container.isotope({
  60. itemSelector : '.box',
  61. layoutMode : {block:IfNotHorizontal}'masonry'{/block:IfNotHorizontal}
  62. {block:IfHorizontal}'horiz'{/block:IfHorizontal},
  63. masonry: {
  64. gutter: {text:Gutter Width}
  65. },
  66. fitColumns: {
  67. gutter: {text:Gutter Width}
  68. },
  69. fitRows: {
  70. gutter: {text:Gutter Width}
  71. },
  72. cellsByRow: {
  73. columnWidth: 110,
  74. rowHeight: 110
  75. },
  76. vertical: {
  77. horizontalAlignment: 0.5,
  78. },
  79. masonryHorizontal: {
  80. rowHeight: 250
  81. },
  82. cellsByColumn: {
  83. columnWidth: 110,
  84. rowHeight: 110
  85. },
  86. filter: function() {
  87. var $this = $(this);
  88. var searchResult = qsRegex ? $this.text().match( qsRegex ) : true;
  89. var buttonResult = buttonFilter ? $this.is( buttonFilter ) : true;
  90. return searchResult && buttonResult;
  91. }
  92. });
  93. $('.box').css('opacity','{select:Fade Opacity}');
  94.  
  95. });
  96.  
  97.  
  98.  
  99.  
  100. var captionbefore = document.getElementsByClassName('phototitle');
  101. var captionafter = document.getElementsByClassName('caption');
  102. var i;
  103. for (i = 0; i < captionbefore.length; i++) {
  104.  
  105. var captionbeforePtag = captionbefore[i].getElementsByTagName("p");
  106. for(j = 0; j < captionbeforePtag.length; j++) {
  107. captionbeforePtag[j].style.display = "none";
  108. }
  109.  
  110. var captionafterH2tag = captionafter[i].getElementsByTagName("h2");
  111. for(k = 0; k < captionafterH2tag.length; k++) {
  112. captionafterH2tag[k].style.display = "none";
  113. }
  114.  
  115.  
  116. }
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126. {block:IfInfiniteScroll}
  127. //infinite scroll and callback
  128. $container.infinitescroll({
  129. navSelector : '#page_nav',
  130. nextSelector : '#page_nav a',
  131. itemSelector : '.box',
  132. errorCallback: function(){$('.load-more').hide();},
  133. {block:IfHorizontal}binder: $('#wrapper'),{/block:IfHorizontal}
  134. bufferPx : 1500,
  135. loading: {
  136. msgText: "<em></em>",
  137. finishedMsg: ' ',
  138. img: 'http://i.imgur.com/qkKy8.gif'
  139. }
  140. },
  141.  
  142.  
  143. // call Isotope as a callback
  144. function ( newElements ) {
  145. var $newElems = jQuery( newElements ).hide(); // hide to begin with
  146. $( newElements ).find('.photo-slideshow').pxuPhotoset({
  147. lightbox: true,
  148. rounded: false,
  149. gutter: ' {text:Photoset Gutter Width}px',
  150. borderRadius: '0px',
  151. highRes : true,
  152. captions : true,
  153. photoset: '.photo-slideshow',
  154. photoWrap: '.photo-data',
  155. photo: '.pxu-photo'
  156. });
  157.  
  158.  
  159. // ensure that images load before adding to masonry layout
  160. $newElems.imagesLoaded(function(){
  161. $newElems.fadeIn(); // fade in when ready
  162. $container.isotope( 'insert', $newElems );
  163. $("#s-m-t-tooltip").css('z-index', '999999999');
  164. });
  165.  
  166. {block:IfTooltips}
  167. $(newElements).find("[title]").style_my_tooltips({
  168. tip_follows_cursor:true,
  169. tip_delay_time:50,
  170. tip_fade_speed:200,
  171. });
  172. {/block:IfTooltips}
  173.  
  174. $("#s-m-t-tooltip").css('z-index', '999999999');
  175.  
  176. {block:IfHorizontal}
  177. $('.photo-slideshow').each(function () {
  178. var $this = $(this);
  179. var rows = $this.attr('data-layout').length;
  180. $this.children().children().css({'height':'calc(({text:Horizontal Post Height} - ' + (rows - 1) + '*{text:Photoset Gutter Width}px) /' + rows + ')'});
  181. $this.children().children().children().css({
  182. 'height': 'inherit'});
  183.  
  184. });
  185. {/block:IfHorizontal}
  186.  
  187.  
  188. }); //end isotope as callback
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196. {block:ifManualInfiniteScroll}
  197. //manual infinite scroll
  198. {block:IfNotHorizontal}
  199. $(window).unbind('.infscr');
  200. $('.load-more').click(function(){
  201. $container.infinitescroll('retrieve');
  202. return false
  203. });
  204. {/block:IfNotHorizontal}
  205.  
  206. {block:IfHorizontal}
  207. $('#wrapper').unbind('.infscr');
  208. $('.load-more').click(function(){
  209. $container.infinitescroll('retrieve');
  210. return false
  211. });
  212. {/block:IfHorizontal}
  213.  
  214. $("#s-m-t-tooltip").css('z-index', '999999999');
  215.  
  216.  
  217. {/block:ifManualInfiniteScroll}
  218. {/block:IfInfiniteScroll}
  219.  
  220.  
  221.  
  222.  
  223. $('#filters').on( 'click', 'a', function() {
  224. window.scrollTo(0,0);
  225. buttonFilter = $( this ).attr('data-filter');
  226. window.scrollTo(0,0);
  227. $container.isotope();
  228. window.scrollTo(0,0);
  229. return false
  230. });
  231.  
  232.  
  233.  
  234. // use value of search field to filter
  235. var $quicksearch = $('#quicksearch').keyup( debounce( function() {
  236. qsRegex = new RegExp( $quicksearch.val(), 'gi' );
  237. $container.isotope();
  238. }) );
  239.  
  240.  
  241.  
  242. // debounce so filtering doesn't happen every millisecond
  243. function debounce( fn, threshold ) {
  244. var timeout;
  245. return function debounced() {
  246. if ( timeout ) {
  247. clearTimeout( timeout );
  248. }
  249. function delayed() {
  250. fn();
  251. timeout = null;
  252. }
  253. setTimeout( delayed, threshold || 100 );
  254. };
  255. };
  256.  
  257.  
  258. {block:IfHorizontal}
  259. {block:IndexPage}
  260. $(function() {
  261. $("html, body, *").mousewheel(function(event, delta) {
  262. this.scrollLeft -= (delta * 40);
  263. event.preventDefault();
  264. });
  265. });
  266. {/block:IndexPage}
  267. {/block:IfHorizontal}
  268.  
  269.  
  270.  
  271.  
  272. }); //ending main function
  273.  
  274. $(document).ready(isotope);
  275. </script>
  276.  
  277.  
  278.  
  279. <script>
  280. $(document).ready(function(){
  281. $('.photo-slideshow').pxuPhotoset({
  282. lightbox: true,
  283. rounded: false,
  284. gutter: ' {text:Photoset Gutter Width}px',
  285. borderRadius: '0px',
  286. highRes : true,
  287. captions : true,
  288. photoset: '.photo-slideshow',
  289. photoWrap: '.photo-data',
  290. photo: '.pxu-photo'
  291. });
  292.  
  293. {block:IfHorizontal}
  294. $('.photo-slideshow').each(function () {
  295. var $this = $(this);
  296. var rows = $this.attr('data-layout').length;
  297. $this.children().children().css({'height':'calc(({text:Horizontal Post Height} - ' + (rows - 1) + '*{text:Photoset Gutter Width}px)/' + rows + ')'});
  298. $this.children().children().children().css({'height': 'inherit'});
  299. });
  300. {/block:IfHorizontal}
  301.  
  302. });
  303. </script>
  304.  
  305.  
  306.  
  307.  
  308. {block:IfTooltips}
  309. <script>
  310. (function($){
  311. $(document).ready(function(){
  312. $("[title]").style_my_tooltips({
  313. tip_follows_cursor:true,
  314. tip_delay_time:50,
  315. tip_fade_speed:200,
  316. });
  317. });
  318. })(jQuery);
  319. </script>
  320. {/block:IfTooltips}
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  329.  
  330.  
  331.  
  332. <!-- images/ files upload -->
  333. <meta name="image:Background" content="" />
  334. <meta name="image:Header" content="" />
  335. <meta name="image:Sidebar" content="" />
  336. <meta name="image:Sidebar Expandable Menu Image" content="http://pullthestrings.me/images/sidebar-icon.png" />
  337. <meta name="image:Ask Background" content="http://static.tumblr.com/iuvoef7/595ol3z60/watercolour_splat_02.png" />
  338. <meta name="image:Cursor" content="http://static.tumblr.com/iuvoef7/jeMol18eo/small_white_cursor.png" />
  339. <meta name="image:Custom Font" content="http://static.tumblr.com/iuvoef7/mNnojgowh/jellyka_bees_antique_handwriting.ttf" />
  340.  
  341.  
  342.  
  343. <!-- background colours -->
  344. <meta name="color:Background" content="#fbfbfb" />
  345. <meta name="color:Header Background" content="#fbfbfb" />
  346. <meta name="color:Sidebar Background" content="#fbfbfb" />
  347. <meta name="color:Sidebar Content Background" content="#fbfbfb" />
  348. <meta name="color:Caption Background" content="#ffffff" />
  349. <meta name="color:Lightbox Background" content="#ffffff" />
  350. <meta name="color:Tooltip Background" content="#ffffff" />
  351.  
  352. <!-- font colours -->
  353. <meta name="color:Header Font" content="#000000" />
  354. <meta name="color:Body Font" content="#000000" />
  355. <meta name="color:Sidebar Font" content="#a8a8a8" />
  356. <meta name="color:Tooltip Font" content="#777777" />
  357.  
  358. <meta name="color:Links" content="#ffa9b6" />
  359. <meta name="color:Text highlight" content="#bbbbbb" />
  360. <meta name="color:Post Deets" content="#a8a8a8" />
  361. <meta name="color:Scrollbar" content="#fed3f2" />
  362.  
  363. <!-- tumblr preset fonts -->
  364. <meta name="font:Header Font" content="Arial" />
  365. <meta name="font:Body Font" content="Baskerville" />
  366. <meta name="font:Sidebar Font" content="Baskerville" />
  367.  
  368.  
  369. <!-- booleans --> <!-- 1=yes, 0=no -->
  370. <meta name="if:Audio Show Album Art" content="0" />
  371. <meta name="if:Crop Text Post" content="1" />
  372. <meta name="if:Head Space" content="1" />
  373. <meta name="if:Horizontal" content="0" />
  374. <meta name="if:Infinite Scroll" content="1" />
  375. <meta name="if:Manual Infinite Scroll" content="1" />
  376. <meta name="if:Show Post Deets On Hover" content="1" />
  377. <meta name="if:Sidebar" content="1" />
  378. <meta name="if:Sidebar Content" content="1" />
  379. <meta name="if:Post Type Filter" content="0" />
  380. <meta name="if:Bigger Sidebar For Margin Content" content="0" />
  381. <meta name="if:Stack Photoset" content="0" />
  382. <meta name="if:Toggle Sidebar Words" content="1" />
  383. <meta name="if:Tooltips" content="1" />
  384.  
  385.  
  386. <meta name="select:Content Width" content="30vw" />
  387. <meta name="select:Content Width" content="10vw" />
  388. <meta name="select:Content Width" content="20vw" />
  389. <meta name="select:Content Width" content="40vw" />
  390. <meta name="select:Content Width" content="50vw" />
  391. <meta name="select:Content Width" content="60vw" />
  392. <meta name="select:Content Width" content="70vw" />
  393. <meta name="select:Content Width" content="80vw" />
  394. <meta name="select:Content Width" content="90vw" />
  395. <meta name="select:Content Width" content="100vw" />
  396.  
  397.  
  398.  
  399.  
  400.  
  401. <meta name="select:Float" content="margin:auto" title="Align Center" />
  402. <meta name="select:Float" content="margin:auto; margin-left:0" title="Align Left" />
  403. <meta name="select:Float" content="margin:auto; margin-right:0" title="Align Right" />
  404.  
  405. <meta name="select:SideFloat" content="left:0" title="Left Sidebar" />
  406. <meta name="select:SideFloat" content="right:0" title="Right Sidebar" />
  407.  
  408. <meta name="select:Fade Opacity" content="0.9" />
  409. <meta name="select:Fade Opacity" content="0.1" />
  410. <meta name="select:Fade Opacity" content="0.2" />
  411. <meta name="select:Fade Opacity" content="0.3" />
  412. <meta name="select:Fade Opacity" content="0.4" />
  413. <meta name="select:Fade Opacity" content="0.5" />
  414. <meta name="select:Fade Opacity" content="0.6" />
  415. <meta name="select:Fade Opacity" content="0.7" />
  416. <meta name="select:Fade Opacity" content="0.8" />
  417. <meta name="select:Fade Opacity" content="1.0" />
  418.  
  419.  
  420.  
  421.  
  422. <meta name="select:Post Deets Position" content="float:right; margin-right:-23px" title="Right" />
  423. <meta name="select:Post Deets Position" content="float:left; margin-left:-32px" title="Left" />
  424. <meta name="select:Post Deets Position" content="position:absolute; top:-17px; left:17px" title="Top" />
  425. <meta name="select:Post Deets Position" content="position:absolute; bottom:0px; left:17px" title="Bottom" />
  426. <meta name="select:Post Deets Position" content="float:right; margin-right:30px;" title="On Post" />
  427. <meta name="select:Post Deets Position" content="display:none;" title="No Post Deets" />
  428.  
  429.  
  430.  
  431.  
  432. <meta name="select:Blockquote Styling" content="" title="Normal" />
  433. <meta name="select:Blockquote Styling" content="margin-left:0px; line-height:6px" title="Minimal" />
  434.  
  435.  
  436. <meta name="select:Captions Styling" content="position:absolute;display:table;float:left;width:60%;height:auto;max-height:30%;overflow:hidden;left:0; right:0; margin:auto;top:50%; bottom:50%;text-align:center; overflow-wrap: break-word;word-wrap: break-word; -ms-word-break: break-all;word-break: break-word;opacity:0; -webkit-transition: 0.5s ease-in-out;-moz-transition: 0.5s ease-in-out;transition: 0.5s ease-in-out;" title="Hover On Post" />
  437. <meta name="select:Captions Styling" content="margin-top:-10px;" title="No Styling" />
  438. <meta name="select:Captions Styling" content="border-radius:0px 0px 3px 3px;" title="Rounded" />
  439. <meta name="select:Captions Styling" content="margin-top:-10px;border-radius:0px 0px 3px 3px;padding-left:5px;padding-right:5px;padding-top:5px;padding-bottom:1px;" title="Rounded nonhorizontal" />
  440. <meta name="select:Captions Styling" content="position:absolute;display:block;float:left;width:auto;height:auto;max-height:30%;overflow:hidden;left:0; right:0; bottom:0; margin:auto;text-align:center;" title="On Post Bottom" />
  441. <meta name="select:Captions Styling" content="display:none;" title="No captions" />
  442.  
  443.  
  444. <meta name="select:Menu Styling" content="sidebar" title="Sidebar Menu" />
  445. <meta name="select:Menu Styling" content="bottom-menu" title="Bottom Menu" />
  446. <meta name="select:Menu Styling" content="top-menu" title="Top Menu" />
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453. <!-- main -->
  454. <meta name="text:Number of Columns" content="1" />
  455. <meta name="text:Horizontal Post Height" content="300px" />
  456. <meta name="text:Space between Header and Content" content="0px" />
  457. <meta name="text:Gutter Width" content="200" />
  458. <meta name="text:Photoset Gutter Width" content="1" />
  459. <!-- header and footer -->
  460. <meta name="text:Header Height" content="250px" />
  461. <meta name="text:Header Width" content="100%" />
  462. <meta name="text:Header Top and Bottom Gap" content="0px" />
  463. <meta name="text:Footer Height" content="100px" />
  464. <!-- sidebar -->
  465. <meta name="text:Sidebar Background Opacity" content="0.95" />
  466. <meta name="text:Sidebar Content Background Opacity" content="0" />
  467. <meta name="text:Sidebar Vertical Position" content="35vh" />
  468. <meta name="text:Searchbar Greeting" content="Type in me! (search)" />
  469. <!-- fonts -->
  470. <meta name="text:Header Font" content="Jellyka"/>
  471. <meta name="text:Header Font Size" content="50px" />
  472. <meta name="text:Body Font" content="Lora" />
  473. <meta name="text:Body Font Size" content="10px" />
  474. <meta name="text:Sidebar Font" content="Lora" />
  475. <meta name="text:Sidebar Font Size" content="10px" />
  476. <meta name="text:Custom Font Name" content="Jellyka" />
  477. <!--fonts-->
  478. <link href='http://fonts.googleapis.com/css?family={text:Body Font}' rel='stylesheet' type='text/css'>
  479. <link href='http://fonts.googleapis.com/css?family={text:Header Font}' rel='stylesheet' type='text/css'>
  480. <link href='http://fonts.googleapis.com/css?family={text:Sidebar Font}' rel='stylesheet' type='text/css'>
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487. <link rel="shortcut icon" href="{Favicon}"><link rel="alternate" type="application/rss+xml" href="{RSS}"><link href="http://static.tumblr.com/wgijwsy/k1Hm9ei8b/normalize.css" rel="stylesheet" type="text/css" />
  488.  
  489.  
  490.  
  491.  
  492.  
  493. <style type="text/css">
  494.  
  495.  
  496. @font-face {font-family:"{text:Custom Font Name}";src:url('{image:Custom Font}');}
  497.  
  498.  
  499.  
  500. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  501. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  502. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  503.  
  504. .fade-in {
  505. opacity:0; /* make things invisible upon start */
  506. -webkit-animation:fadeIn ease-in-out 0.8; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  507. -moz-animation:fadeIn ease-in-out 0.8;
  508. animation:fadeIn ease-in-out 0.8;
  509.  
  510. -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  511. -moz-animation-fill-mode:forwards;
  512. animation-fill-mode:forwards;
  513.  
  514. -webkit-animation-duration:1.2s;
  515. -moz-animation-duration:1.2s;
  516. animation-duration:1.2s;
  517. }
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524. .iframe-controls--desktop {
  525. position:fixed;
  526. top:0px;
  527. left:0px;
  528. z-index:9999999999;
  529. opacity:0.75 !important;
  530. filter:invert(100%);
  531. -webkit-filter:invert(100%);
  532. -webkit-transform:scale(0.7,0.7);
  533. -webkit-transform-origin: 100% 0%;
  534. -ms-transform-origin:100% 0%;
  535. -ms-transform:scale(0.7,0.7);
  536. transform:scale(0.7,0.7);
  537. transform-origin:100% 0%;
  538. cursor:url('{image:Cursor}');
  539. display:none;
  540. }
  541.  
  542.  
  543.  
  544.  
  545. ::-webkit-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  546. ::-webkit-scrollbar-thumb { background-color: {color:Scrollbar}; -webkit-border-radius: 2ex;}
  547. ::-moz-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  548. ::-moz-scrollbar-thumb { background-color: {color:Scrollbar}; -moz-border-radius: 2ex; border:10px; }
  549. ::-o-scrollbar {position:fixed; width: 0px; height:0px; background: rgba({RGBcolor:Background},0); }
  550. ::-o-scrollbar-thumb { background-color: {color:Scrollbar}; -o-border-radius: 2ex; }
  551.  
  552.  
  553. /*
  554. ::-webkit-scrollbar {
  555. width:17px;
  556. height:17px;
  557. }
  558. ::-webkit-scrollbar {
  559. background-color:rgb(255,255,255);
  560. }
  561. ::-webkit-scrollbar-track {
  562. border:8px solid rgb(255,255,255);
  563. background-color:rgb(230,230,230);
  564. }
  565. ::-webkit-scrollbar-thumb {
  566. border:8px solid rgb(255,255,255);
  567. background-color:rgb(144,144,144);
  568. min-height:24px;
  569. min-width:24px;
  570. }
  571. */
  572.  
  573.  
  574.  
  575. ::selection {background:{color:Text highlight} ;color: #fff;}
  576. ::-moz-selection {background:{color:Text highlight};color: #fff;}
  577.  
  578.  
  579.  
  580. #s-m-t-tooltip {
  581. opacity:1;
  582. padding: 5px 8px;
  583. margin:10px;
  584. background-color:{color:Tooltip Background};
  585. font-family:'{text:Body Font}', '{font:Body Font}', Georgia, 'Times New Roman', Times, serif;
  586. font-size:8px;
  587. letter-spacing:1px;
  588. text-transform:uppercase;
  589. color:{color:Tooltip Font};
  590. border:1px solid #eeeeee;
  591. border-radius:2px;
  592. z-index:99999999999;
  593. }
  594.  
  595.  
  596.  
  597.  
  598. a, a:hover, a:visited {cursor:url('{image:Cursor}'), crosshair; text-decoration:none;color:inherit;}
  599. ul, li {cursor:url('{image:Cursor}'); list-style-type: none; font-size:9px; line-height:10px; }
  600. button:focus, button, button:hover {cursor:url('{image:Cursor}'); outline:0;}
  601. a, a:hover, a:visited, li, button, button:hover {cursor:url('{image:Cursor}'), crosshair;}
  602. blockquote {border-left: 1px dashed #efefef; {block:IndexPage}{select:Blockquote Styling}; {block:IfHorizontal}line-height:10px;{/block:IfHorizontal}{/block:IndexPage} }
  603. input {border:none;}
  604. input:focus {outline:0;}
  605. html {width:100%; font-family:serif; cursor:url('{image:Cursor}'), crosshair;}
  606.  
  607.  
  608.  
  609. body {
  610. cursor:url('{image:Cursor}'), crosshair;
  611. background: {color:Background} url('{image:Background}');
  612. background-size:cover;
  613. background-attachment:fixed;
  614. width:100%;
  615. font-family:{text:Body Font}, {font:Body Font}, Georgia, 'Times New Roman', Times, serif;
  616. color:{color:Body Font};
  617. {block:IfHorizontal}
  618. height:100vh;
  619. overflow-y:hidden;
  620. position:fixed;
  621. {block:IfHorizontal}
  622.  
  623.  
  624. {block:PermalinkPage}
  625. height:100vh;
  626. overflow:hidden;
  627. {/block:PermalinkPage}
  628.  
  629. }
  630.  
  631.  
  632. #wrapper {
  633. cursor:url('{image:Cursor}'), crosshair;
  634. {block:IndexPage}
  635. {block:IfNotHorizontal} overflow-x:hidden; {block:IfNotHorizontal}
  636. {block:IfHorizontal} overflow-y:hidden; {/block:IfHorizontal}
  637. {/block:IndexPage}
  638.  
  639. {block:PermalinkPage}
  640. height:100vh;
  641. width:100vw;
  642. {/block:PermalinkPage}
  643.  
  644. }
  645.  
  646.  
  647.  
  648.  
  649. #header{
  650. cursor:url('{image:Cursor}'), crosshair;
  651. background:{color:Header Background} url('{image:Header}');
  652. background-repeat:no-repeat;
  653. background-size:cover;
  654. background-position:center center;
  655. background-attachment:fixed;
  656. color:{color:Header Font};
  657. font-family:{text:Header Font}, {font:Header Font}, Georgia, 'Times New Roman', Times, serif;
  658. height:{text:Header Height};
  659. position:relative;
  660. {block:IfHorizontal}
  661. max-height:calc(((100vh - {text:Horizontal Post Height})/2) - 2*{text:Header Top and Bottom Gap});
  662. position:fixed;
  663. {/block:IfHorizontal}
  664.  
  665. {block:IfHeadSpace}
  666. width:{text:Header Width}; left:0; right:0; top:0; bottom:0; margin:auto;
  667. margin-top:{text:Header Top and Bottom Gap};
  668. margin-bottom:{text:Header Top and Bottom Gap};
  669. text-align:center;
  670. z-index:5;
  671. {block:IfHorizontal}
  672. position:fixed;
  673. max-height:calc(((100vh - {text:Horizontal Post Height})/2) - 2*{text:Header Top and Bottom Gap});
  674. {/block:IfHorizontal}
  675. {/block:IfHeadSpace}
  676.  
  677. }
  678.  
  679.  
  680. #content-wrapper {
  681. {block:IndexPage}
  682. min-height:calc(100vh - {text:Header Height} - (2*{text:Header Top and Bottom Gap}) - {text:Footer Height} - 5vh);
  683. {block:IfNotHorizontal}
  684. width:100%;
  685. margin-top:{text:Space between Header and Content};
  686. {/block:IfNotHorizontal}
  687.  
  688. {block:IfHorizontal}
  689. {block:IfNotSidebar}
  690. margin-left:{text:Space between Header and Content};
  691. {/block:IfNotSidebar}
  692. {block:IfSidebar}
  693. margin-left:270px;
  694. {/block:IfSidebar}
  695. height:100vh;
  696. min-width:100%;
  697.  
  698. {block:IfNotHeadspace}
  699. top:0;
  700. {/block:IfNotHeadspace}
  701. {/block:IfHorizontal}
  702. {/block:IndexPage}
  703.  
  704. {block:PermalinkPage}
  705. height:100vh;
  706. width:100vw;
  707. {/block:PermalinkPage}
  708.  
  709.  
  710. }
  711.  
  712. #content {
  713. {block:IndexPage}
  714. {block:IfNotHorizontal}
  715. width:{select:Content Width};
  716. position:absolute; {select:Float};
  717. {/block:IfNotHorizontal}
  718.  
  719. {block:IfHorizontal}
  720. height:100%;
  721. max-height:100vh;
  722. width:100%;
  723. vertical-align:middle;
  724. overflow-y:visible;
  725. position:absolute;
  726. {/block:IfHorizontal}
  727. {/block:IndexPage}
  728.  
  729. {block:PermalinkPage}
  730. height:100vh;
  731. width:100vw;
  732. {/block:PermalinkPage}
  733.  
  734.  
  735. }
  736.  
  737.  
  738.  
  739. .box {
  740. opacity:{select:Fade Opacity};
  741. cursor:url('{image:Cursor}'), crosshair;
  742. font-family:'{text:Body Font}', '{font:Body Font}', Georgia, 'Times New Roman', Times, serif;
  743. font-size:{text:Body Font Size};
  744. position:relative;
  745.  
  746. {block:IfNotHorizontal}
  747. float: left;
  748. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  749. {/block:IfNotHorizontal}
  750.  
  751. {block:IfHorizontal}
  752. width:auto;
  753. height:{text:Horizontal Post Height};
  754. margin-top:calc((100vh - {text:Horizontal Post Height})/2);
  755. {/block:IfHorizontal}
  756.  
  757. opacity:{select:Fade Opacity};
  758. -webkit-transition: opacity 0.8s ease-in-out;
  759. -moz-transition: opacity 0.8s ease-in-out;
  760. transition: opacity 0.8s ease-in-out;
  761. }
  762.  
  763.  
  764.  
  765. .box:hover {opacity:1.0;}
  766.  
  767.  
  768.  
  769.  
  770. .title {
  771.  
  772. }
  773.  
  774.  
  775.  
  776.  
  777. .text {
  778. {block:IfNotHorizontal}height:auto;
  779. {block:IfCropTextPost}max-height:300px;{/block:IfCropTextPost}
  780. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  781. white-space: nowrap;
  782. overflow:hidden;
  783. {/block:IfNotHorizontal}
  784.  
  785. {block:IfHorizontal}
  786. height:{text:Horizontal Post Height};
  787. width:{text:Horizontal Post Height};
  788. line-height:10px;
  789. {/block:IfHorizontal}
  790. display:block;
  791. overflow:hidden;
  792.  
  793.  
  794.  
  795. }
  796.  
  797.  
  798. .photo {
  799.  
  800. }
  801.  
  802. .photo img {
  803. display:block;
  804. {block:IfNotHorizontal}width:100%;height:100%;{/block:IfNotHorizontal}
  805. {block:IfHorizontal}max-height:100%; width:auto;{block:IfHorizontal}
  806. }
  807.  
  808.  
  809.  
  810.  
  811.  
  812. {block:ifStackPhotoset}
  813. .photoset-wrap {}
  814. .photoset-wrap img { display: none; width:100%; }
  815. .photoset-wrap img:first-child { display: block; width:100%; }
  816. {/block:ifStackPhotoset}
  817.  
  818.  
  819.  
  820.  
  821. .quote {
  822. {block:IfNotHorizontal}
  823. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  824. padding-top:calc(((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns})/2);
  825. padding-bottom:calc(((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns})/2);
  826. {/block:IfNotHorizontal}
  827. {block:IfHorizontal}
  828. max-height:inherit;
  829. width:{text:Horizontal Post Height};
  830. padding-top:calc({text:Horizontal Post Height}/2.15);
  831. padding-bottom:calc({text:Horizontal Post Height}/2.15);
  832.  
  833. {/block:IfHorizontal}
  834. text-align:center;
  835. text-transform:uppercase;
  836. }
  837.  
  838. .link, .chat, .video, .answer {
  839. {block:IfNotHorizontal}
  840. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  841. {/block:IfNotHorizontal}
  842. {block:IfHorizontal}
  843. width:{text:Horizontal Post Height};
  844. {/block:IfHorizontal}
  845. }
  846.  
  847.  
  848. .link_url {
  849. width:100%;
  850. max-height:100%;
  851. text-align:center;
  852. padding-top:45%;
  853. padding-bottom:45%;
  854. left:0; right:0;
  855. top:0; bottom:0;
  856. margin:auto;
  857. }
  858.  
  859.  
  860.  
  861. .chat li:nth-of-type(odd){
  862. background-color: #edb4c9;}
  863.  
  864. .chat li:nth-of-type(even){
  865. background-color: #ffffff;}
  866.  
  867.  
  868.  
  869.  
  870.  
  871.  
  872. .tumblr_audio_player {
  873. {block:IfNotAudioShowAlbumArt}
  874. height: 90px;
  875. width: 200%;
  876. -moz-transform: scale(0.50, 0.50);
  877. -webkit-transform: scale(0.50, 0.50);
  878. -o-transform: scale(0.50, 0.50);
  879. -ms-transform: scale(0.50, 0.50);
  880. transform: scale(0.50, 0.50);
  881. -moz-transform-origin: top left;
  882. -webkit-transform-origin: top left;
  883. -o-transform-origin: top left;
  884. -ms-transform-origin: top left;
  885. transform-origin: top left;
  886. margin-bottom:-47px;
  887. {/block:IfNotAudioShowAlbumArt}
  888.  
  889. {block:IfAudioShowAlbumArt}
  890. height: 90px;
  891. width: 270px;
  892. -moz-transform: scale(0.60, 0.60);
  893. -webkit-transform: scale(0.60, 0.60);
  894. -o-transform: scale(0.60, 0.60);
  895. -ms-transform: scale(0.60, 0.60);
  896. transform: scale(0.60, 0.60);
  897. -moz-transform-origin: top left;
  898. -webkit-transform-origin: top left;
  899. -o-transform-origin: top left;
  900. -ms-transform-origin: top left;
  901. transform-origin: top left;
  902. {/block:IfAudioShowAlbumArt}
  903.  
  904.  
  905.  
  906.  
  907.  
  908. }
  909.  
  910.  
  911.  
  912. .audio {
  913. position: relative;
  914. display:inline-block;
  915. {block:IfNotHorizontal}
  916. width:calc((100% - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns});
  917. height:calc((({select:Content Width} - ({text:Number of Columns} - 1)*{text:Gutter Width}px)/{text:Number of Columns}) - 1px);
  918. {block:IfNotHorizontal}
  919.  
  920.  
  921. {block:IfHorizontal}
  922. height:{text:Horizontal Post Height};
  923. width:{text:Horizontal Post Height};
  924. {/block:IfHorizontal}
  925.  
  926.  
  927. }
  928.  
  929.  
  930.  
  931. .audioimgwrapper {
  932. position: absolute;
  933. left: 0px;
  934. top: 0px;
  935. overflow: hidden;
  936. width: 100%;
  937. height: 100%;
  938. }
  939.  
  940. .audioimgwrapper img {
  941. width: 100%;
  942. height: auto;
  943. }
  944.  
  945. .playerbuttonbg {
  946. position: absolute;
  947. left: 0; right:0;
  948. top: 0; bottom:0;
  949. margin:auto;
  950. width: 20px;
  951. height: 20px;
  952. background-color: #ffffff;
  953. padding: 10px;
  954. -webkit-border-radius: 40px;
  955. -moz-border-radius: 40px;
  956. border-radius: 40px;
  957. opacity: .4;
  958. filter: alpha(opacity=40);
  959. -moz-opacity: 0.4;
  960. -khtml-opacity: 0.4;
  961. transition: opacity .7s ease-in-out;
  962. -moz-transition: opacity .7s ease-in-out;
  963. -webkit-transition: opacity .7s ease-in-out;
  964. }
  965.  
  966. .playerbuttonbg:hover {
  967. opacity: 1;
  968. filter: alpha(opacity=100);
  969. -moz-opacity: 1;
  970. -khtml-opacity: 1;
  971. }
  972.  
  973. .newplayerbutton {
  974. position: relative;
  975. width: 19px;
  976. height: 19px;
  977. overflow: hidden;
  978. }
  979.  
  980. .playerbuttonhug {
  981. position: absolute;
  982. top: -17px;
  983. left: -5px;
  984. }
  985.  
  986.  
  987.  
  988.  
  989. .trackdetails {
  990. position:absolute;
  991. padding-left:5px;
  992. padding-top:1px;
  993. padding-right:5px;
  994. padding-bottom:1px;
  995. background:rgba(255,255,255,0.5);
  996. width: auto;
  997. left:0;
  998. top:0;
  999. z-index:3;
  1000. }
  1001.  
  1002.  
  1003.  
  1004.  
  1005. #caption {
  1006. background:{color:Caption Background};
  1007. {select:Captions Styling}
  1008.  
  1009. }
  1010.  
  1011. .box:hover #caption {opacity:1;}
  1012.  
  1013.  
  1014.  
  1015. #deets {
  1016. {block:ifShowPostDeetsOnHover}opacity:0;{/block:ifShowPostDeetsOnHover}
  1017. {block:ifNotShowPostDeetsOnHover} opacity:0.5;{/block:ifNotShowPostDeetsOnHover} -webkit-transition: 0.6s ease-in-out;-moz-transition: 0.6s ease-in-out;transition: 0.6s ease-in-out;
  1018. {select:Post Deets Position}; z-index:1000;}
  1019.  
  1020. #deets:hover{opacity:1;}
  1021.  
  1022. .box:hover #deets {
  1023. opacity:1;
  1024. }
  1025.  
  1026. .like_buttons {
  1027. font-size:10px;
  1028. color:{color:Post Deets};
  1029. position:absolute;
  1030. top:2px;
  1031. }
  1032.  
  1033.  
  1034. .reblog_buttons {
  1035. font-size:10px;
  1036. color:{color:Post Deets};
  1037. position:absolute;
  1038. top:-13px;
  1039. margin-left:15px;
  1040. }
  1041.  
  1042. .permalink_button {
  1043. font-size:10px;
  1044. opacity:0.5;
  1045. z-index:1;
  1046. position:absolute;
  1047. font-size:10px;
  1048. color:{color:Post Deets};
  1049. text-align:center;
  1050. top:2px;
  1051. margin-left:15px;
  1052. }
  1053.  
  1054.  
  1055. .tumblr_like {opacity:0;z-index:10;position:absolute;left:-15px;}
  1056. .my_like {opacity:0.5;z-index:1;position:absolute;left:-15px;-webkit-transition: 0.6s ease-in-out;-moz-transition: 0.6s ease-in-out;transition: 0.6s ease-in-out; }
  1057. .tumblr_like:hover + .my_like {color:{color:Links}}
  1058. /* Liked State */
  1059. .tumblr_like.liked + .my_like {color:{color:Links};}
  1060. .tumblr_reblog {opacity:0;z-index:10;position:absolute;top:16px;left:-15px;width:10px;height:10px;}
  1061. .my_reblog {opacity:0.5;z-index:1;position:absolute;top:15px;left:-14px;-webkit-transition: 0.6s ease-in-out;-moz-transition: 0.6s ease-in-out;transition: 0.6s ease-in-out;}
  1062. .tumblr_reblog:hover + .my_reblog {opacity:0.7;}
  1063.  
  1064.  
  1065.  
  1066. .permalink-post {
  1067. font-size:1.3vh;
  1068. height:100vh;
  1069. width:100vw;
  1070. text-align:center;
  1071. z-index:100;
  1072. -webkit-transition: 0.8s ease-in-out; -moz-transition: 0.8s ease-in-out; transition: 0.8s ease-in-out;
  1073. -webkit-animation-duration: 1s;
  1074. -moz-animation-duration: 1s;
  1075. animation-duration: 1s;
  1076.  
  1077. /* position: relative;
  1078. top: 50%;
  1079. transform: translateY(-50%); */ /* to vertical align*/
  1080.  
  1081. }
  1082.  
  1083. .permalink-text {
  1084. height: 60vh;
  1085. width:inherit;
  1086. transform:translateY(20vh);
  1087. display:block;
  1088. overflow: scroll;
  1089. }
  1090.  
  1091.  
  1092.  
  1093.  
  1094.  
  1095. /* note the :first-child thing doesn't work even with the img: specifier*/
  1096.  
  1097. .permalink-photoset {width:100%; height:100%;}
  1098. .permalink-photoset img { position:absolute; transform:translate(-50%,calc((100vh - 100%)/2)); counter-increment:img; -webkit-transition:opacity .6s ease-in-out;transition:opacity .6s ease-in-out; opacity:0; z-index:-2;}
  1099. .permalink-photoset img:first-child{opacity:1; z-index:1; }
  1100.  
  1101.  
  1102. #vignette, .vignette{opacity:0!important;}.lightbox-caption {color:#000;}
  1103. #tumblr_lightbox,.tmblr-lightbox{ background:rgba( {RGBcolor:Lightbox Background}, 0.8)!important; cursor:url('{image:Cursor}'), crosshair;}
  1104. #tumblr_lightbox img, .lightbox-image {box-shadow:none!important;border-radius:0px!important; cursor:url('{image:Cursor}'), crosshair;}
  1105.  
  1106.  
  1107.  
  1108.  
  1109. #footer {
  1110. width:100%;
  1111. position:relative;
  1112. height:{block:IfManualInfiniteScroll}100px{/block:IfManualInfiniteScroll} {block:IfNotManualInfiniteScroll}{text:Footer Height}{/block:IfNotManualInfiniteScroll};
  1113. bottom:0px;
  1114. z-index:10;
  1115.  
  1116. {block:IfHorizontal}
  1117. position:fixed;
  1118. {block:IfHorizontal}
  1119.  
  1120.  
  1121.  
  1122. }
  1123.  
  1124.  
  1125. .pagination {
  1126. z-index:50;
  1127. {block:IfNotHorizontal}
  1128. margin-top:50px;
  1129. margin-bottom:50px;
  1130. {/block:IfNotHorizontal}
  1131.  
  1132. {block:IfHorizontal}
  1133. margin-top:0px;
  1134. {/block:IfHorizontal}
  1135.  
  1136. }
  1137.  
  1138.  
  1139. .load-more {
  1140. z-index:100;
  1141. font-family:'{text:Body Font}';
  1142. left:50vw;
  1143. border:0;
  1144. padding-top:2vh;
  1145. padding-bottom:2vh;
  1146. padding-left:10vw;
  1147. padding-right:10vw;
  1148. background:#f0f0f0;
  1149. color:#9f9f9f;
  1150. -webkit-transition: 0.8s ease-in-out;
  1151. -moz-transition: 0.8s ease-in-out;
  1152. transition: 0.8s ease-in-out;
  1153.  
  1154. }
  1155.  
  1156.  
  1157. .load-more:hover {
  1158. background:{color:Links};
  1159. color:{color:Background};
  1160.  
  1161. }
  1162.  
  1163. .load-more:focus {
  1164. border:none;
  1165. }
  1166.  
  1167.  
  1168. #infscr-loading{
  1169.  
  1170.  
  1171. {block:IfNotHorizontal}
  1172. position:absolute;
  1173. margin-left:50%;
  1174. margin-right:50%;
  1175. bottom:0px;
  1176. {/block:IfNotHorizontal}
  1177.  
  1178. {block:IfHorizontal}
  1179. position:fixed;
  1180. right:0px;
  1181. top:50%;
  1182. bottom:50%;
  1183. {/block:IfHorizontal}
  1184.  
  1185. }
  1186.  
  1187.  
  1188. #infscr-loading img{
  1189. width:10px;
  1190. opacity:0.5;
  1191. }
  1192.  
  1193.  
  1194. #sidebar {
  1195. cursor:url('{image:Cursor}'), crosshair;
  1196. z-index:1;
  1197. background:rgba({RGBcolor:Sidebar Background}, {text:Sidebar Background Opacity}) url('{image:Sidebar}');
  1198. background-repeat:no-repeat;
  1199. background-size:cover;
  1200. position:fixed;
  1201. top:0;
  1202. {block:IfHorizontal}left:0{/block:IfHorizontal}
  1203. {block:IfNotHorizontal}{select:SideFloat}{/block:IfNotHorizontal};
  1204. max-width:50vw;
  1205. width:{block:IfNotHorizontal}calc((100vw - {select:Content Width}){block:IfNotBiggerSidebarForMarginContent}/2{/block:IfNotBiggerSidebarForMarginContent}){/block:IfNotHorizontal} {block:IfHorizontal}250px{/block:IfHorizontal};
  1206. height:{block:IfNotManualInfiniteScroll}100%{/block:IfNotManualInfiniteScroll} {block:IfManualInfiniteScroll}calc(83vh){/block:IfManualInfiniteScroll};
  1207. {block:IfNotHorizontal}margin-left:0px;{/block:IfNotHorizontal}
  1208. }
  1209.  
  1210. .sidebar {
  1211. background:rgba({RGBcolor:Sidebar Content Background}, {text:Sidebar Content Background Opacity});
  1212. padding-top:5px;
  1213. padding-bottom:5px;
  1214. margin-top:calc({text:Sidebar Vertical Position});
  1215. width:200px;
  1216. max-width:{block:IfNotHorizontal}calc((100vw - {select:Content Width})/2){/block:IfNotHorizontal};
  1217. font-family:'{text:Sidebar Font}', '{font:Sidebar Font}', Georgia, 'Times New Roman', Times, serif;
  1218. font-size:{text:Sidebar Font Size};
  1219. color:{color:Sidebar Font};
  1220.  
  1221. }
  1222.  
  1223. #sidebar img {
  1224. width:30px;
  1225. height:30px;
  1226. }
  1227.  
  1228.  
  1229. #bottom-menu{
  1230. z-index:9999999999;
  1231. position:fixed;
  1232. bottom:0px;
  1233. width:100vw;
  1234. height:20px;
  1235. background:rgba({RGBcolor:Sidebar Background}, 0.9);
  1236. }
  1237.  
  1238. .bottom-menu{
  1239. margin-top:3px;
  1240. text-align:left;
  1241. font-size:10px;
  1242.  
  1243. }
  1244.  
  1245.  
  1246. #bottom-menu p, #bottom-menu br, #bottom-menu img, #bottom-menu div, #bottom-menu center{
  1247. display:inline;
  1248. text-align:left;
  1249. }
  1250.  
  1251. #bottom-menu img{
  1252. width:10px;
  1253. height:10px;
  1254.  
  1255. }
  1256.  
  1257.  
  1258.  
  1259.  
  1260. #top-menu{
  1261. position:fixed;
  1262. top:0px;
  1263. width:100vw;
  1264. height:20px;
  1265. }
  1266.  
  1267. .top-menu{
  1268. margin-top:3px;
  1269. text-align:left;
  1270. font-size:10px;
  1271. }
  1272.  
  1273. #top-menu p, #top-menu br, #top-menu img, #top-menu div, #top-menu center{
  1274. display:inline;
  1275. text-align:left;
  1276. }
  1277.  
  1278. #top-menu img{
  1279. width:10px;
  1280. height:10px;
  1281. }
  1282.  
  1283.  
  1284. .portrait {
  1285. vertical-align:middle;
  1286. border-radius:35px;
  1287. opacity:0.7;
  1288. -webkit-transition: 0.8s ease-in-out;
  1289. -moz-transition: 0.8s ease-in-out;
  1290. transition: 0.8s ease-in-out;
  1291. }
  1292.  
  1293.  
  1294. .portrait:hover {
  1295. opacity:1.0;
  1296. border-radius:0px;
  1297.  
  1298.  
  1299. }
  1300.  
  1301.  
  1302.  
  1303.  
  1304. .notes {font-weight:bold; font-size:11px;}
  1305.  
  1306.  
  1307. ol.notes {
  1308. padding: 0px;
  1309. margin: 25px 0px;
  1310. list-style-type: none;
  1311. border-bottom: solid 1px #ddd;
  1312. }
  1313.  
  1314. ol.notes li.note {
  1315. border-top: solid 1px #ddd;
  1316. padding: 10px;
  1317. }
  1318.  
  1319. ol.notes li.note img.avatar {
  1320. vertical-align: -4px;
  1321. margin-right: 10px;
  1322. width: 16px;
  1323. height: 16px;
  1324. border-radius:15px;
  1325. }
  1326.  
  1327. ol.notes li.note span.action {
  1328. font-weight: bold;
  1329. }
  1330.  
  1331. ol.notes li.note .answer_content {
  1332. font-weight: normal;
  1333. }
  1334.  
  1335. ol.notes li.note blockquote {
  1336. border-color: #eee;
  1337. padding: 4px 10px;
  1338. margin: 10px 0px 0px 25px;
  1339. }
  1340.  
  1341. ol.notes li.note blockquote a {
  1342. text-decoration: none;
  1343. }
  1344.  
  1345.  
  1346. @media screen and (max-width: 480px) {
  1347. body {
  1348. background-color: lightgreen;
  1349. }
  1350. }
  1351.  
  1352. .navigation { {block:IfInfiniteScroll}display:none!important{/block:IfInfiniteScroll} {block:IfNotInfiniteScroll}display:block{/block:IfNotInfiniteScroll}; font-family:'{text:Body Font}'; font-size:12px; opacity:0.5;}
  1353.  
  1354. .isotope-item {z-index: 2;}
  1355. .isotope-hidden.isotope-item {pointer-events: none;z-index: 1;}
  1356. .isotope, .isotope .isotope-item {-webkit-transition: 0.8s ease-in-out;-moz-transition: 0.8s ease-in-out;transition: 0.8s ease-in-out;}
  1357. .isotope {-webkit-transition-property: height, width;-moz-transition-property: height, width;transition-property: height, width;}
  1358. .isotope .isotope-item {-webkit-transition-property:-webkit-transform, opacity;- moz-transition-property:-moz-transform, opacity; transition-property: transform, opacity;}
  1359. #filters, #quicksearch {opacity:0.4;-webkit-transition: 0.8s ease-in-out;-moz-transition: 0.8s ease-in-out;transition: 0.8s ease-in-out; }
  1360. #filters:hover, #quicksearch:hover {opacity:0.4;}
  1361.  
  1362.  
  1363. .hide {display:none; }
  1364. .active {display:block;}
  1365.  
  1366.  
  1367.  
  1368.  
  1369.  
  1370. </style>
  1371.  
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381. </head>
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394. <body style="cursor:url('{image:Cursor}'), crosshair !important; ">
  1395. <div id="wrapper">
  1396.  
  1397. {block:IndexPage}
  1398.  
  1399. <div id="header" style="{block:IfHorizontal} calc(((100vh - {text:Horizontal Post Height})/2) - 2*{text:Header Top and Bottom Gap}); {/block:IfHorizontal}">
  1400.  
  1401. {block:IfHeadSpace}
  1402. <a href="{BlogURL}" style="font-size:{text:Header Font Size};"> <div style="
  1403. padding-top:calc((
  1404. {block:IfNotHorizontal}{text:Header Height}{/block:IfNotHorizontal}
  1405. {block:IfHorizontal}(((100vh - {text:Horizontal Post Height})/2) - 2*{text:Header Top and Bottom Gap})
  1406. {/block:IfHorizontal} - {text:Header Font Size})/2);">{Title} </div></a>
  1407.  
  1408. <!-- <p><input type="text" id="quicksearch" autocomplete="off" style="opacity:0.8; background:white; color:#a8a8a8; text-align:center; position:absolute; bottom:0; right:0; width:100px; height:15px; font-family:'{text:Sidebar Font}', '{font:Sidebar Font}', Georgia, 'Times New Roman', Times, serif; font-size:9px; border-radius:3px;" placeholder= "Search"/></p> -->
  1409.  
  1410. {/block:IfHeadSpace}
  1411. </div>
  1412.  
  1413.  
  1414.  
  1415. {/block:IndexPage}
  1416.  
  1417.  
  1418.  
  1419.  
  1420. <div id="content-wrapper">
  1421. <div id="content" class="fade-in">
  1422. {block:Posts}
  1423.  
  1424. {block:IndexPage}
  1425. <div class="box {block:Text}text{/block:Text} {block:Photo}photo{/block:Photo} {block:Photoset}photoset{/block:Photoset} {block:Quote}quote{/block:Quote} {block:Link}link{/block:Link} {block:Chat}chat{/block:Chat} {block:Audio}audio{/block:Audio} {block:Video}video{/block:Video} {block:Answer}answer{/block:Answer} {block:HasTags}{block:Tags}{Tag} {/block:Tags}{/block:HasTags}"
  1426. style="opacity:0.00001;
  1427. {block:IfNotHorizontal}margin-bottom:calc({text:Gutter Width}px);{/block:IfNotHorizontal}
  1428. {block:IfHorizontal}margin-right:{text:Gutter Width}px; {/block:IfHorizontal} " >
  1429.  
  1430.  
  1431. <div id="deets">
  1432. <div class="like_buttons"><div class="tumblr_like"> {LikeButton size="10"} </div> <div class="my_like"><i class="fa fa-heart"></i></div></div>
  1433. <div class="reblog_buttons"><div class="tumblr_reblog"> {ReblogButton size="10"}</div> <div class="my_reblog"><i class="fa fa-undo"></i></div></div>
  1434. <div class="permalink_button"><a href="{Permalink}" title="{DayOfWeek}, {DayOfMonth}{DayOfMonthSuffix} {ShortMonth} {Year}"><i class="fa fa-clock-o"></i></a></div>
  1435. </div>
  1436.  
  1437.  
  1438. <div id="tags" style="position:absolute; opacity:0;">{block:HasTags}{block:Tags}{Tag} &nbsp; {/block:Tags}{/block:HasTags}</div>
  1439.  
  1440.  
  1441.  
  1442.  
  1443. {block:Text}
  1444. <u><a href="{Permalink}">{Title}</a></u>
  1445. {Body}
  1446. {/block:Text}
  1447.  
  1448.  
  1449.  
  1450.  
  1451.  
  1452. {block:Photo}
  1453. <a href="#">
  1454. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"
  1455. onclick="Tumblr.Lightbox.init([{ width: {PhotoWidth-HighRes}, height: {PhotoHeight-HighRes}, low_res: '{PhotoURL-500}', high_res: '{PhotoURL-HighRes}' }]);
  1456. $('body').toggleClass('tumblr_lightbox_active');
  1457. return false" />
  1458. </a>
  1459. {/block:Photo}
  1460.  
  1461.  
  1462.  
  1463.  
  1464. {block:Photoset}
  1465. {block:ifNotStackPhotoset}
  1466. {block:IfNotHorizontal}
  1467. <!--preset code to abide by pxu -->
  1468. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}" >
  1469. {block:Photos}
  1470. <div class="photo-data">
  1471. <div class="pxu-photo">
  1472. <img src="{PhotoURL-HighRes}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  1473. </div>
  1474. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}">
  1475. </a>
  1476. </div>
  1477. {/block:Photos}
  1478. </div>
  1479. {/block:IfNotHorizontal}
  1480.  
  1481. {block:IfHorizontal}
  1482.  
  1483.  
  1484.  
  1485. <!-- preset code to abide by pxu
  1486. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="9" style="height:{text:Horizontal Post Height}; width:auto; display:block;">
  1487. {block:Photos}
  1488. <div class="photo-data">
  1489. <div class="pxu-photo" style="height:{text:Horizontal Post Height};">
  1490. <img src="{PhotoURL-HighRes}" style="display:inline; width:auto; height:{text:Horizontal Post Height};" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  1491. </div>
  1492. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}">
  1493. </a>
  1494. </div>
  1495. {/block:Photos}
  1496. </div>
  1497.  
  1498. -->
  1499.  
  1500.  
  1501.  
  1502. <!--preset code to abide by pxu -->
  1503. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}" style="width:auto; height:auto; max-width:{text:Horizontal Post Height}; max-height:{text:Horizontal Post Height};" >
  1504. {block:Photos}
  1505. <div class="photo-data">
  1506. <div class="pxu-photo" style="max-width:{text:Horizontal Post Height}; " >
  1507. <img src="{PhotoURL-HighRes}" style="width:inherit; height:inherit; max-width:inherit; max-height:inherit; object-position:center center; object-fit:cover;" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  1508. </div>
  1509. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}">
  1510. </a>
  1511. </div>
  1512. {/block:Photos}
  1513. </div>
  1514.  
  1515.  
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521. {/block:IfHorizontal}
  1522. {/block:ifNotStackPhotoset}
  1523.  
  1524.  
  1525.  
  1526.  
  1527.  
  1528.  
  1529.  
  1530.  
  1531. {block:ifStackPhotoset}
  1532. {block:IndexPage}
  1533. <div class="photoset-wrap" >
  1534. {block:Photos}
  1535. <!-- <a href="#"> for some reason loads all images in photoset-->
  1536. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" onclick="Tumblr.Lightbox.init([{ width: {PhotoWidth-HighRes}, height: {PhotoHeight-HighRes}, low_res: '{PhotoURL-500}', high_res: '{PhotoURL-HighRes}' }]); $('body').toggleClass('tumblr_lightbox_active'); return false" {block:IfHorizontal}style="height:{text:Horizontal Post Height};
  1537. width:auto;"{/block:IfHorizontal} />
  1538. <!-- </a> -->
  1539. {/block:Photos}
  1540. </div>
  1541. {/block:IndexPage}
  1542. {/block:ifStackPhotoset}
  1543. {/block:Photoset}
  1544.  
  1545.  
  1546.  
  1547. {block:Quote}<i class="fa fa-quote-left" style="opacity:0.2;"></i>&nbsp;{Quote} &nbsp;<i class="fa fa-quote-right" style="opacity:0.2;" ></i>{/block:Quote}
  1548.  
  1549.  
  1550. {block:Link}<div class="link_url"> <a href="{URL}"><i class="fa fa-link"></i>{Name}</a></div>{/block:Link}
  1551.  
  1552.  
  1553.  
  1554.  
  1555. {block:Chat}
  1556. {block:Title}
  1557. <h3><a href="{Permalink}">{Title}</a></h3>
  1558. {/block:Title}
  1559.  
  1560. <ul class="chat" style="margin-left:-35px;">
  1561. {block:Lines}
  1562. <li class="{Alt} user_{UserNumber}">
  1563. {block:Label}
  1564. <span class="label">{Label}</span>
  1565. {/block:Label}{Line}
  1566. </li>
  1567. {/block:Lines}
  1568. </ul>
  1569. {/block:Chat}
  1570.  
  1571.  
  1572.  
  1573. {block:IfNotAudioShowAlbumArt}
  1574. {block:Audio}{AudioPlayerWhite}{/block:Audio}
  1575. {/block:IfNotAudioShowAlbumArt}
  1576.  
  1577. {block:IfAudioShowAlbumArt}
  1578. {block:AudioPlayer}
  1579.  
  1580. {block:AlbumArt}
  1581. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  1582. {/block:AlbumArt}
  1583.  
  1584. <div class="playerbuttonbg">
  1585. <div class="newplayerbutton">
  1586. <div class="playerbuttonhug">
  1587.  
  1588. {AudioPlayerWhite}
  1589.  
  1590. </div>
  1591. </div>
  1592. </div>
  1593.  
  1594. <div class="trackdetails">
  1595. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  1596. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  1597. {block:Album}Album: {Album}{/block:Album}<br/>
  1598. {PlayCountWithLabel}
  1599. </div>
  1600.  
  1601. {/block:AudioPlayer}
  1602. {/block:IfAudioShowAlbumArt}
  1603.  
  1604.  
  1605.  
  1606. {block:Video}
  1607. {Video-500}
  1608. {/block:Video}
  1609.  
  1610.  
  1611.  
  1612. {block:Answer} {Question} {Answer} {/block:Answer}
  1613.  
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619. <div id="caption">{Caption}</div>
  1620.  
  1621.  
  1622.  
  1623.  
  1624. </div> <!--box-->
  1625. {/block:IndexPage}
  1626.  
  1627.  
  1628.  
  1629.  
  1630.  
  1631.  
  1632.  
  1633.  
  1634.  
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643. {block:PermalinkPage}
  1644. <div class="permalink-post">
  1645.  
  1646. {block:Text}
  1647. <div class="permalink-text">
  1648. {Title}
  1649. {Body}
  1650. </div>
  1651. {/block:Text}
  1652.  
  1653. {block:Photo}
  1654. <img id ="{PhotoCount}" src="{PhotoURL-HighRes}" style="width:auto; height:auto; max-width:90vw; max-height:90vh; margin:auto; transform:translateY(calc((100vh - 100%)/2))"/>
  1655. {block:Photo}
  1656.  
  1657. {block:Photoset}
  1658. <center>
  1659. <div class="permalink-photoset" style=";" >
  1660.  
  1661. {block:Photos}
  1662. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"
  1663. id="counter" style="width:auto; height:auto; max-width:90vw; max-height:90vh; "
  1664. onClick="
  1665. var $next = $(this).next('img');
  1666. $(this).css('opacity','0');
  1667. $(this).css('z-index','-2');
  1668. $next.css('opacity','1');
  1669. $next.css('z-index','1');
  1670. if ($next.length == 0) {
  1671. $(this).parent().find('img:first-child').css('opacity','1');
  1672. $(this).parent().find('img:first-child').css('z-index','1');
  1673. };"
  1674. />
  1675.  
  1676. {/block:Photos}
  1677. <div style="position:fixed; margin:auto; left:0; right:0; bottom:3vh; opacity:0.2;"> {PhotoCount} </div>
  1678.  
  1679.  
  1680. </div>
  1681.  
  1682. </center>
  1683. <!-- <div style="width:300px; margin:auto;">{Photoset}</div> whole photoset-->
  1684. {block:Photoset}
  1685.  
  1686. {block:PostNotes}
  1687. {/block:PostNotes}
  1688.  
  1689.  
  1690. {block:NoteCount}<a style="position:fixed; margin:auto; left:0; right:0; bottom:3vh; opacity:0.2;" onClick="$('#info').fadeIn(500); return false;"> {NoteCount} </a> {/block:NoteCount}
  1691.  
  1692.  
  1693. <div id="info" class="hide" style="width:100vw; min-height:100vh; z-index:10000000; position:fixed; left:0; right:0; top:0; bottom:0; margin:auto; background:rgba({RGBcolor:Background},0.95);" onClick="$(this).fadeOut(500);" >
  1694. <center><div style="overflow-y: scroll; width: 35vw; height: 60vh; position: fixed; left: 0; right: 0; top: 0; bottom: 0; margin: auto; cursor: url('{image:Cursor}'), crosshair;" onClick="if(event.stopPropagation){event.stopPropagation();}event.cancelBubble=true;" >
  1695.  
  1696. {Caption}
  1697.  
  1698.  
  1699. {PostNotes-16}
  1700.  
  1701.  
  1702.  
  1703.  
  1704. </div></center>
  1705. </div>
  1706.  
  1707.  
  1708.  
  1709. </div> <!-- permalink post -->
  1710. {/block:PermalinkPage}
  1711.  
  1712.  
  1713.  
  1714.  
  1715.  
  1716. {/block:Posts}
  1717. </div> <!--content -->
  1718. </div> <!--content wrapper -->
  1719.  
  1720.  
  1721.  
  1722.  
  1723.  
  1724.  
  1725.  
  1726.  
  1727.  
  1728.  
  1729. {block:ifSidebar}
  1730. {block:IndexPage}
  1731.  
  1732. <div id="{select:Menu Styling}" {block:IfNotInfiniteScroll}class="fade-in"{/block:IfNotInfiniteScroll}>
  1733. {block:IfSidebarContent}
  1734. <center>
  1735. <div class="{select:Menu Styling}">
  1736.  
  1737. <center><img src="{PortraitURL-40}" class="portrait" {block:IfToggleSidebarWords}onClick=" $('.sidebar-words').fadeToggle('active'); "{/block:IfToggleSidebarWords} /></center>
  1738. <div class="sidebar-words {block:IfToggleSidebarWords} hide {/block:IfToggleSidebarWords}">
  1739.  
  1740. {Description}
  1741. <p>
  1742. <!--
  1743. <a href="{BlogURL}" style="font-size:11px;" title="home"> <i class="fa fa-home"></i> </a> &nbsp;
  1744. <a href="/archive"><i class="fa fa-calendar" title="archive"></i></a> &nbsp;
  1745. <a href="/"><i class="fa fa-camera-retro"></i></a> &nbsp;
  1746. <a href="/"><i class="fa fa-user" title="about"></i></a> &nbsp;
  1747. {block:AskEnabled}
  1748. <a href="/" title="ask" onClick="$('#ask_form').fadeIn(500); return false;"><i class="fa fa-question"></i></a>
  1749. {/block:AskEnabled}
  1750. -->
  1751.  
  1752.  
  1753. <p>
  1754. <input type="text" id="quicksearch" autocomplete="off" style="background:rgba({RGBcolor:Sidebar Background}, 0); color:#a8a8a8; text-align:center;" placeholder={text:Searchbar Greeting} />
  1755. </p>
  1756.  
  1757. {block:IfPostTypeFilter}
  1758. <div id="filters" style="display:inline;">
  1759. <a href="#" data-filter="*" title="all"><i class="fa fa-snowflake-o"></i></a> &nbsp;
  1760. <a href="#" data-filter=".text" title="texts"><i class="fa fa-font"></i></a> &nbsp;
  1761. <a href="#" data-filter=".photo, .photoset" title="photos"><i class="fa fa-camera-retro"></i></a> &nbsp;
  1762. <a href="#" data-filter=".quote" title="quotes"><i class="fa fa-quote-left"></i></a> &nbsp;
  1763. <a href="#" data-filter=".link" title="links"><i class="fa fa-link"></i></a> &nbsp;
  1764. <a href="#" data-filter=".chat" title="chats"><i class="fa fa-comments-o"></i></a> &nbsp;
  1765. <a href="#" data-filter=".audio" title="music"><i class="fa fa-music"></i></a> &nbsp;
  1766. <a href="#" data-filter=".video" title="videos"><i class="fa fa-video-camera"></i></a> &nbsp;
  1767. <a href="#" data-filter=".answer" title="q & a"><i class="fa fa-question"></i></a> &nbsp;
  1768. </div>
  1769. {/block:IfPostTypeFilter}
  1770.  
  1771. </p>
  1772. </div> <!-- sidebar words -->
  1773. </div> <!-- sidebar class -->
  1774. </center>
  1775. {/block:IfSidebarContent}
  1776. </div>
  1777.  
  1778. {block:IndexPage}
  1779. {/block:ifSidebar}
  1780.  
  1781.  
  1782.  
  1783.  
  1784.  
  1785.  
  1786.  
  1787.  
  1788. <div id="footer">
  1789. <div class="navigation">
  1790. {block:Pagination}
  1791. {block:NextPage}
  1792. <p id="page_nav">
  1793. <a id="next" href="{NextPage}" style="float:right; right:2px; bottom:50vh; position:fixed;" ><i class="fa fa-long-arrow-right"></i></a>
  1794. {/block:NextPage}
  1795. {block:PreviousPage}
  1796. <a href="{PreviousPage}" style="float:left; left:2px; bottom:50vh; position:fixed;" ><i class="fa fa-long-arrow-left"></i></a>
  1797. </p>
  1798. {/block:PreviousPage}
  1799. {/block:Pagination}
  1800. </div>
  1801. {block:IfInfiniteScroll}
  1802. {block:IfManualInfiniteScroll}
  1803. {block:Pagination}
  1804. <div class="pagination">
  1805. <center><button class="load-more" >load more</button> </center>
  1806. </div>
  1807. {/block:Pagination}
  1808. {/block:IfManualInfiniteScroll}
  1809. {/block:IfInfiniteScroll}
  1810.  
  1811. </div> <!--footer -->
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817. {block:PermalinkPage}
  1818. {block:PermalinkPagination}
  1819. <a href="{BlogURL}" style="position:fixed; top:5px; left:5px; opacity:0.5;"> <i class="fa fa-home"></i> </a>
  1820.  
  1821. {block:PreviousPost} <a href="{PreviousPost}" style="float:right; right:2px; bottom:50vh; position:fixed; font-size:12px; opacity:0.5;"><i class="fa fa-long-arrow-right" ></i></a>{/block:PreviousPost}
  1822. {block:NextPost}<a href="{NextPost}" style="float:left; left:2px; bottom:50vh; position:fixed; font-size:12px; opacity:0.5;"><i class="fa fa-long-arrow-left"></i></a> {/block:NextPost}
  1823. {/block:PermalinkPagination}
  1824. {block:PermalinkPage}
  1825.  
  1826. <div id="ask_form" class="hide" style="width:100vw; min-height:100vh; z-index:10000000; position:fixed; left:0; right:0; top:0; bottom:0; margin:auto; background:rgba({RGBcolor:Background},0.7) url('{image:Ask Background}'); background-position:center center; background-size:cover;" onClick="$(this).fadeOut(500);" >
  1827. <iframe frameborder="0" scrolling="no" src="https://www.tumblr.com/ask_form/{name}.tumblr.com" style="background:rgba({RGBcolor:Background},0.7); overflow: hidden; width: 60vw; height: 190px; position: fixed; left: 0; right: 0; top: 0; bottom: 0; margin: auto; cursor: url('{image:Cursor}'), crosshair;"></iframe>
  1828. </div>
  1829.  
  1830.  
  1831.  
  1832.  
  1833. </div> <!--wrapper-->
  1834.  
  1835.  
  1836.  
  1837.  
  1838.  
  1839.  
  1840.  
  1841.  
  1842.  
  1843. </body>
  1844. </html>
Add Comment
Please, Sign In to add comment