yLii

Infinite Isotope 222 ALL PHOTOSETS WORK

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