Advertisement
Owldolly

Kiss The Rain Theme

Feb 27th, 2015
3,408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.05 KB | None | 0 0
  1. <html>
  2. <head>
  3. <!-- (c) Kiss The Rain theme by Sapphire (http://owl-doll.tumblr.com)
  4. Do not steal or redistribute. If you have any questions feel free to contact me - http://owl-doll.tumblr.com/ask
  5. Enjoy!
  6. -->
  7.  
  8. <title>{title}</title>
  9. <link href='http://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  10. <link href='http://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
  11.  
  12. <meta name="image:Sidebar" content="http://i612.photobucket.com/albums/tt206/SapphPsychopath/kyantsu-d6n9qy6-rend_zps8q8q2qk6.png">
  13. <meta name="image:Header and footer" content="http://static.tumblr.com/vvvx9lt/N9znkgfad/tumblr_inline_mvbem8xpqo1qak244__1_.png">
  14. <meta name="image:Background" content="http://static.tumblr.com/vvvx9lt/NaOnkgfiw/tumblr_inline_ml1p5mizuk1qz4rgp.png">
  15. <meta name="image:Pixel" content="http://static.tumblr.com/vvvx9lt/i3Unkgfji/tumblr_inline_mkmbskv9uh1qz4rgp.gif">
  16. <meta name="if:Disable right click" content="1"/>
  17. <meta name="if:Infinite scrolling" content="1"/>
  18. <meta name="if:Music player" content="1">
  19. <meta name="if:Faded images" content="1"/>
  20. <meta name="if:Sparkle cursor" content="1">
  21. <meta name="color:Links" content="#47ceff">
  22. <meta name="color:Text" content="#666666">
  23. <meta name="color:Button 1" content="#f668b9">
  24. <meta name="color:Button 1 hover" content="#fff">
  25. <meta name="color:Button 2 hover" content="#fff">
  26. <meta name="color:Button 2" content="#a918ec">
  27. <meta name="color:Borders" content="#ffc9e4">
  28. <meta name="color:Sparkles" content="#47ceff">
  29. <meta name="color:Scrollbar" content="#ffafd8">
  30. <meta name="color:Scrollbar 2" content="#fff">
  31. <meta name="text:link 1 name" content="link 1 name">
  32. <meta name="text:link 1" content="http://">
  33. <meta name="text:link 2 name" content="link 2 name">
  34. <meta name="text:link 2" content="http://">
  35. <meta name="text:link 3 name" content="link 3 name">
  36. <meta name="text:link 3" content="http://">
  37. <meta name="text:Paste music player code here">
  38. <meta name="text:Tumblr username">
  39.  
  40. {block:ifSparklecursor}<script type="text/javascript">
  41. // <![CDATA[
  42. var colour="{color:Sparkles}";
  43. var sparkles=150;
  44.  
  45. /****************************
  46. * Tinkerbell Magic Sparkle *
  47. * (c) 2005 mf2fm web-design *
  48. * http://www.mf2fm.com/rv *
  49. * DON'T EDIT BELOW THIS BOX *
  50. ****************************/
  51. var x=ox=400;
  52. var y=oy=300;
  53. var swide=800;
  54. var shigh=600;
  55. var sleft=sdown=0;
  56. var tiny=new Array();
  57. var star=new Array();
  58. var starv=new Array();
  59. var starx=new Array();
  60. var stary=new Array();
  61. var tinyx=new Array();
  62. var tinyy=new Array();
  63. var tinyv=new Array();
  64.  
  65. window.onload=function() { if (document.getElementById) {
  66. var i, rats, rlef, rdow;
  67. for (var i=0; i<sparkles; i++) {
  68. var rats=createDiv(3, 3);
  69. rats.style.visibility="hidden";
  70. document.body.appendChild(tiny[i]=rats);
  71. starv[i]=0;
  72. tinyv[i]=0;
  73. var rats=createDiv(5, 5);
  74. rats.style.backgroundColor="transparent";
  75. rats.style.visibility="hidden";
  76. var rlef=createDiv(1, 5);
  77. var rdow=createDiv(5, 1);
  78. rats.appendChild(rlef);
  79. rats.appendChild(rdow);
  80. rlef.style.top="2px";
  81. rlef.style.left="0px";
  82. rdow.style.top="0px";
  83. rdow.style.left="2px";
  84. document.body.appendChild(star[i]=rats);
  85. }
  86. set_width();
  87. sparkle();
  88. }}
  89.  
  90. function sparkle() {
  91. var c;
  92. if (x!=ox || y!=oy) {
  93. ox=x;
  94. oy=y;
  95. for (c=0; c<sparkles; c++) if (!starv[c]) {
  96. star[c].style.left=(starx[c]=x)+"px";
  97. star[c].style.top=(stary[c]=y)+"px";
  98. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  99. star[c].style.visibility="visible";
  100. starv[c]=50;
  101. break;
  102. }
  103. }
  104. for (c=0; c<sparkles; c++) {
  105. if (starv[c]) update_star(c);
  106. if (tinyv[c]) update_tiny(c);
  107. }
  108. setTimeout("sparkle()", 40);
  109. }
  110.  
  111. function update_star(i) {
  112. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  113. if (starv[i]) {
  114. stary[i]+=1+Math.random()*3;
  115. if (stary[i]<shigh+sdown) {
  116. star[i].style.top=stary[i]+"px";
  117. starx[i]+=(i%5-2)/5;
  118. star[i].style.left=starx[i]+"px";
  119. }
  120. else {
  121. star[i].style.visibility="hidden";
  122. starv[i]=0;
  123. return;
  124. }
  125. }
  126. else {
  127. tinyv[i]=50;
  128. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  129. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  130. tiny[i].style.width="2px";
  131. tiny[i].style.height="2px";
  132. star[i].style.visibility="hidden";
  133. tiny[i].style.visibility="visible"
  134. }
  135. }
  136.  
  137. function update_tiny(i) {
  138. if (--tinyv[i]==25) {
  139. tiny[i].style.width="1px";
  140. tiny[i].style.height="1px";
  141. }
  142. if (tinyv[i]) {
  143. tinyy[i]+=1+Math.random()*3;
  144. if (tinyy[i]<shigh+sdown) {
  145. tiny[i].style.top=tinyy[i]+"px";
  146. tinyx[i]+=(i%5-2)/5;
  147. tiny[i].style.left=tinyx[i]+"px";
  148. }
  149. else {
  150. tiny[i].style.visibility="hidden";
  151. tinyv[i]=0;
  152. return;
  153. }
  154. }
  155. else tiny[i].style.visibility="hidden";
  156. }
  157.  
  158. document.onmousemove=mouse;
  159. function mouse(e) {
  160. set_scroll();
  161. y=(e)?e.pageY:event.y+sdown;
  162. x=(e)?e.pageX:event.x+sleft;
  163. }
  164.  
  165. function set_scroll() {
  166. if (typeof(self.pageYOffset)=="number") {
  167. sdown=self.pageYOffset;
  168. sleft=self.pageXOffset;
  169. }
  170. else if (document.body.scrollTop || document.body.scrollLeft) {
  171. sdown=document.body.scrollTop;
  172. sleft=document.body.scrollLeft;
  173. }
  174. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  175. sleft=document.documentElement.scrollLeft;
  176. sdown=document.documentElement.scrollTop;
  177. }
  178. else {
  179. sdown=0;
  180. sleft=0;
  181. }
  182. }
  183.  
  184. window.onresize=set_width;
  185. function set_width() {
  186. if (typeof(self.innerWidth)=="number") {
  187. swide=self.innerWidth;
  188. shigh=self.innerHeight;
  189. }
  190. else if (document.documentElement && document.documentElement.clientWidth) {
  191. swide=document.documentElement.clientWidth;
  192. shigh=document.documentElement.clientHeight;
  193. }
  194. else if (document.body.clientWidth) {
  195. swide=document.body.clientWidth;
  196. shigh=document.body.clientHeight;
  197. }
  198. }
  199.  
  200. function createDiv(height, width) {
  201. var div=document.createElement("div");
  202. div.style.position="absolute";
  203. div.style.height=height+"px";
  204. div.style.width=width+"px";
  205. div.style.overflow="hidden";
  206. div.style.backgroundColor=colour;
  207. return (div);
  208. }
  209. // ]]>
  210. </script>
  211. {/block:ifSparklecursor}
  212.  
  213. {block:IfInfiniteScrolling}
  214. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  215. {/block:IfInfiniteScrolling}
  216.  
  217. </head>
  218.  
  219. <style type="text/css">
  220.  
  221. #navbar-iframe {
  222. display: none;
  223. }
  224. body {
  225. background:url({image:Background});
  226. font-family: 'Titillium Web', sans-serif;;
  227. font-size: 15px;
  228. background-attachment:fixed;
  229. text-align: normal;
  230. cursor:url(),auto;
  231. }
  232. a:link, a:visited, a:active {
  233. color: {color:Links};
  234. text-decoration: none;
  235. -webkit-transition-duration:.4s;
  236. -moz-transition-duration:.4s;
  237. }
  238. a:hover {
  239. text-decoration: none;
  240. background-color: transparent;
  241. border-bottom: 2pt dashed;
  242. -webkit-transition-duration:.8s; -moz-transition-duration:.8s;
  243. }
  244.  
  245.  
  246. .h1 {
  247. font-family: 'Bad Script', cursive;
  248. font-size:12px;
  249. letter-spacing: 10px;border-bottom: 2px dashed {color:Borders};
  250. color: #000;
  251. text-align: center;
  252. text-transform: uppercase;
  253. }
  254. .h2 {
  255. font-family: 'Bad Script', cursive;
  256. font-size:12px;
  257. letter-spacing: 10px;
  258. border-bottom: 2px dashed {color:Borders};
  259. color: #000;
  260. text-align: center;
  261. text-transform: uppercase;
  262. }
  263.  
  264. .h4 {
  265. font-size:75px;
  266. }
  267.  
  268.  
  269. a.button {
  270. display:inline-block;
  271. -webkit-transition: 0.9s;
  272. -moz-transition: 0.9s;
  273. padding-top:5px;
  274. width:80px;
  275. text-decoration:none;
  276. font-family:Titillium Web;
  277. font-size:10px;
  278. height:18px;
  279. text-transform:uppercase;
  280. color: #fff;
  281. border:2px solid #fff;
  282. background:{color:Button 1};
  283. overflow: hidden;
  284. cursor:crosshair;
  285. text:center;
  286. border-radius:0px;
  287. }
  288.  
  289. a.button:hover{
  290. color: #fff;
  291. background:{color:Button 1 hover};
  292. overflow: hidden;
  293. -webkit-transition: 1.0s;
  294. -moz-transition: 1.0s;
  295. }
  296.  
  297. a.button1 {
  298. display:inline-block;
  299. -webkit-transition: 0.9s;
  300. -moz-transition: 0.9s;
  301. padding-top:5px;
  302. width:70px;
  303. text-decoration:none;
  304. font-family:Titillium Web;
  305. font-size:10px;
  306. height:18px;
  307. text-transform:uppercase;
  308. color: #fff ;
  309. border:2px solid #fff;
  310. text-align:center;
  311. background:{color:Button 2};
  312. cursor:crosshair;
  313. border-radius:0px;
  314. overflow: hidden;
  315. }
  316.  
  317. a.button1:hover{
  318. color: #fff;
  319. background:{color:Button 2 hover};
  320. overflow: hidden;
  321. -webkit-transition: 1.0s;
  322. -moz-transition: 1.0s;
  323. }
  324.  
  325. ::-webkit-scrollbar {
  326. width: 5px;
  327. background: {color:scrollbar 2};
  328. overflow-x: hidden;
  329. overflow-y: auto;
  330. }
  331. ::-webkit-scrollbar-thumb {
  332. background:{color:scrollbar};
  333. -moz-border-radius: 5px;
  334. border-radius: 5px;
  335. overflow-x: hidden;
  336. overflow-y: auto;
  337. }
  338.  
  339. {block:ifFadedImages}img{
  340. -webkit-transition: all 0.5s ease-in;
  341. -moz-transition: all 0.5s ease-in;
  342. transition: all 0.5s ease-in;
  343. }
  344.  
  345. img:hover{
  346. filter: alpha (opacity=90);
  347. opacity: 0.20;
  348. -webkit-transition: all 1.5s ease-out;
  349. -moz-transition: all 1.5s ease-out;
  350. transition: all 1.5s ease-out;
  351. }
  352. {/block:ifFadedImages}
  353.  
  354. }
  355.  
  356. </style>
  357. </head>
  358.  
  359. {block:ifDisablerightclick}
  360. <script language=javascript>
  361. <!--
  362. //Disable right click script III- By Renigade (renigade@mediaone.net)
  363. //For full source code, visit http://www.dynamicdrive.com/
  364. var message="";
  365. ///////////////////////////////////
  366. function clickIE() {if (document.all) {(message);return false;}}
  367. function clickNS(e) {if
  368. (document.layers||(document.getElementById&&!document.all)) {
  369. if (e.which==2||e.which==3) {(message);return false;}}}
  370. if (document.layers)
  371. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  372. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  373. document.oncontextmenu=new Function("return false")
  374. // -->
  375. </script>
  376. {block:ifDisablerightclick}
  377.  
  378. <table style="font-size: 11px; LETTER-SPACING:1PX; color: {color:text}; line-height: 16px; background:#fff; border:2px dashed {color:Borders}
  379. ;border-top:0px;border-bottom:0px;border-radius:0px;" width="850" align="center" border="0" cellspacing="10">
  380.  
  381. <tbody><tr>
  382. <center><div style="background:url({image:Header and Footer});padding-top:18px;padding-bottom:16px; width:850px;">
  383.  
  384.  
  385. <center><a class="button" href="/" title="">HOME</a> <span style="padding:4px;"></span>
  386.  
  387. <a class="button1" href="{text:Link 1}">{text:link 1 name}</a><span style="padding:4px;"></span>
  388.  
  389. <a class="button" href="{text:Link 2}">{text:Link 2 name}</a><span style="padding:4px;"></span>
  390.  
  391. <a class="button1" href="{text:Link 3}">{text:Link 3 name}</a><span style="padding:4px;"></span>
  392.  
  393. <a class="button" href="/archive">Archive</a>
  394.  
  395. <a class="button1" href="http://owl-doll.tumblr.com/">CREDIT</a><span style="padding:4px;"></span>
  396.  
  397.  
  398. </center> </div>
  399.  
  400.  
  401. <div id="entry" style="display: none; width: 100%;">
  402.  
  403. <div class="h1">{title}</div>
  404. <div class="h3"></center>
  405. </div>
  406.  
  407.  
  408. </body>
  409. <td valign="top" style="width:530px; padding-left:5px; border-right:2px dashed {color:Borders}; padding-bottom:5px; box-shadow:0px 0px 5px #ffffff; padding-right:15px; max-width: 530px;">
  410.  
  411. <div id="post">
  412. <div class="h1">{title}</div><br><br>
  413. <div class="h3"><div class="autopagerize_page_element">{block:Posts}
  414.  
  415. <div class= "content">
  416. <center>{block:Text}
  417. <a href="{Permalink}"><h2>{Title}</h2></a>
  418. {Body}
  419.  
  420. {/block:Text}
  421.  
  422.  
  423. {block:Photo}
  424. <center>
  425. <img src="{PhotoURL-500}" alt="">
  426. {block:Caption}{Caption}{/block:Caption}
  427.  
  428. </center>
  429. {/block:Photo}
  430.  
  431.  
  432. {block:Photoset}
  433. <center>
  434. <div class="photoset">{Photoset-500}</div>
  435. {block:Caption}{Caption}{/block:Caption}
  436. </center>
  437. {/block:Photoset}
  438.  
  439.  
  440. {block:Quote}
  441. <div id="quotemarkleft">“</div><div class="quote_
  442.  
  443. {Length}">{Quote}</div><div id="quotemarkright">”</div>
  444. {block:Source}<div class="source">- {Source}</div>
  445.  
  446. {/block:Source}
  447. {/block:Quote}
  448.  
  449.  
  450. {block:Link}
  451. <h1><a href="{URL}" target="{Target}">{Name}</a></h1>
  452. {block:Description}{Description}{/block:Description}
  453. {/block:Link}
  454.  
  455.  
  456. {block:Chat}
  457. {block:Title}<h1>{Title}</h1>{/block:Title}
  458. {block:Lines}
  459. {block:Label}
  460. <p><b>{Label}</b>
  461. {/block:Label}
  462. {Line}</p>
  463. {/block:Lines}
  464. {/block:Chat}
  465.  
  466. {block:Audio}
  467. <p><center>{AudioPlayerGrey}<br>
  468. <i>{FormattedPlayCount}</i> plays</center></p>
  469. {block:IfShowCaptions}{block:Caption}{Caption}
  470.  
  471. {/block:Caption}{/block:IfShowCaptions}
  472. {block:IfNotShowCaptions}{block:PermalinkPage}
  473.  
  474. {block:Caption}
  475. {Caption}
  476. {/block:Caption}{/block:PermalinkPage}
  477.  
  478. {/block:IfNotShowCaptions}
  479. {/block:Audio}
  480.  
  481. {block:Video}
  482. {Video-500}
  483. <p><center><i>{FormattedPlayCount}</i> plays</center>
  484. {block:IfShowCaptions}{block:Caption}{Caption}
  485.  
  486. {/block:Caption}{/block:IfShowCaptions}
  487. {block:IfNotShowCaptions}{block:PermalinkPage}
  488.  
  489. {block:Caption}
  490. {Caption}
  491. {/block:Caption}{/block:PermalinkPage}
  492.  
  493. {/block:IfNotShowCaptions}
  494. {/block:Video}
  495.  
  496. {block:Answer}
  497. <div class="ask">
  498. <center>
  499. <h3>{Asker} whispered,</h3>
  500. <p>{Question}</p>
  501. <br>------------<br>
  502. </div>
  503. {Answer}</center>
  504. {/block:Answer}
  505. </div>
  506.  
  507. <center><br>{block:Date}<div class="notecount">
  508. <a href="{Permalink}">{DayOfMonthWithZero} {Month}
  509.  
  510. {Year}</a>{/block:Date}{block:NoteCount} &middot;
  511.  
  512. {NoteCountWithLabel} <img src="{image:Pixel}">
  513.  
  514. {/block:NoteCount}
  515.  
  516. {block:IfReblogLink} &middot; <a
  517.  
  518. href="{ReblogURL}">Reblog</a>{/block:IfReblogLink}
  519. {block:IfShowTags}{block:HasTags}{block:Tags}#<a
  520.  
  521. class="tag" href="{TagURL}">{Tag}</a>&nbsp;
  522.  
  523. {/block:Tags}{/block:HasTags}
  524.  
  525. {/block:IfShowTags}</center>
  526. <br><br>
  527.  
  528. {block:PermalinkPage}
  529. <center>{block:RebloggedFrom}--> <a
  530.  
  531. href="{ReblogRootURL}">
  532.  
  533. {ReblogRootName}</a> (via <a href="{ReblogParentURL}">
  534.  
  535. {ReblogParentName}</a>) {/block:RebloggedFrom}
  536.  
  537. {block:HasTags}
  538.  
  539. <br><br>Tagged: {block:Tags}<a href="{TagURL}">
  540.  
  541. {Tag}.</a> {/block:Tags}{/block:HasTags}<br><br>
  542. </center>
  543. {block:PostNotes}
  544. <div id ="notes">{PostNotes}</div>
  545. {/block:PostNotes}
  546. </div>
  547. {/block:PermalinkPage}
  548.  
  549. {/block:Posts}
  550.  
  551. <td valign="top" style="line-height:16px; letter-spacing:1px; font-size:11px; width:240px; padding-left:2px;">
  552. <div class="h2">ABOUT</div><br>
  553. <center><img src="{image:Sidebar}" max width="280px"></center></div><br>
  554.  
  555. <center>{Description}<br><br>
  556.  
  557. {block:ifmusicplayer}<div class="h2">MUSIC</div><br>
  558. <center>{text:Paste music player code here}</center><br><br><img src="http://static.tumblr.com/vvvx9lt/F0enkg369/tumblr_m9c42whjb81rto88t.gif">{/block:ifmusicplayer}<br><br>
  559.  
  560. <div class="h2">ASK</div><br><iframe frameborder="0" border="0" scrolling="no" width="280" height="250" allowtransparency="true" src="http://www.tumblr.com/ask_form/{text:tumblr username}.tumblr.com" style=”background-color:transparent; overflow:hidden;”></iframe><br><br></div>{block:IfNotInfiniteScrolling}
  561. <div class="h4">{block:PreviousPage}
  562. <a href="{PreviousPage}">&#171;</a>
  563. {/block:PreviousPage}{block:NextPage}
  564. <a href="{NextPage}">&#187;</a>
  565. {/block:NextPage}</font>{/block:IfNotInfiniteScrolling}</div>
  566. </div>
  567. </td>
  568. </tr></tbody>
  569. </table>
  570. <center><div style="background:url({image:Header and Footer});padding-top:25px;padding-bottom:25px; width:850px;"></center>
  571. </br>
  572. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement