Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <!---
- AND YOU WILL SHED TEARS OF SCARLET by tobirama
- take codes from here, i'll know and i'll execute you like how tobirama did to izuna.
- enjoy the theme, you may change the credit text to whatever you want, but don't [re]move it.
- sidebar images have widths 300px
- character codes for floating text can be selected here! you must use HTML entity and copy only the numbers.
- https://www.htmlsymbols.xyz/
- photosets
- https://annasthms.github.io/photosets/
- if you need help with this just message me.
- --->
- <head>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
- <!--
- NPF IMAGES READJUSTMENT | @glenthemes
- v2.0 [last updated: 2021-06-03]
- -->
- <link href="//glen-npf-2020.glitch.me/npf-override.css" rel="stylesheet">
- <script src="//glen-npf-2020.glitch.me/npf-evenize.js"></script>
- <style type="text/css">
- :root {
- --NPF-Image-Spacing:4px;
- --NPF-Bottom-Gap-From-Captions:1em;
- }
- </style>
- {block:IfBlobs}
- <script type="text/javascript">
- // <![CDATA[
- var colour="{color:blob color}"; // what colour are the blobs
- var speed=75; // speed of animation, lower is faster
- var blobs=10; // how many blobs are in the jar
- var charc=String.fromCharCode(9834); // you must use HTML entity
- /***************************\
- * Blobs in a Jar Effect *
- *(c)2012-13 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- \***************************/
- var div;
- var xpos=new Array();
- var ypos=new Array();
- var zpos=new Array();
- var dx=new Array();
- var dy=new Array();
- var dz=new Array();
- var blob=new Array();
- var swide=800;
- var shigh=600;
- var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
- function addLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addLoadEvent(fill_the_jar);
- function fill_the_jar() {
- var i, dvs;
- div=document.createElement('div');
- dvs=div.style;
- dvs.position='fixed';
- dvs.left='0px';
- dvs.top='0px';
- dvs.width='1px';
- dvs.height='1px';
- document.body.appendChild(div);
- set_width();
- for (i=0; i<blobs; i++) {
- add_blob(i);
- jamjar(i);
- }
- }
- function add_blob(ref) {
- var dv, sy;
- dv=document.createElement('div');
- sy=dv.style;
- sy.position='absolute';
- sy.textAlign='center';
- if (ie_version && ie_version<10) {
- sy.fontSize="10px";
- sy.width="100px";
- sy.height="100px";
- sy.paddingTop="40px";
- sy.color=colour;
- dv.appendChild(document.createTextNode(charc));
- }
- else if (ie_version) {
- sy.fontSize="1px";
- sy.width="0px";
- sy.height="0px";
- }
- else {
- dv.appendChild(document.createTextNode(charc));
- sy.color='rgba(0,0,0,0)';
- }
- ypos[ref]=Math.floor(shigh*Math.random());
- dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
- xpos[ref]=Math.floor(swide*Math.random());
- dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
- zpos[ref]=Math.random()*20;
- dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
- blob[ref]=dv;
- div.appendChild(blob[ref]);
- set_blob(ref);
- }
- function rejig(ref, xy) {
- if (xy=='y') {
- dx[ref]=(0.5+Math.random())*sign(dx[ref]);
- dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
- }
- else {
- dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
- dy[ref]=(0.5+Math.random())*sign(dy[ref]);
- }
- }
- function sign(a) {
- if (a<0) return (-2);
- else if (a>0) return (2);
- else return (0);
- }
- function set_blob(ref) {
- var sy;
- sy=blob[ref].style;
- sy.top=ypos[ref]+'px';
- sy.left=xpos[ref]+'px';
- if (ie_version && ie_version<10) {
- sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
- sy.fontSize=30-zpos[ref]+"px";
- }
- else if (ie_version) {
- sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
- }
- else {
- sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
- sy.fontSize=40+zpos[ref]+'px';
- }
- }
- function jamjar(ref) {
- if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
- ypos[ref]+=dy[ref];
- if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
- xpos[ref]+=dx[ref];
- if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
- zpos[ref]+=dz[ref];
- set_blob(ref);
- setTimeout("jamjar("+ref+")", speed);
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- // ]]>
- </script>
- {/block:IfBlobs}
- <title>{Title}</title>
- <link rel="icon" href="{image:FavIcon}" type="image/gif" >
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <!--- Add Custom Fonts Here (like Google Fonts) --->
- <!--- Then add Font name to the 'Font Family' in Theme Options Area --->
- <meta name="image:favicon" content=""/>
- <meta name="image:sidebar" content="https://i.imgur.com/QwJKlMH.png"/>
- <meta name="image:sidebar2" content="https://i.imgur.com/43EZhSO.png"/>
- <meta name="image:title" content="https://i.imgur.com/aOhswkJ.png"/>
- <meta name="image:desc" content="https://i.imgur.com/aOhswkJ.png"/>
- <meta name="image:link pxl" content="https://i.imgur.com/KuwWliP.gif"/>
- <meta name="image:img under desc1" content="https://i.imgur.com/0Kh47Yx.png"/>
- <meta name="image:img under desc2" content="https://i.imgur.com/g0deNUF.gif"/>
- <meta name="image:background" content=""/>
- <meta name="image:posts" content=""/>
- <meta name="image:perma pxl" content="https://i.imgur.com/vW3p9R7.gif"/>
- <meta name="image:cursor" content="https://i.imgur.com/WGDM5yx.png"/>
- <meta name="color:background" content="#F0F0F0">
- <meta name="color:posts" content="#fff">
- <meta name="color:shadow" content="#bbb">
- <meta name="color:desc bg" content="#fff">
- <meta name="color:description font" content="#000">
- <meta name="color:description glow outline" content="#000">
- <meta name="color:sidebar links" content="#56bf4b">
- <meta name="color:sidebar links glow outline" content="#56bf4b">
- <meta name="color:font color" content="#000">
- <meta name="color:font glow outline" content="#000">
- <meta name="color:links" content="#56bf4b">
- <meta name="color:links hover" content="#bbb">
- <meta name="color:links glow outline" content="#56bf4b">
- <meta name="color:title" content="#000">
- <meta name="color:title glow outline" content="#fff">
- <meta name="color:permalink color" content="#000">
- <meta name="color:permalink glow outline" content="#000">
- <meta name="color:tooltip color" content="#000">
- <meta name="color:tooltip background" content="#ccc">
- <meta name="color:sidebar border" content="#000">
- <meta name="color:post border" content="#000">
- <meta name="color:blob color" content="#56bf4b">
- <meta name="select:post border" content="solid"/>
- <meta name="select:post border" content="dashed"/>
- <meta name="select:post border" content="dotted"/>
- <meta name="select:post border" content="double"/>
- <meta name="select:post border" content="inset"/>
- <meta name="select:post border" content="outset"/>
- <meta name="select:post border" content="ridge"/>
- <meta name="select:post border" content="groove"/>
- <meta name="select:sidebar border" content="solid"/>
- <meta name="select:sidebar border" content="dashed"/>
- <meta name="select:sidebar border" content="dotted"/>
- <meta name="select:sidebar border" content="double"/>
- <meta name="select:sidebar border" content="inset"/>
- <meta name="select:sidebar border" content="outset"/>
- <meta name="select:sidebar border" content="ridge"/>
- <meta name="select:sidebar border" content="groove"/>
- <meta name="text:post border" content="1"/>
- <meta name="text:sidebar border" content="1"/>
- <meta name="text:font family" content="malgun gothic">
- <meta name="text:post text size" content="13">
- <meta name="text:title font" content="bebop">
- <meta name="text:title" content="AND YOU WILL SHED TEARS OF SCARLET...">
- <meta name="text:title size" content="30">
- <meta name="text:description" content="SEE YOU SPACE COWBOY...">
- <meta name="text:description2" content="SEE YOU COWGIRL, SOMEDAY, SOMEWHERE!">
- <meta name="text:description size" content="13">
- <meta name="text:sidebar link size" content="13">
- <meta name="if:blobs" content="0"/>
- <meta name="if:shadow" content="0"/>
- <meta name="if:round border" content="0"/>
- <meta name="if:hide img border" content="0"/>
- <meta name="if:bold links" content="0"/>
- <meta name="if:italic links" content="0"/>
- <meta name="if:links underline" content="0"/>
- <meta name="if:custom cursor" content="0" />
- <meta name="if:tile background" content="0" />
- <meta name="if:hide title" content="0"/>
- <meta name="if:glow text" content="0" />
- <meta name="if:outline text" content="0" />
- <meta name="if:hide caption" content="0"/>
- <meta name="if:hide tags" content="0" />
- <meta name="if:dark tooltip" content="0"/>
- <meta name="if:redirect" content="0" />
- <meta name="text:redirect link" content="/tagged/0">
- <meta name="text:link 1" content="000001">
- <meta name="text:link 1 URL" content="/">
- <meta name="text:link 2" content="000002">
- <meta name="text:link 2 URL" content="/">
- <meta name="text:link 3" content="000003">
- <meta name="text:link 3 URL" content="/">
- <meta name="text:link 4" content="000004">
- <meta name="text:link 4 URL" content="/">
- <style type="text/css">
- @font-face {font-family:"bebop"; src: url("https://dl.dropboxusercontent.com/s/j3pnzh7uoqsf6ht/Cheltenham%20Bold%20Italic.otf?dl=0")}
- ::-moz-selection {
- background: {color:links};
- color: {color:links hover};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:Links Hover},
- 0 0 2px {color:Links Hover};
- {/block:IfGlowText}}
- ::selection {
- background: {color:links};
- color: {color:links hover};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:Links Hover},
- 0 0 2px {color:Links Hover};
- {/block:IfGlowText}}
- #s-m-t-tooltip {
- z-index: 999999999;
- background-color: rgba(255, 255, 255, 0.4);
- {block:IfDarkTooltip}background-color: rgba(0, 0, 0, 0.4);{/block:IfDarkTooltip}
- filter: drop-shadow(0 0 2px {color:tooltip background});
- {block:IfRoundBorder}
- border-radius: 10px;
- {/block:IfRoundBorder}
- color: {color:tooltip color};
- font-size: {text:post text size}px;
- text-align: center;
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:tooltip color},
- 0 0 3px {color:tooltip color};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:font glow outline}, 0 1px {color:font glow outline}, 1px 0 {color:font glow outline}, 0 -1px {color:font glow outline};
- {/block:IfOutlineText}
- transition: all 0.3s ease-out;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- text-transform: normal;
- max-width: 300px;
- display: block;
- word-wrap: break-word;
- padding: 5px 7px 5px 7px;
- margin: -30px 0px 10px 20px;}
- body {
- background: {color:background};
- background-image: url({image:Background});
- background-attachment: fixed;
- {block:IfNotTileBackground}
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- {/block:IfNotTileBackground}
- font-family: '{text:font family}';
- font-size: {text:post text size}px;
- color: {color:font color};
- line-height: 120%;
- word-wrap: break-word;
- overflow-x:hidden;
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:font glow outline}, 0 0 3px {color:font glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:font glow outline}, 0 1px {color:font glow outline}, 1px 0 {color:font glow outline}, 0 -1px {color:font glow outline};
- {/block:IfOutlineText}}
- {block:IfCustomCursor}
- body, *, a, a:hover { cursor:url({image:cursor}), auto;}
- {/block:IfCustomCursor}
- p {margin: 0px;}
- ul {list-style: square;}
- img {max-width: 100%;}
- h1 {line-height: 150%;}
- iframe, img, embed, object, video {max-width: 100%;}
- a:link, a:active, a:visited {
- {block:IfBoldLinks}font-weight: bold;{/block:IfBoldLinks}
- {block:IfItalicLinks}
- font-style: italic;{/block:IfItalicLinks}
- color: {color:links};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:links glow outline}, 0 0 3px {color:links glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:links glow outline}, 0 1px {color:links glow outline}, 1px 0 {color:links glow outline}, 0 -1px {color:links glow outline};
- {/block:IfOutlineText}
- {block:IfNotLinksUnderline}
- text-decoration: none;{/block:IfNotLinksUnderline}
- {block:IfLinksUnderline}
- text-decoration: underline;
- {/block:IfLinksUnderline}
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;}
- a:hover {
- color:transparent;
- text-shadow: 0 0 4px {color:Links Hover};
- text-decoration: none;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- {block:IfGlowText}
- text-shadow: 0 0 5px {color:Links Hover},
- 0 0 5px {color:Links Hover};
- {/block:IfGlowText}}
- ::-webkit-scrollbar-track {
- background-color: {color:background};
- }
- ::-webkit-scrollbar {
- width: 10px;}
- ::-webkit-scrollbar-thumb {
- background-color: {color:links};}
- .desc::-webkit-scrollbar-track {
- background-color: {color:desc bg};
- }
- .desc::-webkit-scrollbar {
- width: 5px;}
- .desc::-webkit-scrollbar-thumb {
- background-color: {color:sidebar links};}
- #content {
- margin: 50px auto;
- width: 800px;}
- #container {
- margin: auto;
- }
- #sidebar {
- color: {color:font color};
- background-color: transparent;
- position: fixed;
- margin-left: -200px;
- height: auto;
- width: 300px;
- padding: 0;}
- #sidebar2 {
- color: {color:font color};
- background-color: transparent;
- position: fixed;
- margin-left: 700px;
- height: auto;
- width: 300px;
- padding: 0;}
- .sb img {
- {block:IfRoundBorder}border-radius: 5px;{/block:IfRoundBorder}
- {block:IfNotHideImgBorder}border: {text:sidebar border}px {select:sidebar border} {color:sidebar border};{block:IfNotHideImgBorder}
- {block:IfHideImgBorder}border: 0;{/block:IfHideImgBorder}
- display:block;
- }
- .desc {
- padding: 5px;
- width: 97%;
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- margin-top: 20px;
- background-image: url({image:desc});
- background-color: {color:desc bg};
- border: {text:sidebar border}px {select:sidebar border} {color:sidebar border};
- text-align: center;
- color: {color:description font};
- font-size: {text:description size}px;
- line-height: {text:description size}px;
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:description glow outline},
- 0 0 3px {color:description glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:description glow outline}, 0 1px {color:description glow outline}, 1px 0 {color:description glow outline}, 0 -1px {color:description glow outline};
- {/block:IfOutlineText}
- max-height: 100px;
- overflow: auto;
- overflow-x: hidden;}
- .linkz {
- font-size: {text:sidebar link size}px;
- line-height: {text:sidebar link size}px;}
- .link {
- width: 100%;
- max-height: 0;
- line-height:130%;
- text-align: center;
- -webkit-transition: all 0.4s ease;
- transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -o-transition: all 0.4s ease;
- opacity:0;
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- background-image: url({image:desc});
- background-color: {color:desc bg};
- background-attachment: fixed;
- border: {text:sidebar border}px {select:sidebar border} {color:sidebar border};}
- .link img {vertical-align: bottom;}
- .linkz:hover .link{
- max-height: 150px;
- opacity: 1;
- margin-top: 20px;
- -webkit-transition: all 0.4s ease;
- transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -o-transition: all 0.4s ease;}
- .linkz a {
- color: {color:sidebar links};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:sidebar links glow outline},
- 0 0 3px {color:sidebar links glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:sidebar links glow outline}, 0 1px {color:sidebar links glow outline}, 1px 0 {color:sidebar links glow outline}, 0 -1px {color:sidebar links glow outline};
- {/block:IfOutlineText}}
- .linkz a {color: {color:sidebar links};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:sidebar links glow outline},
- 0 0 3px {color:sidebar links glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:sidebar links glow outline}, 0 1px {color:sidebar links glow outline}, 1px 0 {color:sidebar links glow outline}, 0 -1px {color:sidebar links glow outline};
- {/block:IfOutlineText}}
- .linkz a:hover {
- color:transparent;
- text-shadow: 0 0 5px {color:links hover},
- 0 0 5px {color:links hover};}
- .title {
- font-family: {text:title font};
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- font-size:{text:title size}px;
- margin-bottom: 20px;
- padding: 0;
- background-image: url({image:title});
- background-attachment: fixed;
- background-color: {color:desc bg};
- border: {text:sidebar border}px {select:sidebar border} {color:sidebar border};}
- .title a {
- color: {color:title};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:title glow outline},
- 0 0 3px {color:title glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:title glow outline}, 0 1px {color:title glow outline}, 1px 0 {color:title glow outline}, 0 -1px {color:title glow outline};
- {/block:IfOutlineText}}
- .title a:hover {
- color:transparent;
- text-shadow: 0 0 5px {color:links hover},
- 0 0 5px {color:links hover};}
- .li {
- padding: 10px 0px 0px 0px;
- height: {text:title size}px;}
- .text {
- width: 490px;
- background-color: {color:posts};
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- padding: 5px;
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- border: {text:post border}px {select:post border} {color:post border};}
- .posts {
- background-color: transparent;
- margin: auto;
- width: 500px;
- margin-bottom: 60px;
- text-align: left;
- position: relative;}
- .posts blockquote {
- margin: 0 0 5px 20px;
- padding: 0 0 0 5px;
- border-left: 1px solid {color:links};}
- .pic img {
- {block:IfHideImgBorder}border: 0;{/block:IfHideImgBorder}
- {block:IfNotHideImgBorder}
- border: {text:post border}px {select:post border} {color:post border};
- {block:IfNotHideImgBorder}
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- display: block;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;}
- .pic img:hover {
- filter: drop-shadow(-7px -7px 4px {color:shadow});
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;}
- [photoset-layout] {
- {block:IfHideImgBorder}border: 0;{/block:IfHideImgBorder}
- {block:IfNotHideImgBorder}
- border: {text:post border}px {select:post border} {color:post border};
- {block:IfNotHideImgBorder}
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;}
- [photoset-layout]:hover {
- filter: drop-shadow(-7px -7px 4px {color:shadow});
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;}
- .permalinky a {
- color: {color:permalink color};
- {block:IfGlowText}
- text-shadow: 0 0 2px {color:permalink glow outline},
- 0 0 3px {color:permalink glow outline};
- {/block:IfGlowText}
- {block:IfOutlineText}
- text-shadow: -1px 0 {color:permalink glow outline},
- 0 1px {color:permalink glow outline},
- 1px 0 {color:permalink glow outline},
- 0 -1px {color:permalink glow outline};
- {/block:IfOutlineText}}
- .permalinky a:hover {
- color:transparent;
- text-shadow: 0 0 5px {color:links hover},
- 0 0 5px {color:links hover};}
- .permalinky {
- text-align: center;
- margin-top: 20px;}
- .permalinky img {vertical-align: middle;}
- .tags {
- max-height: 0;
- line-height:130%;
- text-align:center;
- -webkit-transition: all 0.4s ease;
- transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -o-transition: all 0.4s ease;
- opacity:0;}
- .permalinky:hover .tags{
- max-height: 250px;
- opacity: 1;
- -webkit-transition: all 0.4s ease;
- transition: all 0.4s ease;
- -moz-transition: all 0.4s ease;
- -o-transition: all 0.4s ease;}
- .wrapper{
- display:table;}
- .box {
- display:table-cell;
- padding:0px;
- background-color: {color:posts};
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- padding: 10px;
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- border: {text:post border}px {select:post border} {color:post border};
- width: 100%;}
- #permanotes {
- margin-top: 20px;
- margin-bottom: 10px;}
- #permanotes ol.notes {
- list-style-type: none;
- text-align: left;
- margin: 0;
- padding: 0;
- overflow: scroll;
- overflow-x: hidden;
- max-height: 400px;
- background-color: {color:posts};
- padding: 10px;
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- border: {text:post border}px {select:post border} {color:post border};}
- #permanotes img.avatar {
- margin-right: 10px;
- display: inline;
- width: 16px;
- height: 16px;}
- .pagination {
- margin: auto;
- width: 100px;
- background-color: {color:posts};
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- padding: 10px;
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- border: {text:post border}px {select:post border} {color:post border};
- text-align: center;
- margin-bottom: 50px;}
- .quote {
- text-align: justify;
- font-style: italic;
- font-weight: bold;
- font-size: 140%;
- line-height: 130%;}
- .source {
- text-align: right;}
- .spotify_audio_player {
- height:80px!important;
- width:100%!important;}
- .soundcloud_audio_player {
- height:150px!important;
- width:100%!important;}
- .trackback {
- position: absolute;
- left: 33px;
- top: 33px;
- width: 19px;
- height: 19px;
- background-color: #fff;
- padding: 10px;
- opacity: .4;}
- .pressplay{
- position: relative;
- width: 25px;
- height: 25px;
- overflow: hidden;
- left: -6px;
- top: -3px;}
- .albumpic {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 100px;
- height: 100px;
- }
- .albumpic img {
- width: 100%;
- height: auto;
- border: 1px solid {color:font color};
- {block:IfRoundBorder}
- border-radius: 5px;
- {/block:IfRoundBorder}
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- }
- .trackinfo {
- width: auto;
- display:inline-block;
- margin-left: 120px;
- min-height: 85px;}
- .audiowrapper {
- position: relative;
- display:inline-block;
- margin-bottom: 15px;
- }
- #second {
- position: fixed;
- bottom: 10px;
- left: 10px;
- font-size: 20px;}
- #second a {text-decoration: none; font-weight: normal; font-style: normal;}
- .pxu-photo {
- {block:IfShadow}
- filter: drop-shadow(7px 7px 4px {color:shadow});{/block:IfShadow}
- outline: {text:post border}px {select:post border} {color:post border};
- margin-left: 3px;
- }
- </style>
- {block:IfRedirect}
- <script>
- if(window.location.pathname == '/') location.replace('{text:Redirect Link}');
- </script>
- {block:IfRedirect}
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("[title]").style_my_tooltips();
- });
- })(jQuery);
- </script>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.9/SmoothScroll.js"></script>
- <link href="https://static.tumblr.com/0podkko/oDSpg7y88/photosets.css" rel="stylesheet">
- <script>
- function gatherData(images, arr) {
- for (let i = 0; i < images.length; i++) {
- let currentData = {
- "width": images[i].getAttribute('data-width'),
- "height": images[i].getAttribute('data-height'),
- "low_res": images[i].getAttribute('data-lowres'),
- "high_res": images[i].getAttribute('data-highres')
- };
- arr.push(currentData);
- }
- }
- function getIndex(elem) {
- let i = 0;
- while( (elem = elem.previousElementSibling) != null ) i++;
- return i;
- }
- function lightbox(elem) {
- let currentPhotoset = elem.parentNode;
- let photosetPhotos = currentPhotoset.getElementsByTagName('div');
- let data = [];
- gatherData(photosetPhotos, data);
- Tumblr.Lightbox.init(data, getIndex(elem) + 1);
- }
- </script>
- </head>
- <div id="content">
- <div id="sidebar">
- {block:ifNotHideTitle}
- <div class="title"><marquee class="li" scrollamount="8" direction="left" onmouseover="stop()" onmouseout="start()"><a href="/">{text:title}</marquee></a></div>
- {/block:ifNotHideTitle}
- <div class="sb"><a href="/"><img src="{image:sidebar}"></a></div>
- <div class="linkz">
- <div class="desc">{text:description}</div>
- <div class="link">
- <p style="text-align: right;">
- <a href="{text:link 1 URL}">{text:link 1}</a> <img src="{image:link pxl}"><br>
- <a href="{text:link 2 URL}">{text:link 2}</a> <img src="{image:link pxl}"></p>
- </div></div>
- <center><img src="{image:img under desc1}" style="margin-top: 20px;"></center>
- </div>
- <div id="sidebar2">
- {block:ifNotHideTitle}
- <div class="title"><marquee class="li" scrollamount="8" direction="left" onmouseover="stop()" onmouseout="start()"><a href="/">{text:title}</marquee></a></div>
- {/block:ifNotHideTitle}
- <div class="sb"><a href="/"><img src="{image:sidebar2}"></a></div>
- <div class="linkz">
- <div class="desc">{text:description2}</div>
- <div class="link">
- <p style="text-align: left;"><img src="{image:link pxl}"> <a href="{text:link 3 URL}">{text:link 3}</a>
- <br><img src="{image:link pxl}"> <a href="{text:link 4 URL}">{text:link 4}</a></p>
- </div></div>
- <center><img src="{image:img under desc2}" style="margin-top: 20px;"></center>
- </div>
- </div>
- <div id="container">
- {block:Posts}
- <div class="posts">
- {block:Text}<div class="text">
- {block:Title}<a href="{Permalink}">{Title}</a>{/block:Title}
- {Body}</div>
- {/block:Text}
- {block:Quote}
- <div class="text"><div class="quote">"{Quote}"</div>
- {block:Source}<div class="source">— {Source}</div>{/block:Source}</DIV>
- {/block:Quote}
- {block:Link}
- <div class="text"><big><a href="{URL}">{Name}</a></big>
- {block:Description}{Description}{/block:Description}</div>
- {/block:Link}
- {block:Chat}
- <div class="text">{block:Title}{Title}{/block:Title}
- {block:Lines}
- <div class="{Alt} user_{UserNumber}">
- {block:Label}{Label}{/block:Label} {Line}
- </div>
- {/block:Lines}</div>
- {/block:Chat}
- {block:Answer}
- <div class="wrapper" style="width: 100%">
- <div class="box" style="width: 30%; text-align: center; background: {color:ask icon bg};">
- {Asker}<br><img src="{AskerPortraitURL-96}" style="margin: 10px;">
- </div>
- <div class="box" style="padding: 0px; border-left: 0; text-align: center;">
- <div class="q" style=" padding-bottom: 10px;">{Question}</div>
- <p style="padding-bottom: 5px; border-top: {text:post border}px {select:post border} {color:post border}">{Answer}</p></div>
- </div>
- {/block:Answer}
- {block:Photo}
- <div class="pic">
- {block:IndexPage}<a href="{Permalink}"><img src="{PhotoURL-500}"></a>{/block:IndexPage}
- {block:PermalinkPage}<a href="{LinkURL}"><img src="{PhotoURL-500}"></a>{/block:PermalinkPage}
- </div>
- {/block:Photo}
- {block:Photoset}
- <div class="photoset-grid" photoset-layout="{PhotosetLayout}">{block:Photos}<div data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}" data-lowres="{PhotoURL-500}" data-highres="{PhotoURL-HighRes}" onclick="lightbox(this)"><img src="{PhotoURL-HighRes}" /></div>{/block:Photos}</div>
- {/block:Photoset}
- {block:Video}
- {block:IfNot250Posts}{Video-500}{/block:IfNot250Posts}
- {block:If250Posts}{Video-250}{/block:If250Posts}
- {/block:Video}
- {block:AudioPlayer}
- <div class="audiowrapper">
- {block:AlbumArt}
- <div class="albumpic"><img src="{AlbumArtURL}"></div>
- {/block:AlbumArt}
- <div class="trackback">
- <div class="pressplay">
- {AudioPlayer}
- </div></div>
- <div class="trackinfo">
- {block:TrackName}{TrackName}{/block:TrackName}<br>
- {block:Artist}<b>{Artist}</b>{/block:Artist}<br>
- {block:Album}<i>{Album}</i>{/block:Album}<br>
- </div></div>
- {block:AudioEmbed}{AudioEmbed-500}{/block:AudioEmbed}
- {/block:AudioPlayer}
- {block:ifNotHideCaption}
- {block:Caption}<div class="text" style="margin-top: 30px;">{Caption}</div>{/block:Caption}
- {/block:ifNotHideCaption}
- {block:IndexPage}<div class="permalinky">
- <a href="{Permalink}"> {ShortMonth} {ShortYear}</a> <img src="{image:perma pxl}" style="padding: 0px 10px 0 10px;"> <a href="{ReblogURL}" data-toggle="tooltip" title="Reblog?">{NoteCount}N</a>
- {block:ifNotHideTags}
- <div class="tags">
- {block:HasTags}{block:Tags}
- <a href="{TagURL}">{Tag}</a>
- {/block:Tags}{/block:HasTags}</div>
- {/block:ifNotHideTags}
- </div>{/block:IndexPage}
- {block:PermalinkPage}
- {block:ifHideCaption}
- {block:Caption}{Caption}{/block:Caption}
- {/block:ifHideCaption}
- <p style="text-align: left;">
- {block:NoteCount}<a href="{Permalink}">{NoteCount}N</a>{/block:NoteCount}
- {block:RebloggedFrom}
- — <a href="{ReblogParentURL}" data-toggle="tooltip" title="via">{ReblogParentName}</a>{/block:RebloggedFrom}{block:ContentSource}/<a href="{SourceURL}" data-toggle="tooltip" title="source">{SourceTitle}</a><br>
- {/block:ContentSource}
- {block:HasTags}{block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}<br>{/block:HasTags}
- </p>
- {block:NoteCount}<div id="permanotes">
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- </div>{/block:NoteCount}
- {/block:PermalinkPage}
- </div>
- {/block:Posts}
- {block:IndexPage}<div class="pagination">
- {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">−</a>{/block:PreviousPage}
- {block:NextPage}
- <a href="{NextPage}">+</a>{/block:NextPage}{/block:Pagination}
- </div>{/block:IndexPage}
- <div id="second"><a href="https://tobirama.tumblr.com/" data-toggle="tooltip" title="AND YOU WILL SHED TEARS OF SCARLET by @tobirama">⬖</a></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement