Advertisement
yLii

Infinite Isotope 182

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