Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <!---
- I LOVE OBITO UCHIHA! THEME - updated 2/27/2021
- by @ps1
- ____ ____ ____
- ||P |||S |||1 ||
- ||__|||__|||__||
- |/__\|/__\|/__\|
- IMPORTANT NOTES:
- - when you are moving your title, the larger the number,
- the lower your title gets.
- - character codes for floating text can be selected here!
- https://www.htmlsymbols.xyz/
- IF YOU NEED HELP DO NOT HESITATE TO MESSAGE ME!
- Please let me know about any bugs as well!
- --->
- <head><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}
- {block:IfFloatingText}
- <script type="text/javascript">
- // <![CDATA[
- var colour="{color:floating text}"; // 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(9825); // 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:IfFloatingText}
- {block:IfRedirect}
- <script>
- if(window.location.pathname == '/') location.replace('{text:Redirect Link}');
- </script>
- {block:IfRedirect}
- <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.9/SmoothScroll.js"></script>
- <!--- Add Custom Fonts Here (like Google Fonts) --->
- <!--- Then add Font name to the 'Font Family' in Theme Options Area --->
- <meta name="image:favicon" content="https://i.imgur.com/Kg99yAx.gif"/>
- <meta name="image:sidebar" content="https://i.imgur.com/6BLzut4.png"/>
- <meta name="image:sidebar background" content=""/>
- <meta name="image:background" content=""/>
- <meta name="image:post background" content=""/>
- <meta name="image:cursor" content="https://i.imgur.com/dyzqzjw.png"/>
- <meta name="image:sticker" content="https://i.imgur.com/urkCSQt.gif"/>
- <meta name="color:background" content="#000">
- <meta name="color:posts" content="#000">
- <meta name="color:tooltip bg" content="#000">
- <meta name="color:tooltip font" content="#fff">
- <meta name="color:tooltip glow outline" content="#fff">
- <meta name="color:font color" content="#fff">
- <meta name="color:font glow outline" content="#c82319">
- <meta name="color:title color" content="#fff">
- <meta name="color:title glow outline" content="#c82319">
- <meta name="color:links" content="#c82319">
- <meta name="color:links hover" content="#ff6200">
- <meta name="color:links glow outline" content="#fff">
- <meta name="color:floating text" content="#fff">
- <meta name="color:gradient text 1" content="#c82319">
- <meta name="color:gradient text 2" content="#ff6200">
- <meta name="color:post glow 1" content="#000">
- <meta name="color:post glow 2" content="#c82319">
- <meta name="color:post glow 3" content="#ff6200">
- <meta name="color:post glow 4" content="#000">
- <meta name="color:post glow 5" content="#c82319">
- <meta name="color:post glow 6" content="#ff6200">
- <meta name="color:scrollbar 1" content="#c82319">
- <meta name="color:scrollbar 2" content="#ff6200">
- <meta name="color:border" content="#c82319">
- <meta name="color:gradient border 1" content="#c82319">
- <meta name="color:gradient border 2" content="#ff6200">
- <meta name="select:border" content="solid"/>
- <meta name="select:border" content="dashed"/>
- <meta name="select:border" content="dotted"/>
- <meta name="select:border" content="double"/>
- <meta name="select:border" content="inset"/>
- <meta name="select:border" content="outset"/>
- <meta name="select:border" content="ridge"/>
- <meta name="select:border" content="groove"/>
- <meta name="text:border size" content="2"/>
- <meta name="text:title" content="I LOVE OBITO">
- <meta name="text:move title" content="0">
- <meta name="text:description" content="The moment people come to know love, they run the risk of carrying hate.">
- <meta name="text:sidebar tooltip text" content="♥">
- <meta name="text:font family" content="times">
- <meta name="text:font size" content="26">
- <meta name="text:title font" content="times">
- <meta name="text:title size" content="26">
- <meta name="text:move title" content="50">
- <meta name="text:redirect link" content="tagged/TAGTEXT">
- <meta name="text:link spacer" content=" ">
- <meta name="text:link 1" content="I">
- <meta name="text:link 1 URL" content="/">
- <meta name="text:link 2" content="II">
- <meta name="text:link 2 URL" content="/">
- <meta name="text:link 3" content="III">
- <meta name="text:link 3 URL" content="/">
- <meta name="text:link 4" content="IV">
- <meta name="text:link 4 URL" content="/">
- <meta name="if:custom cursor" content="0" />
- <meta name="if:no post padding" content="0" />
- <meta name="if:round border" content="0" />
- <meta name="if:redirect" content="0" />
- <meta name="if:hide title" content="0" />
- <meta name="if:hide caption" content="0"/>
- <meta name="if:hide notes" content="0"/>
- <meta name="if:hide tags" content="0" />
- <meta name="if:tile background" content="0" />
- <meta name="if:floating text" content="0" />
- <meta name="if:glow border" content="0"/>
- <meta name="if:250px" content="0"/>
- <meta name="if:400px" content="0"/>
- <meta name="if:shakey title" content="1" />
- <meta name="if:gradient border" content="0"/>
- <meta name="if:glow text" content="0" />
- <meta name="if:outline text" content="0" />
- <meta name="if:gradient text" content="0" />
- <meta name="if:rainbow links" content="0" />
- <meta name="if:link underline" content="0" />
- <meta name="if:bold link" content="0" />
- <meta name="if:italic link" content="0" />
- <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>
- <style type="text/css">
- ::-moz-selection { background: {color:links}; color: {color:posts}; text-shadow: 0 0 0.2em #000; }
- ::selection { background: {color:links}; color: {color:posts}; text-shadow: 0 0 0.2em #000; }
- #s-m-t-tooltip {
- z-index: 999999999;
- background-color: {color:tooltip bg};
- text-align: center;
- color: {color:tooltip font};
- font-size: {text:Font Size}px;
- line-height: 110%;
- {block:IfGlowText}text-shadow: 0 0 2px {color:tooltip glow outline}, 0 0 3px {color:tooltip glow outline};{/block:IfGlowText}
- {block:IfOutlineText}text-shadow: -1px 0 {color:tooltip glow outline}, 0 1px {color:tooltip glow outline}, 1px 0 {color:tooltip glow outline}, 0 -1px {color:tooltip glow outline};
- {/block:IfOutlineText}
- border: {text:border size}px {select:border} {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- -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: 200px;
- word-wrap: break-word;
- padding: 5px;
- display: block;
- 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:font size}px;
- line-height: 125%;
- color: {color:font color};
- word-wrap: break-word; margin: 0;
- overflow-y:scroll; 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}}
- img {max-width: 100%;}
- ul {list-style: square; color: {color:links};}
- p {margin: 0px;}
- a:link, a:active, a:visited {
- 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}
- text-decoration: none;
- {block:ifItalicLink}font-style: italic;{/block:ifItalicLink}
- {block:ifBoldLink}font-weight: bold;{/block:ifBoldLink}
- {block:ifLinkUnderline}text-decoration: underline;{/block:ifLinkUnderline}
- -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;
- {block:IfRainbowLinks} -webkit-animation:rainbow 1s infinite; -ms-animation:rainbow 1s infinite; -o-animation:rainbow 1s infinite; animation:rainbow 1s infinite;{/block:IfRainbowLinks}}
- {block:IfRainbowLinks}@-webkit-keyframes rainbow {0% {color: #ff0000;}10% {color: #ff8000;}20% {color: #ffff00;}30% {color: #80ff00;}40% {color: #00ff00;}50% {color: #00ff80;}60% {color: #00ffff;}70% {color: #0080ff;}80% {color: #0000ff;}90% {color: #8000ff;}100% {color: #ff0080;}}{/block:IfRainbowLinks}}
- a:hover {
- color: {color:Links Hover};
- {block:IfGlowText}text-shadow: 0 0 3px {color:links hover};{/block:IfGlowText}
- -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:IfCustomCursor}
- body, *, a, a:hover { cursor:url({image:cursor}), auto;}
- {/block:IfCustomCursor}
- ::-webkit-scrollbar {width: 10px;}
- ::-webkit-scrollbar-track {background: {color:background};}
- ::-webkit-scrollbar-thumb {background-color: {color:scrollbar 1};
- border-left: 5px solid {color:scrollbar 2};}
- ::-webkit-scrollbar-thumb:hover {background-color: {color:scrollbar 2};
- border-left: 5px solid {color:scrollbar 1};}
- #uchiha {
- margin:100px auto; width: 800px;}
- #madara {
- position: fixed;
- margin-left: -200px;
- {block:If250px}width: 200px;{/block:If250px}
- {block:IfNot250px}width: 300px;{/block:IfNot250px}
- margin-top: {text:move title}px;
- {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}
- {block:IfGlowText}text-shadow: 0 0 2px {color:title glow outline}, 0 0 3px {color:title glow outline};{/block:IfGlowText}
- color: {color:title color};
- text-align: center;
- line-height: 100%;
- font-family: {text:title font};
- font-size: {text:title size}px;
- animation: .8s shake infinite alternate;
- z-index: 999999999;}
- {block:IfShakeyTitle}@keyframes shake {0% { transform: skewX(-15deg);}5% { transform: skewX(15deg);}10% { transform: skewX(-15deg);}15% { transform: skewX(15deg);}20% { transform: skewX(0deg);}100% { transform: skewX(0deg);}}{block:IfShakeyTitle}
- #obito {
- {block:ifRoundBorder}border-radius: 5px;{/block:ifRoundBorder}
- color: {color:font color};
- background-color: {color:Posts};
- position: fixed;
- margin-left: -200px;
- {block:IfHideTitle}margin-top: 0px;{/block:IfHideTitle}
- {block:IfNotHideTitle}margin-top: 50px;{/block:IfNotHideTitle}
- {block:If250px}width: 200px;{/block:If250px}
- {block:IfNot250px}width: 300px;{/block:IfNot250px}
- background-image:url('{image:sidebar background}');
- background-repeat:repeat;
- background-position: center;
- background-attachment:fixed;
- border: {text:border size}px {select:border} {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- {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:color:font glow outline}, 0 1px {color:color:font glow outline}, 1px 0 {color:color:font glow outline}, 0 -1px {color:color:font glow outline};
- {/block:IfOutlineText}}
- .obito img {
- {block:ifRoundBorder}border-radius: 5px 5px 0 0;{/block:ifRoundBorder}
- display: block;
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- }
- #obito a {
- 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}}
- #obito a:hover {
- color: {color:links hover};}
- .izuna {
- {block:ifNotNoPostPadding}padding: 5px;{/block:ifNotNoPostPadding}
- {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}
- text-align: center;
- border-top: {text:border size}px {select:border} {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to left, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- {block:IfGradientText}
- background: -webkit-linear-gradient(0deg, {color:gradient text 1} 0%, {color:gradient text 2} 75%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
- {/block:IfGradientText}}
- .shisui {
- padding: 0;
- max-height:0px;
- opacity:0;
- -webkit-transition: all 0.5s ease;
- transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- }
- .izuna:hover .shisui{
- max-height: 100px;
- opacity:1;
- -webkit-transition: all 0.5s ease;
- transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;}
- .rinnegan img {display: block;
- }
- .itachi {
- text-align: left;
- background-color: {color:Posts};
- background-image:url('{image:post background}');
- background-repeat: repeat;
- background-position: center;
- background-attachment: fixed;
- {block:If250px}width: 250px;{/block:If250px}
- {block:If400px}width: 400px;{/block:If400px}
- {block:IfNot400px}{block:IfNot250px}width: 500px;
- {/block:IfNot250px}{/block:IfNot400px}
- margin-bottom: 10px;
- {block:ifHideNotes}margin-bottom: 120px;{/block:ifHideNotes}
- border: {text:border size}px {select:border} {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- position: relative;
- margin-left: 300px;
- {block:ifRoundBorder}border-radius: 5px;{/block:ifRoundBorder}
- {block:ifNotNoPostPadding}padding: 20px;{/block:ifNotNoPostPadding}
- {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}}
- {block:IfGlowBorder}.itachi:before, .itachi:after {
- content: '';position: absolute;left: 0px;top: 0px;
- background: linear-gradient(45deg, {color:post glow 1}, {color:post glow 2}, {color:post glow 3}, {color:post glow 4}, {color:post glow 5}, {color:post glow 6});background-size: 400%;width: calc(100% + 0px);height: calc(100% + 0px);z-index: -1;animation: steam 20s linear infinite;
- {block:ifRoundBorder}border-radius: 5px;{/block:ifRoundBorder}
- }{/block:IfGlowBorder}
- @keyframes steam {0% {background-position: 0 0;}50% {background-position: 400% 0;}100% {background-position: 0 0;}}
- .itachi:after {filter: blur(40px);}
- .itachi blockquote {
- margin: 0 0 5px 20px;
- {block:If250Posts}
- margin: 0 0 5px 5px;
- {/block:If250Posts}
- padding: 5px 0 0 5px;
- border-left: {text:border size}px {select:border} {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- word-wrap: break-word;
- word-break: break-word;
- }
- .itachi a:hover {
- color: {color:Links Hover};}
- #perma {
- margin-bottom: 100px; margin-left: 300px; text-align: left;
- {block:If250px}width: 250px;{/block:If250px}
- {block:If400px}width: 400px;{/block:If400px}
- {block:IfNot400px}{block:IfNot250px}width: 500px;
- {/block:IfNot250px}{/block:IfNot400px}
- {block:ifNotNoPostPadding}padding: 0 20px 0 20px;{/block:ifNotNoPostPadding}
- {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}}
- #perma a:hover{color: {color:links hover};}
- .sharingan {
- max-height:0px;
- line-height:130%;
- text-align:left;
- opacity:0;
- -webkit-transition: all 0.7s ease;
- transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- .itachi:hover .sharingan{
- {block:ifNotNoPostPadding}margin-top: 10px;{/block:ifNotNoPostPadding}
- {block:ifNoPostPadding}margin-top: 0px;{/block:ifNoPostPadding}
- border-top: {text:border size}px {select:border} {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to left, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- max-height: 200px;
- opacity:1;
- -webkit-transition: all 0.7s ease;
- transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;}
- #sasuke {margin-top: 10px; margin-bottom: 10px; height: 150px; overflow: scroll; overflow-x: hidden;}
- #sasuke ol.notes {list-style-type: none; margin: 0; padding: 0;}
- #sasuke img.avatar {margin-right: 0px; width: 0px; height: 0px;}
- .sharingan a{color: {color:notes};} .sharingan a:hover{color: {color:links hover};}
- .chatlabel {font-weight: none;}
- .odd {background-color: {color:links};}
- .even {background-color: {color:background};}
- #pagination a {color: {color:Links};}
- #pagination a:hover {color: {color:Links Hover};}
- #genjutsu {padding: 1px; position: fixed; bottom: 15px; left: 15px; font-size: 26px;}
- #mangekyou {padding: 1px; position: fixed; bottom: 0px; right: 15px;
- max-width: 600px; z-index: -1;
- }
- .q {
- {block:ifNotNoPostPadding}padding: 10px;
- border: 1px {select:border} {color:border};
- {/block:ifNotNoPostPadding}
- {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}
- {block:ifNoPostPadding}padding: 0px;
- border-bottom: 1px {select:border} {color:border};
- {/block:ifNoPostPadding}
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- }
- .msg {display: inline-block; padding-left: 5px;}
- .a {text-align: justify;
- {block:ifNotNoPostPadding}padding: 10px;{/block:ifNotNoPostPadding}
- {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}
- }
- #clan {
- font-size: -webkit-calc(100% + 20px);
- text-align: right; margin-left: 300px;
- margin-top: -50px;
- {block:ifNotNoPostPadding}padding: 0 20px 0 20px;{/block:ifNotNoPostPadding}
- {block:If250px}width: 250px;{/block:If250px}
- {block:If400px}width: 400px;{/block:If400px}
- {block:IfNot400px}{block:IfNot250px}width: 500px;
- {/block:IfNot250px}{/block:IfNot400px}
- }
- .video {
- position: relative;
- padding-bottom: 75%;
- height: 0;
- overflow: hidden;
- }
- .video iframe, .video object, .video embed {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .spotify_audio_player {
- height:80px!important;
- width:100%!important;}
- .soundcloud_audio_player {
- height:150px!important;
- width:100%!important;}
- .trackback {
- position: absolute;
- left: 20px;
- top: 20px;
- 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: 79px;
- height: 79px;}
- .albumpic img {
- width: 100%;
- height: auto;
- border: 1px solid {color:border};
- {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
- {/block:ifGradientBorder}
- }
- .trackinfo {
- width: auto;
- display:inline-block;
- margin-left: 90px;
- min-height: 85px;}
- .audiowrapper {
- position: relative; display:inline-block;}
- </style>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
- </head>
- <body>
- <div id="uchiha">
- {block:ifNotHideTitle}
- <div id="madara">{text:title}</div>
- {/block:ifNotHideTitle}
- <div id="obito">
- <div class="obito" align= "center">
- <a href="/" data-toggle="tooltip" title="{text:sidebar tooltip text}"><img src="{image:sidebar}"></a></div>
- <div class="izuna">
- {text:description}
- <div class="shisui">
- <a href="{text:link 1 URL}">{text:link 1}</a> {text:link spacer} <a href="{text:link 2 URL}">{text:link 2}</a> {text:link spacer} <a href="{text:link 3 URL}">{text:link 3}</a> {text:link spacer} <a href="{text:link 4 URL}">{text:link 4}</a>
- </div>
- </div>
- </div>
- {block:Posts}
- <div class="itachi">
- {block:Text}
- {block:Title}<a href="{Permalink}">{Title}</a>{/block:Title}
- {Body}
- {/block:Text}
- {block:Quote}
- "{Quote}"
- {block:Source}— {Source}{/block:Source}
- {/block:Quote}
- {block:Link}
- <big><a href="{URL}">{Name}</a></big>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}{Title}{/block:Title}
- {block:Lines}
- <div class="{Alt} user_{UserNumber}">
- {block:Label}{Label}{/block:Label} {Line}
- </div>
- {/block:Lines}
- {/block:Chat}
- {block:Answer}
- <div class="q"><img src="{AskerPortraitURL-30}" style="vertical-align: middle; display:inline"> {Asker} ><div class="msg">{Question}</div></div>
- <div class="a">{Answer}</div>
- {/block:Answer}
- {block:Photo}
- <div class="rinnegan">
- {block:IndexPage}
- <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{Permalink}"/></a>
- {/block:IndexPage}
- {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{Permalink}"/>{LinkCloseTag}{/block:PermalinkPage}
- </div>
- {/block:Photo}
- {block:Photoset}
- {block:If250px}{Photoset-250}{/block:If250px}
- {block:If400px}{Photoset-400}{/block:If400px}
- {block:IfNot400px}{block:IfNot250px}{Photoset-500}
- {/block:IfNot250px}{/block:IfNot400px}
- {/block:Photoset}
- {block:Video}
- <div class="video">{Video-500}</div>
- {/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:AudioPlayer}
- {block:ifNotHideCaption}
- {block:Caption}{Caption}{/block:Caption}
- {/block:ifNotHideCaption}
- {block:IndexPage}{block:ifNotHideTags}
- <div class="sharingan">
- {block:HasTags}{block:Tags}
- <a href="{TagURL}">#{Tag}</a>
- {/block:Tags}{/block:HasTags}</div>
- {/block:ifNotHideTags}{/block:IndexPage}
- {block:PermalinkPage}
- {block:ifHideCaption}
- <p>{block:Caption}{Caption}{/block:Caption}</p>
- {/block:ifHideCaption}
- {block:RebloggedFrom}
- via <a href="{ReblogParentURL}">{ReblogParentName}</a> {/block:RebloggedFrom}
- {block:ContentSource}
- - source <a href="{SourceURL}">{SourceTitle}</a>
- {/block:ContentSource}
- {block:HasTags}<p>{block:Tags}
- <a href="{TagURL}">#{Tag}</a>
- {/block:Tags}</p>{/block:HasTags}
- {block:NoteCount}<div id="sasuke">
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- </div>{/block:NoteCount}
- {/block:PermalinkPage}
- </div>
- {block:IndexPage}{block:ifNotHideNotes}
- <div id="perma">
- <a href="{Permalink}">{12Hour}:{Minutes}</a>
- <a href="{ReblogURL}" style="float: right;" data-toggle="tooltip" title="Reblog?">{NoteCount}%</a>
- </div>
- {/block:ifNotHideNotes}{/block:IndexPage}
- {/block:Posts}
- <div id="clan">
- {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}" style="float: left;">−</a>{/block:PreviousPage}{block:NextPage}
- <a href="{NextPage}">+</a></p>{/block:NextPage}{/block:Pagination}
- </div></div></div>
- <div id="genjutsu"><a href="https://ps1.tumblr.com/" data-toggle="tooltip" title="@ps1">♠</a></div>
- <div id="mangekyou"><img src="{image:sticker}" style="display:block;"></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement