Advertisement
yLii

Infinite Isotope 163

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