Advertisement
uchihaclan

I LOVE OBITO UCHIHA! THEME

Feb 27th, 2021 (edited)
1,466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.09 KB | None | 0 0
  1. <html>
  2. <!---
  3.  
  4. I LOVE OBITO UCHIHA! THEME - updated 2/27/2021
  5. by @ps1
  6. ____ ____ ____
  7. ||P |||S |||1 ||
  8. ||__|||__|||__||
  9. |/__\|/__\|/__\|
  10.  
  11. IMPORTANT NOTES:
  12. - when you are moving your title, the larger the number,
  13. the lower your title gets.
  14.  
  15. - character codes for floating text can be selected here!
  16. https://www.htmlsymbols.xyz/
  17.  
  18. IF YOU NEED HELP DO NOT HESITATE TO MESSAGE ME!
  19. Please let me know about any bugs as well!
  20.  
  21. --->
  22. <head><title>{Title}</title>
  23. <link rel="icon" href="{image:favicon}" type="image/gif" >
  24. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  25. {block:Description}<meta name="description" content="{MetaDescription}" />
  26. {/block:Description}
  27.  
  28. {block:IfFloatingText}
  29. <script type="text/javascript">
  30. // <![CDATA[
  31. var colour="{color:floating text}"; // what colour are the blobs
  32. var speed=75; // speed of animation, lower is faster
  33. var blobs=10; // how many blobs are in the jar
  34. var charc=String.fromCharCode(9825); // you must use HTML entity
  35.  
  36. /***************************\
  37. * Blobs in a Jar Effect *
  38. *(c)2012-13 mf2fm web-design*
  39. * http://www.mf2fm.com/rv *
  40. * DON'T EDIT BELOW THIS BOX *
  41. \***************************/
  42.  
  43. var div;
  44. var xpos=new Array();
  45. var ypos=new Array();
  46. var zpos=new Array();
  47. var dx=new Array();
  48. var dy=new Array();
  49. var dz=new Array();
  50. var blob=new Array();
  51. var swide=800;
  52. var shigh=600;
  53. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  54.  
  55. function addLoadEvent(funky) {
  56. var oldonload=window.onload;
  57. if (typeof(oldonload)!='function') window.onload=funky;
  58. else window.onload=function() {
  59. if (oldonload) oldonload();
  60. funky();
  61. }
  62. }
  63.  
  64. addLoadEvent(fill_the_jar);
  65.  
  66. function fill_the_jar() {
  67. var i, dvs;
  68. div=document.createElement('div');
  69. dvs=div.style;
  70. dvs.position='fixed';
  71. dvs.left='0px';
  72. dvs.top='0px';
  73. dvs.width='1px';
  74. dvs.height='1px';
  75. document.body.appendChild(div);
  76. set_width();
  77. for (i=0; i<blobs; i++) {
  78. add_blob(i);
  79. jamjar(i);
  80. }
  81. }
  82.  
  83. function add_blob(ref) {
  84. var dv, sy;
  85. dv=document.createElement('div');
  86. sy=dv.style;
  87. sy.position='absolute';
  88. sy.textAlign='center';
  89. if (ie_version && ie_version<10) {
  90. sy.fontSize="10px";
  91. sy.width="100px";
  92. sy.height="100px";
  93. sy.paddingTop="40px";
  94. sy.color=colour;
  95. dv.appendChild(document.createTextNode(charc));
  96. }
  97. else if (ie_version) {
  98. sy.fontSize="1px";
  99. sy.width="0px";
  100. sy.height="0px";
  101. }
  102. else {
  103. dv.appendChild(document.createTextNode(charc));
  104. sy.color='rgba(0,0,0,0)';
  105. }
  106. ypos[ref]=Math.floor(shigh*Math.random());
  107. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  108. xpos[ref]=Math.floor(swide*Math.random());
  109. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  110. zpos[ref]=Math.random()*20;
  111. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  112. blob[ref]=dv;
  113. div.appendChild(blob[ref]);
  114. set_blob(ref);
  115. }
  116.  
  117. function rejig(ref, xy) {
  118. if (xy=='y') {
  119. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  120. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  121. }
  122. else {
  123. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  124. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  125. }
  126. }
  127.  
  128. function sign(a) {
  129. if (a<0) return (-2);
  130. else if (a>0) return (2);
  131. else return (0);
  132. }
  133.  
  134. function set_blob(ref) {
  135. var sy;
  136. sy=blob[ref].style;
  137. sy.top=ypos[ref]+'px';
  138. sy.left=xpos[ref]+'px';
  139. if (ie_version && ie_version<10) {
  140. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  141. sy.fontSize=30-zpos[ref]+"px";
  142. }
  143. else if (ie_version) {
  144. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  145. }
  146. else {
  147. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  148. sy.fontSize=40+zpos[ref]+'px';
  149. }
  150. }
  151.  
  152. function jamjar(ref) {
  153. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  154. ypos[ref]+=dy[ref];
  155. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  156. xpos[ref]+=dx[ref];
  157. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  158. zpos[ref]+=dz[ref];
  159. set_blob(ref);
  160. setTimeout("jamjar("+ref+")", speed);
  161. }
  162.  
  163. window.onresize=set_width;
  164. function set_width() {
  165. var sw_min=999999;
  166. var sh_min=999999;
  167. if (document.documentElement && document.documentElement.clientWidth) {
  168. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  169. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  170. }
  171. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  172. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  173. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  174. }
  175. if (document.body.clientWidth) {
  176. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  177. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  178. }
  179. if (sw_min==999999 || sh_min==999999) {
  180. sw_min=800;
  181. sh_min=600;
  182. }
  183. swide=sw_min;
  184. shigh=sh_min;
  185. }
  186. // ]]>
  187. </script>
  188. {/block:IfFloatingText}
  189.  
  190.  
  191.  
  192. {block:IfRedirect}
  193. <script>
  194. if(window.location.pathname == '/') location.replace('{text:Redirect Link}');
  195. </script>
  196. {block:IfRedirect}
  197.  
  198. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.9/SmoothScroll.js"></script>
  199.  
  200. <!--- Add Custom Fonts Here (like Google Fonts) --->
  201.  
  202.  
  203. <!--- Then add Font name to the 'Font Family' in Theme Options Area --->
  204.  
  205. <meta name="image:favicon" content="https://i.imgur.com/Kg99yAx.gif"/>
  206. <meta name="image:sidebar" content="https://i.imgur.com/6BLzut4.png"/>
  207. <meta name="image:sidebar background" content=""/>
  208. <meta name="image:background" content=""/>
  209. <meta name="image:post background" content=""/>
  210. <meta name="image:cursor" content="https://i.imgur.com/dyzqzjw.png"/>
  211. <meta name="image:sticker" content="https://i.imgur.com/urkCSQt.gif"/>
  212.  
  213.  
  214. <meta name="color:background" content="#000">
  215. <meta name="color:posts" content="#000">
  216. <meta name="color:tooltip bg" content="#000">
  217. <meta name="color:tooltip font" content="#fff">
  218. <meta name="color:tooltip glow outline" content="#fff">
  219. <meta name="color:font color" content="#fff">
  220. <meta name="color:font glow outline" content="#c82319">
  221. <meta name="color:title color" content="#fff">
  222. <meta name="color:title glow outline" content="#c82319">
  223. <meta name="color:links" content="#c82319">
  224. <meta name="color:links hover" content="#ff6200">
  225. <meta name="color:links glow outline" content="#fff">
  226. <meta name="color:floating text" content="#fff">
  227. <meta name="color:gradient text 1" content="#c82319">
  228. <meta name="color:gradient text 2" content="#ff6200">
  229. <meta name="color:post glow 1" content="#000">
  230. <meta name="color:post glow 2" content="#c82319">
  231. <meta name="color:post glow 3" content="#ff6200">
  232. <meta name="color:post glow 4" content="#000">
  233. <meta name="color:post glow 5" content="#c82319">
  234. <meta name="color:post glow 6" content="#ff6200">
  235. <meta name="color:scrollbar 1" content="#c82319">
  236. <meta name="color:scrollbar 2" content="#ff6200">
  237. <meta name="color:border" content="#c82319">
  238. <meta name="color:gradient border 1" content="#c82319">
  239. <meta name="color:gradient border 2" content="#ff6200">
  240.  
  241.  
  242. <meta name="select:border" content="solid"/>
  243. <meta name="select:border" content="dashed"/>
  244. <meta name="select:border" content="dotted"/>
  245. <meta name="select:border" content="double"/>
  246. <meta name="select:border" content="inset"/>
  247. <meta name="select:border" content="outset"/>
  248. <meta name="select:border" content="ridge"/>
  249. <meta name="select:border" content="groove"/>
  250.  
  251.  
  252. <meta name="text:border size" content="2"/>
  253. <meta name="text:title" content="I LOVE OBITO">
  254. <meta name="text:move title" content="0">
  255. <meta name="text:description" content="The moment people come to know love, they run the risk of carrying hate.">
  256. <meta name="text:sidebar tooltip text" content="&hearts;">
  257. <meta name="text:font family" content="times">
  258. <meta name="text:font size" content="26">
  259. <meta name="text:title font" content="times">
  260. <meta name="text:title size" content="26">
  261. <meta name="text:move title" content="50">
  262. <meta name="text:redirect link" content="tagged/TAGTEXT">
  263. <meta name="text:link spacer" content="&nbsp;">
  264. <meta name="text:link 1" content="I">
  265. <meta name="text:link 1 URL" content="/">
  266. <meta name="text:link 2" content="II">
  267. <meta name="text:link 2 URL" content="/">
  268. <meta name="text:link 3" content="III">
  269. <meta name="text:link 3 URL" content="/">
  270. <meta name="text:link 4" content="IV">
  271. <meta name="text:link 4 URL" content="/">
  272.  
  273.  
  274. <meta name="if:custom cursor" content="0" />
  275. <meta name="if:no post padding" content="0" />
  276. <meta name="if:round border" content="0" />
  277. <meta name="if:redirect" content="0" />
  278. <meta name="if:hide title" content="0" />
  279. <meta name="if:hide caption" content="0"/>
  280. <meta name="if:hide notes" content="0"/>
  281. <meta name="if:hide tags" content="0" />
  282. <meta name="if:tile background" content="0" />
  283. <meta name="if:floating text" content="0" />
  284. <meta name="if:glow border" content="0"/>
  285. <meta name="if:250px" content="0"/>
  286. <meta name="if:400px" content="0"/>
  287. <meta name="if:shakey title" content="1" />
  288. <meta name="if:gradient border" content="0"/>
  289. <meta name="if:glow text" content="0" />
  290. <meta name="if:outline text" content="0" />
  291. <meta name="if:gradient text" content="0" />
  292. <meta name="if:rainbow links" content="0" />
  293. <meta name="if:link underline" content="0" />
  294. <meta name="if:bold link" content="0" />
  295. <meta name="if:italic link" content="0" />
  296.  
  297.  
  298.  
  299. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  300. <script type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  301. <script>
  302. (function($){
  303. $(document).ready(function(){
  304. $("[title]").style_my_tooltips();
  305. });
  306. })(jQuery);
  307. </script>
  308.  
  309. <style type="text/css">
  310.  
  311. ::-moz-selection { background: {color:links}; color: {color:posts}; text-shadow: 0 0 0.2em #000; }
  312. ::selection { background: {color:links}; color: {color:posts}; text-shadow: 0 0 0.2em #000; }
  313.  
  314. #s-m-t-tooltip {
  315. z-index: 999999999;
  316. background-color: {color:tooltip bg};
  317. text-align: center;
  318. color: {color:tooltip font};
  319. font-size: {text:Font Size}px;
  320. line-height: 110%;
  321. {block:IfGlowText}text-shadow: 0 0 2px {color:tooltip glow outline}, 0 0 3px {color:tooltip glow outline};{/block:IfGlowText}
  322. {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};
  323. {/block:IfOutlineText}
  324. border: {text:border size}px {select:border} {color:border};
  325. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  326. {/block:ifGradientBorder}
  327. -o-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out;
  328. text-transform: normal;
  329. max-width: 200px;
  330. word-wrap: break-word;
  331. padding: 5px;
  332. display: block;
  333. margin: -30px 0px 10px 20px;}
  334.  
  335. body {
  336. background: {color:background};
  337. background-image: url({image:Background});
  338. background-attachment: fixed;
  339. {block:IfNotTileBackground}-webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;
  340. {/block:IfNotTileBackground}
  341. font-family: '{text:font family}';
  342. font-size: {text:font size}px;
  343. line-height: 125%;
  344. color: {color:font color};
  345. word-wrap: break-word; margin: 0;
  346. overflow-y:scroll; overflow-x:hidden;
  347. {block:IfGlowText}text-shadow: 0 0 2px {color:font glow outline}, 0 0 3px {color:font glow outline};{/block:IfGlowText}
  348. {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};
  349. {/block:IfOutlineText}}
  350.  
  351. img {max-width: 100%;}
  352. ul {list-style: square; color: {color:links};}
  353. p {margin: 0px;}
  354.  
  355. a:link, a:active, a:visited {
  356. color: {color:links};
  357. {block:IfGlowText}text-shadow: 0 0 2px {color:links glow outline}, 0 0 3px {color:links glow outline};{/block:IfGlowText}
  358. {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};
  359. {/block:IfOutlineText}
  360. text-decoration: none;
  361. {block:ifItalicLink}font-style: italic;{/block:ifItalicLink}
  362. {block:ifBoldLink}font-weight: bold;{/block:ifBoldLink}
  363. {block:ifLinkUnderline}text-decoration: underline;{/block:ifLinkUnderline}
  364. -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;
  365. {block:IfRainbowLinks} -webkit-animation:rainbow 1s infinite; -ms-animation:rainbow 1s infinite; -o-animation:rainbow 1s infinite; animation:rainbow 1s infinite;{/block:IfRainbowLinks}}
  366.  
  367. {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}}
  368.  
  369. a:hover {
  370. color: {color:Links Hover};
  371. {block:IfGlowText}text-shadow: 0 0 3px {color:links hover};{/block:IfGlowText}
  372. -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;}
  373.  
  374. {block:IfCustomCursor}
  375. body, *, a, a:hover { cursor:url({image:cursor}), auto;}
  376. {/block:IfCustomCursor}
  377.  
  378.  
  379.  
  380. ::-webkit-scrollbar {width: 10px;}
  381. ::-webkit-scrollbar-track {background: {color:background};}
  382. ::-webkit-scrollbar-thumb {background-color: {color:scrollbar 1};
  383. border-left: 5px solid {color:scrollbar 2};}
  384. ::-webkit-scrollbar-thumb:hover {background-color: {color:scrollbar 2};
  385. border-left: 5px solid {color:scrollbar 1};}
  386.  
  387.  
  388.  
  389. #uchiha {
  390. margin:100px auto; width: 800px;}
  391.  
  392. #madara {
  393. position: fixed;
  394. margin-left: -200px;
  395. {block:If250px}width: 200px;{/block:If250px}
  396. {block:IfNot250px}width: 300px;{/block:IfNot250px}
  397. margin-top: {text:move title}px;
  398. {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};
  399. {/block:IfOutlineText}
  400. {block:IfGlowText}text-shadow: 0 0 2px {color:title glow outline}, 0 0 3px {color:title glow outline};{/block:IfGlowText}
  401. color: {color:title color};
  402. text-align: center;
  403. line-height: 100%;
  404. font-family: {text:title font};
  405. font-size: {text:title size}px;
  406. animation: .8s shake infinite alternate;
  407. z-index: 999999999;}
  408.  
  409. {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}
  410.  
  411. #obito {
  412. {block:ifRoundBorder}border-radius: 5px;{/block:ifRoundBorder}
  413. color: {color:font color};
  414. background-color: {color:Posts};
  415. position: fixed;
  416. margin-left: -200px;
  417. {block:IfHideTitle}margin-top: 0px;{/block:IfHideTitle}
  418. {block:IfNotHideTitle}margin-top: 50px;{/block:IfNotHideTitle}
  419. {block:If250px}width: 200px;{/block:If250px}
  420. {block:IfNot250px}width: 300px;{/block:IfNot250px}
  421. background-image:url('{image:sidebar background}');
  422. background-repeat:repeat;
  423. background-position: center;
  424. background-attachment:fixed;
  425. border: {text:border size}px {select:border} {color:border};
  426. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  427. {/block:ifGradientBorder}
  428. {block:IfGlowText}text-shadow: 0 0 2px {color:font glow outline}, 0 0 3px {color:font glow outline};{/block:IfGlowText}
  429. {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};
  430. {/block:IfOutlineText}}
  431.  
  432. .obito img {
  433. {block:ifRoundBorder}border-radius: 5px 5px 0 0;{/block:ifRoundBorder}
  434. display: block;
  435. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  436. {/block:ifGradientBorder}
  437. }
  438.  
  439. #obito a {
  440. color: {color:links};
  441. {block:IfGlowText}text-shadow: 0 0 2px {color:links glow outline}, 0 0 3px {color:links glow outline};{/block:IfGlowText}
  442. {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};
  443. {/block:IfOutlineText}}
  444.  
  445. #obito a:hover {
  446. color: {color:links hover};}
  447.  
  448. .izuna {
  449. {block:ifNotNoPostPadding}padding: 5px;{/block:ifNotNoPostPadding}
  450. {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}
  451. text-align: center;
  452. border-top: {text:border size}px {select:border} {color:border};
  453.  
  454. {block:ifGradientBorder}border-image: linear-gradient(to left, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  455. {/block:ifGradientBorder}
  456.  
  457.  
  458. {block:IfGradientText}
  459. background: -webkit-linear-gradient(0deg, {color:gradient text 1} 0%, {color:gradient text 2} 75%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  460. {/block:IfGradientText}}
  461.  
  462.  
  463. .shisui {
  464. padding: 0;
  465.  
  466. max-height:0px;
  467. opacity:0;
  468. -webkit-transition: all 0.5s ease;
  469. transition: all 0.5s ease;
  470. -moz-transition: all 0.5s ease;
  471. -o-transition: all 0.5s ease;
  472. }
  473.  
  474.  
  475.  
  476. .izuna:hover .shisui{
  477. max-height: 100px;
  478. opacity:1;
  479. -webkit-transition: all 0.5s ease;
  480. transition: all 0.5s ease;
  481. -moz-transition: all 0.5s ease;
  482. -o-transition: all 0.5s ease;}
  483.  
  484. .rinnegan img {display: block;
  485. }
  486.  
  487. .itachi {
  488. text-align: left;
  489. background-color: {color:Posts};
  490. background-image:url('{image:post background}');
  491. background-repeat: repeat;
  492. background-position: center;
  493. background-attachment: fixed;
  494. {block:If250px}width: 250px;{/block:If250px}
  495. {block:If400px}width: 400px;{/block:If400px}
  496. {block:IfNot400px}{block:IfNot250px}width: 500px;
  497. {/block:IfNot250px}{/block:IfNot400px}
  498. margin-bottom: 10px;
  499. {block:ifHideNotes}margin-bottom: 120px;{/block:ifHideNotes}
  500. border: {text:border size}px {select:border} {color:border};
  501. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  502. {/block:ifGradientBorder}
  503. position: relative;
  504. margin-left: 300px;
  505. {block:ifRoundBorder}border-radius: 5px;{/block:ifRoundBorder}
  506. {block:ifNotNoPostPadding}padding: 20px;{/block:ifNotNoPostPadding}
  507. {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}}
  508.  
  509. {block:IfGlowBorder}.itachi:before, .itachi:after {
  510. content: '';position: absolute;left: 0px;top: 0px;
  511. 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;
  512. {block:ifRoundBorder}border-radius: 5px;{/block:ifRoundBorder}
  513. }{/block:IfGlowBorder}
  514.  
  515. @keyframes steam {0% {background-position: 0 0;}50% {background-position: 400% 0;}100% {background-position: 0 0;}}
  516.  
  517. .itachi:after {filter: blur(40px);}
  518.  
  519. .itachi blockquote {
  520. margin: 0 0 5px 20px;
  521. {block:If250Posts}
  522. margin: 0 0 5px 5px;
  523. {/block:If250Posts}
  524. padding: 5px 0 0 5px;
  525. border-left: {text:border size}px {select:border} {color:border};
  526. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  527. {/block:ifGradientBorder}
  528. word-wrap: break-word;
  529. word-break: break-word;
  530. }
  531.  
  532. .itachi a:hover {
  533. color: {color:Links Hover};}
  534.  
  535. #perma {
  536. margin-bottom: 100px; margin-left: 300px; text-align: left;
  537. {block:If250px}width: 250px;{/block:If250px}
  538. {block:If400px}width: 400px;{/block:If400px}
  539. {block:IfNot400px}{block:IfNot250px}width: 500px;
  540. {/block:IfNot250px}{/block:IfNot400px}
  541. {block:ifNotNoPostPadding}padding: 0 20px 0 20px;{/block:ifNotNoPostPadding}
  542. {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}}
  543.  
  544. #perma a:hover{color: {color:links hover};}
  545.  
  546. .sharingan {
  547. max-height:0px;
  548.  
  549. line-height:130%;
  550. text-align:left;
  551. opacity:0;
  552. -webkit-transition: all 0.7s ease;
  553. transition: all 0.7s ease;
  554. -moz-transition: all 0.7s ease;
  555. -o-transition: all 0.7s ease;
  556. }
  557.  
  558. .itachi:hover .sharingan{
  559. {block:ifNotNoPostPadding}margin-top: 10px;{/block:ifNotNoPostPadding}
  560. {block:ifNoPostPadding}margin-top: 0px;{/block:ifNoPostPadding}
  561. border-top: {text:border size}px {select:border} {color:border};
  562. {block:ifGradientBorder}border-image: linear-gradient(to left, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  563. {/block:ifGradientBorder}
  564.  
  565. max-height: 200px;
  566. opacity:1;
  567. -webkit-transition: all 0.7s ease;
  568. transition: all 0.7s ease;
  569. -moz-transition: all 0.7s ease;
  570. -o-transition: all 0.7s ease;}
  571.  
  572.  
  573. #sasuke {margin-top: 10px; margin-bottom: 10px; height: 150px; overflow: scroll; overflow-x: hidden;}
  574.  
  575. #sasuke ol.notes {list-style-type: none; margin: 0; padding: 0;}
  576. #sasuke img.avatar {margin-right: 0px; width: 0px; height: 0px;}
  577.  
  578. .sharingan a{color: {color:notes};} .sharingan a:hover{color: {color:links hover};}
  579.  
  580.  
  581. .chatlabel {font-weight: none;}
  582. .odd {background-color: {color:links};}
  583. .even {background-color: {color:background};}
  584.  
  585. #pagination a {color: {color:Links};}
  586. #pagination a:hover {color: {color:Links Hover};}
  587.  
  588. #genjutsu {padding: 1px; position: fixed; bottom: 15px; left: 15px; font-size: 26px;}
  589.  
  590. #mangekyou {padding: 1px; position: fixed; bottom: 0px; right: 15px;
  591. max-width: 600px; z-index: -1;
  592. }
  593.  
  594. .q {
  595. {block:ifNotNoPostPadding}padding: 10px;
  596. border: 1px {select:border} {color:border};
  597. {/block:ifNotNoPostPadding}
  598. {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}
  599. {block:ifNoPostPadding}padding: 0px;
  600. border-bottom: 1px {select:border} {color:border};
  601. {/block:ifNoPostPadding}
  602. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  603. {/block:ifGradientBorder}
  604. }
  605. .msg {display: inline-block; padding-left: 5px;}
  606. .a {text-align: justify;
  607. {block:ifNotNoPostPadding}padding: 10px;{/block:ifNotNoPostPadding}
  608. {block:ifNoPostPadding}padding: 0px;{/block:ifNoPostPadding}
  609. }
  610.  
  611. #clan {
  612. font-size: -webkit-calc(100% + 20px);
  613. text-align: right; margin-left: 300px;
  614. margin-top: -50px;
  615. {block:ifNotNoPostPadding}padding: 0 20px 0 20px;{/block:ifNotNoPostPadding}
  616. {block:If250px}width: 250px;{/block:If250px}
  617. {block:If400px}width: 400px;{/block:If400px}
  618. {block:IfNot400px}{block:IfNot250px}width: 500px;
  619. {/block:IfNot250px}{/block:IfNot400px}
  620. }
  621.  
  622.  
  623. .video {
  624. position: relative;
  625. padding-bottom: 75%;
  626. height: 0;
  627. overflow: hidden;
  628. }
  629.  
  630. .video iframe, .video object, .video embed {
  631. position: absolute;
  632. top: 0;
  633. left: 0;
  634. width: 100%;
  635. height: 100%;
  636. }
  637.  
  638. .spotify_audio_player {
  639. height:80px!important;
  640. width:100%!important;}
  641.  
  642. .soundcloud_audio_player {
  643. height:150px!important;
  644. width:100%!important;}
  645.  
  646. .trackback {
  647. position: absolute;
  648. left: 20px;
  649. top: 20px;
  650. width: 19px;
  651. height: 19px;
  652. background-color: #fff;
  653. padding: 10px;
  654. opacity: .4;}
  655.  
  656.  
  657. .pressplay{
  658. position: relative;
  659. width: 25px;
  660. height: 25px;
  661. overflow: hidden;
  662. left: -6px;
  663. top: -3px;}
  664.  
  665.  
  666. .albumpic {
  667. position: absolute;
  668. left: 0px;
  669. top: 0px;
  670. width: 79px;
  671. height: 79px;}
  672.  
  673.  
  674. .albumpic img {
  675. width: 100%;
  676. height: auto;
  677. border: 1px solid {color:border};
  678. {block:ifGradientBorder}border-image: linear-gradient(to top, {color:Gradient Border 2} 40%, {color:Gradient Border 1} 100%);border-image-slice: 1;
  679. {/block:ifGradientBorder}
  680. }
  681.  
  682.  
  683. .trackinfo {
  684. width: auto;
  685. display:inline-block;
  686. margin-left: 90px;
  687. min-height: 85px;}
  688.  
  689. .audiowrapper {
  690. position: relative; display:inline-block;}
  691.  
  692.  
  693. </style>
  694.  
  695. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  696.  
  697. </head>
  698.  
  699. <body>
  700.  
  701.  
  702. <div id="uchiha">
  703.  
  704. {block:ifNotHideTitle}
  705. <div id="madara">{text:title}</div>
  706. {/block:ifNotHideTitle}
  707.  
  708. <div id="obito">
  709. <div class="obito" align= "center">
  710. <a href="/" data-toggle="tooltip" title="{text:sidebar tooltip text}"><img src="{image:sidebar}"></a></div>
  711.  
  712. <div class="izuna">
  713. {text:description}
  714.  
  715. <div class="shisui">
  716. <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>
  717. </div>
  718.  
  719. </div>
  720. </div>
  721.  
  722. {block:Posts}
  723. <div class="itachi">
  724. {block:Text}
  725. {block:Title}<a href="{Permalink}">{Title}</a>{/block:Title}
  726. {Body}
  727. {/block:Text}
  728.  
  729. {block:Quote}
  730. "{Quote}"
  731. {block:Source}&mdash; {Source}{/block:Source}
  732. {/block:Quote}
  733.  
  734. {block:Link}
  735. <big><a href="{URL}">{Name}</a></big>
  736. {block:Description}{Description}{/block:Description}
  737. {/block:Link}
  738.  
  739. {block:Chat}
  740. {block:Title}{Title}{/block:Title}
  741. {block:Lines}
  742. <div class="{Alt} user_{UserNumber}">
  743. {block:Label}{Label}{/block:Label} {Line}
  744. </div>
  745. {/block:Lines}
  746. {/block:Chat}
  747.  
  748. {block:Answer}
  749. <div class="q"><img src="{AskerPortraitURL-30}" style="vertical-align: middle; display:inline"> {Asker} ><div class="msg">{Question}</div></div>
  750.  
  751. <div class="a">{Answer}</div>
  752. {/block:Answer}
  753.  
  754. {block:Photo}
  755.  
  756. <div class="rinnegan">
  757. {block:IndexPage}
  758. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{Permalink}"/></a>
  759. {/block:IndexPage}
  760.  
  761. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{Permalink}"/>{LinkCloseTag}{/block:PermalinkPage}
  762. </div>
  763. {/block:Photo}
  764.  
  765. {block:Photoset}
  766.  
  767. {block:If250px}{Photoset-250}{/block:If250px}
  768. {block:If400px}{Photoset-400}{/block:If400px}
  769. {block:IfNot400px}{block:IfNot250px}{Photoset-500}
  770. {/block:IfNot250px}{/block:IfNot400px}
  771. {/block:Photoset}
  772.  
  773. {block:Video}
  774. <div class="video">{Video-500}</div>
  775. {/block:Video}
  776.  
  777. {block:AudioPlayer}
  778. <div class="audiowrapper">
  779. {block:AlbumArt}
  780. <div class="albumpic"><img src="{AlbumArtURL}"></div>
  781. {/block:AlbumArt}
  782. <div class="trackback">
  783. <div class="pressplay">
  784. {AudioPlayer}
  785. </div></div>
  786. <div class="trackinfo">
  787. {block:TrackName}{TrackName}{/block:TrackName}<br>
  788. {block:Artist}<b>{Artist}</b>{/block:Artist}<br>
  789. {block:Album}<i>{Album}</i>{/block:Album}<br>
  790. </div></div>
  791. {/block:AudioPlayer}
  792.  
  793. {block:ifNotHideCaption}
  794. {block:Caption}{Caption}{/block:Caption}
  795. {/block:ifNotHideCaption}
  796.  
  797. {block:IndexPage}{block:ifNotHideTags}
  798. <div class="sharingan">
  799. {block:HasTags}{block:Tags}
  800. <a href="{TagURL}">#{Tag}</a>
  801. {/block:Tags}{/block:HasTags}</div>
  802. {/block:ifNotHideTags}{/block:IndexPage}
  803.  
  804. {block:PermalinkPage}
  805.  
  806. {block:ifHideCaption}
  807. <p>{block:Caption}{Caption}{/block:Caption}</p>
  808. {/block:ifHideCaption}
  809.  
  810. {block:RebloggedFrom}
  811. via <a href="{ReblogParentURL}">{ReblogParentName}</a> {/block:RebloggedFrom}
  812. {block:ContentSource}
  813. - source <a href="{SourceURL}">{SourceTitle}</a>
  814. {/block:ContentSource}
  815.  
  816. {block:HasTags}<p>{block:Tags}
  817. <a href="{TagURL}">#{Tag}</a>
  818. {/block:Tags}</p>{/block:HasTags}
  819.  
  820. {block:NoteCount}<div id="sasuke">
  821. {block:PostNotes}{PostNotes}{/block:PostNotes}
  822. </div>{/block:NoteCount}
  823. {/block:PermalinkPage}
  824. </div>
  825.  
  826. {block:IndexPage}{block:ifNotHideNotes}
  827. <div id="perma">
  828. <a href="{Permalink}">{12Hour}:{Minutes}</a>
  829. <a href="{ReblogURL}" style="float: right;" data-toggle="tooltip" title="Reblog?">{NoteCount}%</a>
  830. </div>
  831. {/block:ifNotHideNotes}{/block:IndexPage}
  832.  
  833. {/block:Posts}
  834.  
  835. <div id="clan">
  836. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}" style="float: left;">&minus;</a>{/block:PreviousPage}{block:NextPage}
  837. <a href="{NextPage}">&plus;</a></p>{/block:NextPage}{/block:Pagination}
  838. </div></div></div>
  839.  
  840. <div id="genjutsu"><a href="https://ps1.tumblr.com/" data-toggle="tooltip" title="@ps1">&#9824;</a></div>
  841.  
  842. <div id="mangekyou"><img src="{image:sticker}" style="display:block;"></div>
  843.  
  844.  
  845. </body>
  846. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement