Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.  
  4.  
  5.  
  6.  
  7. <head>
  8.  
  9.  
  10.  
  11. <style>
  12.  
  13. BODY{
  14. cursor:url("http://68.media.tumblr.com/tumblr_m2wj7x16iX1qfamg6.gif"), default;
  15. }
  16.  
  17. </style>
  18.  
  19.  
  20.  
  21.  
  22. <script type="text/javascript">
  23. // <![CDATA[
  24. var colour="{color:sparkles}";
  25. var sparkles=120;
  26.  
  27. /****************************
  28. * Tinkerbell Magic Sparkle *
  29. * (c) 2005 mf2fm web-design *
  30. * http://www.mf2fm.com/rv *
  31. * DON'T EDIT BELOW THIS BOX *
  32. ****************************/
  33. var x=ox=400;
  34. var y=oy=300;
  35. var swide=800;
  36. var shigh=600;
  37. var sleft=sdown=0;
  38. var tiny=new Array();
  39. var star=new Array();
  40. var starv=new Array();
  41. var starx=new Array();
  42. var stary=new Array();
  43. var tinyx=new Array();
  44. var tinyy=new Array();
  45. var tinyv=new Array();
  46.  
  47. window.onload=function() { if (document.getElementById) {
  48. var i, rats, rlef, rdow;
  49. for (var i=0; i<sparkles; i++) {
  50. var rats=createDiv(3, 3);
  51. rats.style.visibility="hidden";
  52. document.body.appendChild(tiny[i]=rats);
  53. starv[i]=0;
  54. tinyv[i]=0;
  55. var rats=createDiv(5, 5);
  56. rats.style.backgroundColor="transparent";
  57. rats.style.visibility="hidden";
  58. var rlef=createDiv(1, 5);
  59. var rdow=createDiv(5, 1);
  60. rats.appendChild(rlef);
  61. rats.appendChild(rdow);
  62. rlef.style.top="2px";
  63. rlef.style.left="0px";
  64. rdow.style.top="0px";
  65. rdow.style.left="2px";
  66. document.body.appendChild(star[i]=rats);
  67. }
  68. set_width();
  69. sparkle();
  70. }}
  71.  
  72. function sparkle() {
  73. var c;
  74. if (x!=ox || y!=oy) {
  75. ox=x;
  76. oy=y;
  77. for (c=0; c<sparkles; c++) if (!starv[c]) {
  78. star[c].style.left=(starx[c]=x)+"px";
  79. star[c].style.top=(stary[c]=y)+"px";
  80. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  81. star[c].style.visibility="visible";
  82. starv[c]=50;
  83. break;
  84. }
  85. }
  86. for (c=0; c<sparkles; c++) {
  87. if (starv[c]) update_star(c);
  88. if (tinyv[c]) update_tiny(c);
  89. }
  90. setTimeout("sparkle()", 40);
  91. }
  92.  
  93. function update_star(i) {
  94. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  95. if (starv[i]) {
  96. stary[i]+=1+Math.random()*3;
  97. if (stary[i]<shigh+sdown) {
  98. star[i].style.top=stary[i]+"px";
  99. starx[i]+=(i%5-2)/5;
  100. star[i].style.left=starx[i]+"px";
  101. }
  102. else {
  103. star[i].style.visibility="hidden";
  104. starv[i]=0;
  105. return;
  106. }
  107. }
  108. else {
  109. tinyv[i]=50;
  110. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  111. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  112. tiny[i].style.width="2px";
  113. tiny[i].style.height="2px";
  114. star[i].style.visibility="hidden";
  115. tiny[i].style.visibility="visible"
  116. }
  117. }
  118.  
  119. function update_tiny(i) {
  120. if (--tinyv[i]==25) {
  121. tiny[i].style.width="1px";
  122. tiny[i].style.height="1px";
  123. }
  124. if (tinyv[i]) {
  125. tinyy[i]+=1+Math.random()*3;
  126. if (tinyy[i]<shigh+sdown) {
  127. tiny[i].style.top=tinyy[i]+"px";
  128. tinyx[i]+=(i%5-2)/5;
  129. tiny[i].style.left=tinyx[i]+"px";
  130. }
  131. else {
  132. tiny[i].style.visibility="hidden";
  133. tinyv[i]=0;
  134. return;
  135. }
  136. }
  137. else tiny[i].style.visibility="hidden";
  138. }
  139.  
  140. document.onmousemove=mouse;
  141. function mouse(e) {
  142. set_scroll();
  143. y=(e)?e.pageY:event.y+sdown;
  144. x=(e)?e.pageX:event.x+sleft;
  145. }
  146.  
  147. function set_scroll() {
  148. if (typeof(self.pageYOffset)=="number") {
  149. sdown=self.pageYOffset;
  150. sleft=self.pageXOffset;
  151. }
  152. else if (document.body.scrollTop || document.body.scrollLeft) {
  153. sdown=document.body.scrollTop;
  154. sleft=document.body.scrollLeft;
  155. }
  156. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  157. sleft=document.documentElement.scrollLeft;
  158. sdown=document.documentElement.scrollTop;
  159. }
  160. else {
  161. sdown=0;
  162. sleft=0;
  163. }
  164. }
  165.  
  166. window.onresize=set_width;
  167. function set_width() {
  168. if (typeof(self.innerWidth)=="number") {
  169. swide=self.innerWidth;
  170. shigh=self.innerHeight;
  171. }
  172. else if (document.documentElement && document.documentElement.clientWidth) {
  173. swide=document.documentElement.clientWidth;
  174. shigh=document.documentElement.clientHeight;
  175. }
  176. else if (document.body.clientWidth) {
  177. swide=document.body.clientWidth;
  178. shigh=document.body.clientHeight;
  179. }
  180. }
  181.  
  182. function createDiv(height, width) {
  183. var div=document.createElement("div");
  184. div.style.position="absolute";
  185. div.style.height=height+"px";
  186. div.style.width=width+"px";
  187. div.style.overflow="hidden";
  188. div.style.backgroundColor=colour;
  189. return (div);
  190. }
  191. // ]]>
  192. </script>
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209. <script>
  210. if(window.location.pathname == '/') location.replace('/tagged/aes');/*replace /tagged/xyz/ with whatever your tag is!*/
  211. </script>
  212.  
  213. <!-----
  214. toothache theme by negg
  215. base code by animecharacter
  216. dont touch the credit
  217. ----->
  218.  
  219. <meta charset="utf-8">
  220. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  221. {block:Description}
  222. <meta name="description" content="{MetaDescription}" />
  223. {/block:Description}
  224.  
  225.  
  226. <title>{Title}</title>
  227.  
  228. <link rel="shortcut icon" href="{image:favicon}">
  229. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  230. <link rel="stylesheet" href="http://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  231.  
  232. <script src="http://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  233.  
  234. <meta name="image:sidebar img" content=""/>
  235. <meta name="image:bg" content=""/>
  236. <meta name="image:permalink" content=""/>
  237. <meta name="image:favicon" content="">
  238. <meta name="image:link div" content="">
  239.  
  240.  
  241. <meta name="color:bg" content="#fff"/>
  242. <meta name="color:text color" content=""/>
  243. <meta name="color:link color" content=""/>
  244. <meta name="color:link border" content=""/>
  245. <meta name="color:link hover" content=""/>
  246. <meta name="color:post bg" content=""/>
  247. <meta name="color:highlight" content="#000000" />
  248. <meta name="color:highlight text" content="#ffffff" />
  249. <meta name="color:scrollbar" content="#ffffff" />
  250. <meta name="color:scrollbar thumb" content="#ffffff" />
  251. <meta name="color:sparkles" content="#ffffff" />
  252.  
  253. <meta name="text:font size" content="13" />
  254.  
  255. <meta name="if:show title" content="" />
  256. <meta name="if:transparent sidebar" content="" />
  257. <meta name="if:circle sidebar img" content="" />
  258. <meta name="if:show description" content="" />
  259. <meta name="if:full bg" content="" />
  260. <meta name="if:post bg" content="" />
  261. <meta name="if:post bg image" content="" />
  262. <meta name="if:infinite scroll" content="0">
  263. <meta name="if:link div" content="0">
  264. <meta name="if:link dropdown" content="0">
  265. <meta name="if:text links" content="0">
  266.  
  267. <meta name="select:font" content="arial">
  268. <meta name="select:font" content="ms pgothic">
  269. <meta name="select:font" content="lucida sans">
  270. <meta name="select:font" content="times new roman">
  271. <meta name="select:font" content="verdana">
  272.  
  273.  
  274.  
  275. <meta name="text:link 1" content=""/>
  276. <meta name="text:link 1 URL" content="" />
  277. <meta name="text:link 2" content=""/>
  278. <meta name="text:link 2 URL" content="" />
  279. <meta name="text:link 3" content=""/>
  280. <meta name="text:link 3 URL" content="" />
  281. <meta name="text:link 4" content=""/>
  282. <meta name="text:link 4 URL" content="" />
  283.  
  284. <style type="text/css">
  285.  
  286. body {
  287. color:{color:text color};
  288. background-color:{color:bg};
  289. font-family:{select:font};
  290. background-image:url('{image:bg}');
  291. {block:iffullbg}background-size:100%; background-attachment: fixed;{/block:iffullbg}
  292. font-size:{text:font size}px;
  293.  
  294. line-height:16px;
  295. text-align:justify
  296. }
  297.  
  298. p{
  299. margin:0 0 10px 0;
  300. padding:0;
  301. }
  302.  
  303. pre {
  304. white-space: pre-wrap;
  305. white-space: -moz-pre-wrap;
  306. white-space: -pre-wrap;
  307. white-space: -o-pre-wrap;
  308. word-wrap: break-word;
  309. }
  310.  
  311.  
  312. ::selection {
  313. background: {color:highlight};
  314. color: {color:highlight text};
  315. }
  316. ::-moz-selection {
  317. background: {color:highlight};
  318. color: {color:highlight text};
  319. }
  320.  
  321.  
  322. ::-webkit-scrollbar {
  323. width: 9px;
  324. height: 3px;
  325. background: {color:scrollbar};
  326. }
  327.  
  328. ::-webkit-scrollbar-thumb {
  329. background-color:{color:scrollbar thumb};
  330.  
  331. }
  332.  
  333.  
  334. a{
  335. color:{color:link color};
  336. text-shadow: -1px 0 {color:link border}, 0 1px {color:link border}, 1px 0 {color:link border}, 0 -1px {color:link border};
  337. text-decoration:none;
  338. letter-spacing:1px;
  339. font:{select:font};
  340. font-size:{text:font size};
  341. }
  342.  
  343. a:hover{
  344. color:{color:link hover};
  345. }
  346.  
  347. li{
  348. margin-left:-15px;
  349. }
  350.  
  351. /*
  352. containers etc
  353. */
  354. #wrapper{
  355. width:600px;
  356. margin:50px auto;
  357. height:100%;
  358. }
  359.  
  360.  
  361. #sidebar{
  362. background:#fff;
  363. {block:iftransparentsidebar} background:transparent;{/block:iftransparentsidebar}
  364. width: 180px;
  365. position:fixed;
  366. margin-top:20px;
  367. margin-left:-90px;
  368. margin-top:10px;
  369. margin-bottom:145px;
  370. padding:10px;
  371. text-align:center;
  372. border-radius:20px;
  373. }
  374.  
  375. #sidebar img{
  376. background:transparent;
  377. width: px;
  378. max-width:100%;
  379. {block:ifcirclesidebarimg}border-radius:100px;{/block:ifcirclesidebarimg}
  380. margin-left:-10px;
  381. }
  382.  
  383. #links {
  384. {block:iftextlinks}
  385. margin-top:10px;
  386. font-size:{text:font size};
  387. width:100%;
  388. text-align:center;
  389. {/block:iftextlinks}
  390.  
  391. {block:iflinkdropdown}
  392.  
  393.  
  394. <select>
  395. <option value={text:link1URL}>{text:link1}</option>
  396. <option value={text:link2URL}>{text:link2}</option>
  397. <option value={text:link3URL}>{text:link3}</option>
  398. <option value={text:link4URL}>{text:link4}</option>
  399.  
  400. </select>
  401.  
  402. {/block:iflinkdropdown}
  403.  
  404. }
  405.  
  406. #shit{position:fixed; bottom:10px; left:10px; font-family:{select:font};}
  407.  
  408. #content{
  409. width:500px;
  410. margin-left:200px;
  411. overflow:hidden;
  412. }
  413.  
  414.  
  415. .post{
  416. <font color:{color:text color};>text</font>
  417. width:400px;
  418. margin:0 50px 50px 0;
  419. text-align:justify;
  420. overflow:visible;
  421. padding:20px;
  422. border-radius:7px;
  423.  
  424. {block:ifpostbg}
  425. background:{color:post bg};
  426. {/block:ifpostbg}
  427. }
  428.  
  429.  
  430.  
  431.  
  432. #sidebar img, .post img{
  433. max-width:100%;
  434. }
  435.  
  436.  
  437. #nav{
  438.  
  439. margin:80px ;
  440. {block:PreviousPage} img src= {image:previous}; {/block:PreviousPage}
  441. {block:NextPage} img src= {image:next}; {/block:NextPage}
  442. }
  443.  
  444. #footer{
  445. text-align: center;
  446. margin-left: auto;
  447. margin-right: auto;
  448. }
  449.  
  450.  
  451. /*
  452. content in the body of the posts - quotes, asks, etc
  453. "media" contains photos, photosets, videos, audio posts
  454. */
  455.  
  456.  
  457.  
  458. .media{
  459. margin:0 0 10px 0;
  460. }
  461.  
  462. #audio {
  463. width:100%;
  464. height:50px;
  465. margin-bottom:10px;
  466. display:block;
  467. padding:5px;
  468. }
  469.  
  470. #ask_form{ height: 255px!important;}
  471.  
  472.  
  473. #audio .player{background:#FFF;height:25px;width:25px;padding:2px;overflow:hidden;position:absolute;margin-top:8px;margin-left:8px;border:2px solid #fff;opacity:0.8;z-index:2;}
  474.  
  475.  
  476. .art{width:55px;height:55px; position:absolute;display:block;z-index:1;}
  477. .art img{width:50px;height:50px;}
  478.  
  479. .songtitle{margin-left:60px;height:40px;padding:5px 10px;line-height:13px;overflow:auto;font-size:{text:font size}px;}
  480.  
  481. .title{
  482. font-weight:normal;
  483. font-size:18px;
  484. margin:0 0 10px 0;
  485. }
  486.  
  487.  
  488. .quote{
  489. font-weight:normal;
  490. font-size:16px;
  491. font-style:italic;
  492. margin:0 0 10px 0;
  493. }
  494.  
  495. .question{
  496. margin-bottom:10px;
  497. }
  498.  
  499. blockquote{
  500. margin:0 0 10px 10px;
  501. padding:0 0 0 10px;
  502. border-left:solid 1px #000;
  503. }
  504.  
  505. /*
  506. post footers - date, tags, via and source
  507. */
  508. .post .footer{
  509. margin:0;
  510. text-align:center;
  511. }
  512.  
  513. /*
  514. post notes
  515. */
  516. ol.notes{
  517. list-style-type:none;
  518. padding:0;
  519. margin:0;
  520. }
  521.  
  522. ol.notes li.note img{
  523. width:16px;
  524. height:16px;
  525. }
  526.  
  527. ol.notes li.note{
  528. margin:0px;
  529. }
  530.  
  531. {CustomCSS}
  532. </style>
  533.  
  534. <style type="text/css">{CustomCSS}</style>
  535.  
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542. {block:ifinfinitescroll}
  543. <script type="text/javascript" src="http://yourjavascript.com/21212225154/esz.js"></script>
  544. {/block:ifinfinitescroll}
  545.  
  546. </head>
  547.  
  548. <body>
  549. <div id="wrapper">
  550.  
  551. <div id="sidebar">
  552. {block:ifshowtitle}<div id="title"><div class="title"><a href="/"><h2>{Title}</h2></a></div></div>{block:ifshowtitle}
  553. <a href="/">
  554.  
  555. <img src="{image:sidebar img}"></a>
  556. {block:ifshowdescription}<div id="description">{Description}</div> {/block:ifshowdescription}
  557. <h2></h2>
  558.  
  559. {block:iflinkdiv}
  560. <img src="{image:link div}" alt="" style="width:px;height:px;background:transparent">{/block:iflinkdiv}
  561. <div id="links">
  562. {block:iftextlinks}
  563. <a href="{text:link 1 url}" title="{text:link 1}">{text:link 1}</a>
  564. {text:link symbol}
  565. <a href="{text:link 2 url}" title="{text:link 2}">{text:link 2}
  566. <a href="{text:link 3 url}" title="{text:link 3}">{text:link 3}
  567. <a href="{text:link 4 url}" title="{text:link 4}">{text:link 4}
  568. {/block:iftextlinks}
  569.  
  570. {block:iflinkdropdown}
  571.  
  572.  
  573.  
  574. <select>
  575. <option value={text:link 1 url}>{text:link 1}</option>
  576. <option value={text:link 2 url}>{text:link 2}</option>
  577. <option value={text:link 3 url}>{text:link 3}</option>
  578. <option value={text:link 4 url}>{text:link 4}</option>
  579.  
  580.  
  581. </select>
  582.  
  583. {/block:iflinkdropdown}
  584. </a>
  585.  
  586. </div> </div>
  587.  
  588. <div id="content">
  589.  
  590. {block:Posts}
  591. <div class="post">
  592. {block:Text}
  593. {block:Title}
  594. <div class="title">{Title}</div>
  595. {/block:Title}
  596. {Body}
  597. {/block:Text}
  598.  
  599.  
  600.  
  601. {block:Photo}
  602. <div class="media">{linkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{linkCloseTag}</div>
  603. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  604. {/block:Photo}
  605.  
  606. {block:Photoset}
  607. <div class="media">{Photoset-400}</div>
  608. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  609. {/block:Photoset}
  610.  
  611. {block:Quote}
  612. <div class="quote">"{Quote}"</div>
  613. {block:Source}
  614. <div class="quotesource">{Source}</div>
  615. {/block:Source}
  616. {/block:Quote}
  617.  
  618. {block:link}
  619. <div class="title"><a href="{URL}">{Name}</a></div>
  620. {block:Description}
  621. <div class="description">{Description}</div>
  622. {/block:Description}
  623. {/block:link}
  624.  
  625. {block:Chat}
  626. {block:Title}
  627. <div class="title">{Title}</div>
  628. {/block:Title}
  629.  
  630. {block:Lines}
  631. <div class="{Alt} user_{UserNumber}">
  632. {block:Label}
  633. <b>{Label}</b>{/block:Label}
  634. &nbsp;{Line}
  635. </div>
  636. {/block:Lines}
  637. {/block:Chat}
  638.  
  639. {block:Video}
  640. <div class="media">{Video-500}</div>
  641. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  642. {/block:Video}
  643.  
  644. {block:Audio}
  645. <div id="audio">
  646. <div class="art">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  647. <div class="player">{AudioPlayerWhite}</div>
  648. <div class="songtitle">
  649. {block:TrackName}<i>{TrackName}</i>{/block:TrackName}<br>
  650. {block:Artist}{Artist}{/block:Artist}<br>
  651. {block:Album}{Album}{/block:Album}</div></div>
  652. {block:Caption}{Caption}{/block:Caption}
  653. {/block:Audio}
  654.  
  655. {block:Answer}{Asker} asked: {Question}<br> <br>{Answer}{/block:Answer}
  656.  
  657.  
  658.  
  659. {block:Date}
  660. <div class="footer">
  661. <a href="{Permalink}">{block:NoteCount} {NoteCountWithLabel}{/block:NoteCount}</a>
  662.  
  663. <img src="{image:permalink}"/> <a href="{ReblogURL}" target="_blank" class="details">reblog</a>{block:HasTags}<br></text>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  664.  
  665. </div>
  666.  
  667. {block:PermalinkPage}
  668. {block:NoteCount}
  669. {block:PostNotes}{PostNotes}{/block:PostNotes}
  670. {/block:NoteCount}
  671. {/block:PermalinkPage}
  672. {/block:Date}
  673.  
  674. </div>
  675. {/block:Posts}
  676.  
  677. <div id="shit"><a href="http://negg.tumblr.com/" title="toothache theme">❤</a></div>
  678.  
  679. {block:ifnotinfinitescroll}
  680. {block:Pagination}
  681. <div id="nav">
  682. <center>{block:PreviousPage}> before</a>{/block:PreviousPage}
  683. {block:NextPage}<a href="{NextPage}">after</a>{/block:NextPage}</center>
  684. </div>
  685. {/block:Pagination}
  686. </div>
  687. </div>
  688. </div></center>{/block:ifnotinfinitescroll}
  689. </div>
  690.  
  691. </div>
  692.  
  693. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  694. <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  695.  
  696. </body>
  697. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement