Advertisement
ramisaaaaa

Untitled

Jun 3rd, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.23 KB | None | 0 0
  1. <!---
  2. Theme by icy-me0ws
  3. --->
  4.  
  5. <html lang="en">
  6.  
  7. <head>
  8.  
  9. <script type=”text/javascript”>
  10. // <![CDATA[
  11. var colour="{color:sparkles}";
  12. var sparkles=40;
  13.  
  14.  
  15. /****************************
  16. * Tinkerbell Magic Sparkle *
  17. * (c) 2005 mf2fm web-design *
  18. * http://www.mf2fm.com/rv *
  19. * DON’T EDIT BELOW THIS BOX *
  20. ****************************/
  21.  
  22. var x=ox=400;
  23. var y=oy=300;
  24. var swide=800;
  25. var shigh=600;
  26. var sleft=sdown=0;
  27. var tiny=new Array();
  28. var star=new Array();
  29. var starv=new Array();
  30. var starx=new Array();
  31. var stary=new Array();
  32. var tinyx=new Array();
  33. var tinyy=new Array();
  34. var tinyv=new Array();
  35. window.onload=function() { if (document.getElementById) {
  36. var i, rats, rlef, rdow;
  37. for (var i=0; i<sparkles; i++) {
  38. var rats=createDiv(3, 3);
  39. rats.style.visibility=”hidden”;
  40. document.body.appendChild(tiny[i]=rats);
  41. starv[i]=0;
  42. tinyv[i]=0;
  43. var rats=createDiv(5, 5);
  44. rats.style.backgroundColor=”transparent”;
  45. rats.style.visibility=”hidden”;
  46. var rlef=createDiv(1, 5);
  47. var rdow=createDiv(5, 1);
  48. rats.appendChild(rlef);
  49. rats.appendChild(rdow);
  50. rlef.style.top=”2px”;
  51. rlef.style.left=”0px”;
  52. rdow.style.top=”0px”;
  53. rdow.style.left=”2px”;
  54. document.body.appendChild(star[i]=rats);}
  55. set_width();
  56. sparkle();}}
  57. function sparkle() {
  58. var c;
  59. if (x!=ox || y!=oy) {
  60. ox=x;
  61. oy=y;
  62. for (c=0; c<sparkles; c++) if (!starv[c]) {
  63. star[c].style.left=(starx[c]=x)+”px”;
  64. star[c].style.top=(stary[c]=y)+”px”;
  65. star[c].style.clip=”rect(0px, 5px, 5px, 0px)”;
  66. star[c].style.visibility=”visible”;
  67. starv[c]=50;
  68. break;}}
  69. for (c=0; c<sparkles; c++) {
  70. if (starv[c]) update_star(c);
  71. if (tinyv[c]) update_tiny(c);}
  72. setTimeout(“sparkle()”, 40);}
  73. function update_star(i) {
  74. if (—starv[i]==25) star[i].style.clip=”rect(1px, 4px, 4px, 1px)”;
  75. if (starv[i]) {
  76. stary[i]+=1+Math.random()*3;
  77. if (stary[i]<shigh+sdown) {
  78. star[i].style.top=stary[i]+”px”;
  79. starx[i]+=(i%5-2)/5;
  80. star[i].style.left=starx[i]+”px”;}
  81. else {
  82. star[i].style.visibility=”hidden”;
  83. starv[i]=0;
  84. return;}}
  85. else {
  86. tinyv[i]=50;
  87. tiny[i].style.top=(tinyy[i]=stary[i])+”px”;
  88. tiny[i].style.left=(tinyx[i]=starx[i])+”px”;
  89. tiny[i].style.width=”2px”;
  90. tiny[i].style.height=”2px”;
  91. star[i].style.visibility=”hidden”;
  92. tiny[i].style.visibility=”visible”}}
  93. function update_tiny(i) {
  94. if (—tinyv[i]==25) {
  95. tiny[i].style.width=”1px”;
  96. tiny[i].style.height=”1px”;}
  97. if (tinyv[i]) {
  98. tinyy[i]+=1+Math.random()*3;
  99. if (tinyy[i]<shigh+sdown) {
  100. tiny[i].style.top=tinyy[i]+”px”;
  101. tinyx[i]+=(i%5-2)/5;
  102. tiny[i].style.left=tinyx[i]+”px”;}
  103. else {
  104. tiny[i].style.visibility=”hidden”;
  105. tinyv[i]=0;
  106. return;}}
  107. else tiny[i].style.visibility=”hidden”;}
  108. document.onmousemove=mouse;
  109. function mouse(e) {
  110. set_scroll();
  111. y=(e)?e.pageY:event.y+sdown;
  112. x=(e)?e.pageX:event.x+sleft;}
  113. function set_scroll() {
  114. if (typeof(self.pageYOffset)==”number”) {
  115. sdown=self.pageYOffset;
  116. sleft=self.pageXOffset;}
  117. else if (document.body.scrollTop || document.body.scrollLeft) {
  118. sdown=document.body.scrollTop;
  119. sleft=document.body.scrollLeft;}
  120. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  121. sleft=document.documentElement.scrollLeft;
  122. sdown=document.documentElement.scrollTop;}
  123. else {
  124. sdown=0;
  125. sleft=0;}}
  126. window.onresize=set_width;
  127. function set_width() {
  128. if (typeof(self.innerWidth)==”number”) {
  129. swide=self.innerWidth;
  130. shigh=self.innerHeight;}
  131. else if (document.documentElement && document.documentElement.clientWidth) {
  132. swide=document.documentElement.clientWidth;
  133. shigh=document.documentElement.clientHeight;}
  134. else if (document.body.clientWidth) {
  135. swide=document.body.clientWidth;
  136. shigh=document.body.clientHeight;}}
  137. function createDiv(height, width) {
  138. var div=document.createElement(“div”);
  139. div.style.position=”absolute”;
  140. div.style.height=height+”px”;
  141. div.style.width=width+”px”;
  142. div.style.overflow=”hidden”;
  143. div.style.backgroundColor=colour;
  144. return (div);}
  145. // ]]>
  146. </script>
  147.  
  148.  
  149. <link href='http://fonts.googleapis.com/css?family=Miniver|Give+You+Glory|Short+Stack|Loved+by+the+King|Coming+Soon|Raleway:100|Handlee|Indie+Flower' rel='stylesheet' type='text/css'>
  150. <link href='http://fonts.googleapis.com/css?family=Dawning+of+a+New+Day' rel='stylesheet' type='text/css'>
  151. <meta name="color:background" content="#DDDDDD"/>
  152. <meta name="color:text" content="#000"/>
  153. <meta name="color:title" content="#000"/>
  154. <meta name="color:hover" content="#000"/>
  155. <meta name="color:link" content="#000"/>
  156. <meta name="color:sparkles" content="#fff"/>
  157. <meta name="image:Background" content=""/>
  158. <meta name="image:Sidebar" content=""/>
  159. <meta name="if:Show Sidebar Image" content="1"/>
  160. <meta name="if:infinite scrolling" content="1"/>
  161. <meta name="if:show arrows" content="0"/">
  162.  
  163. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  164.  
  165. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  166.  
  167. <style type="text/css">
  168.  
  169. ::-webkit-scrollbar {width: 8px; height: 6px; background: #FFFFFF; }
  170. ::-webkit-scrollbar-thumb { background-color: #ffffff; -webkit-border-radius: 1ex; border: 1px solid #000000 !important;}
  171.  
  172.  
  173. body {
  174. margin:0px;
  175. background-color: {color:Background};
  176. background-image:url({image:Background});
  177. background-attachment: fixed;
  178. background-repeat: repeat;}
  179. body, div, p, textarea, submit, input{
  180. font-family: short stack;
  181. font-size: 10px;
  182. line-height:10px;
  183. letter-spacing:0px;
  184. color:{color:Text};
  185. }
  186.  
  187. @font-face {font-family: "verdana";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
  188.  
  189.  
  190. p {margin:0px; margin-top:0px;}
  191.  
  192. a:link, a:active, a:visited{
  193. color: {color:Link};
  194. text-decoration: none;
  195. }
  196.  
  197. a:hover {
  198. color:{color:Hover};
  199. text-decoration: underline;
  200. font-style: italic;
  201. }
  202.  
  203.  
  204. div#center{
  205. margin:auto;
  206. position:relative;
  207. width:900px;
  208. background-color:;
  209. overflow:auto;
  210. overflow-y:hidden;
  211. }
  212.  
  213. div#content{
  214. float:left;
  215. margin-top: 0px;
  216. width:302px;
  217. padding-bottom: 1px;
  218. padding-right: 2px;
  219. padding-left: 2px;
  220. padding-top: 1px;
  221. margin-left: 380px;
  222. background: #fff;
  223. }
  224.  
  225.  
  226. div#entry{
  227. float:left;
  228. margin-top: 20px;
  229. margin-bottom: 1px;
  230. margin-right: 0px;
  231. margin-left:0px;
  232. background-color:;
  233. margin-top:0px;
  234. {block:IndexPage}
  235. width: 302px;
  236. {/block:IndexPage}
  237. }
  238.  
  239. div#sidebar{
  240. position:fixed !important;
  241. width: 140px;
  242. height: 900px;
  243. background-color:white;
  244. margin: 0px 0px 0px 500px;
  245. padding-top:2px;
  246. padding-bottom:2px;
  247. padding-right:2px;
  248. padding-left:2px;
  249. }
  250.  
  251.  
  252. #postnotes{
  253. text-align: justify;}
  254.  
  255. #postnotes blockquote{
  256. border: 0px;}
  257.  
  258. .title{
  259. font-family: dawning of a new day;
  260. font-size: 25px;
  261. line-height: 13px;
  262. color: {color:Title};
  263. letter-spacing: {text:title letter spacing};
  264. font-weight: normal;
  265. padding:0px 0px 0px 0px;
  266. }
  267.  
  268. @font-face {font-family: "verdana";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
  269.  
  270. .blogtitle{
  271. font-family: dawning of a new day;
  272. font-size: 30px;
  273. line-height: 20px;
  274. color: {color:Title};
  275. letter-spacing: 0px;;
  276. font-weight: bold;
  277. padding:0px 0px 0px 0px;
  278. text-align: left;
  279. text-shadow: #dadada 0px 3px 2px;
  280. margin-top: -30px;
  281. }
  282.  
  283. {block:if300pxpictures}.video embed, .post div.video object {width:300px !important; height:225px !important;}{/block:if300pxpictures}
  284.  
  285. blockquote{
  286. padding:0px 0px 2px 5px;
  287. margin:0px 0px 2px 1px;
  288. border-left: 1px dotted #555555;
  289. }
  290.  
  291. blockquote p, ul{
  292. margin:0px;
  293. padding:0px;
  294. }
  295.  
  296.  
  297. a img{border: 0px;}
  298.  
  299. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  300.  
  301. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  302. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  303.  
  304. .notes img{width:10px; position:relative; top:3px;}
  305.  
  306. #entry .perma a{
  307. color:{Color:Links};
  308. }
  309.  
  310. #entry .perma{
  311. width:302px;
  312. height:40px;
  313. position: absolute;
  314. font-family: dawning of a new day;
  315. font-size: 20px;
  316. line-height: 40px;
  317. text-align: left;
  318. overflow:hidden;
  319. opacity: 0.0;
  320. background-color:#fff;
  321. }
  322.  
  323. #entry:hover .perma{
  324. overflow:visible;
  325. -webkit-transition: opacity 0.7s linear; opacity: 0.8;
  326. -webkit-transition: all 0.7s linear;
  327. -moz-transition: all 0.7s linear;
  328. transition: all 0.6s linear;
  329. }
  330.  
  331.  
  332. small{font-size: 90%;}
  333.  
  334.  
  335. </style>
  336.  
  337.  
  338. <link rel="shortcut icon" href="{Favicon}">
  339. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  340. <meta name="viewport" content="width=820" />
  341. </head>
  342. <body>
  343. <center>
  344. <div id="cage">
  345. <div id="center">
  346. <div id="sidebar">
  347.  
  348.  
  349. {block:ifShowSidebarImage}<a href="/"><img src="{image:sidebar}" width=140px></a>{/block:ifShowSidebarImage}
  350.  
  351. <div class="blogtitle"><br>{title}</div>
  352. ----------------------------
  353. <div style="overflow:auto; width: 140px; height: 50px; margin-top: 7px; border: 0px solid #000000; background-color: #fff; font-family: short stack; font-size: 9px; text-align: center;">{Description}</div>
  354. </div>
  355.  
  356. {block:ifshowarrows}
  357. {block:PreviousPage}<a href="{PreviousPage}"><font size="1"><b>Exhale</b></font></a>{/block:PreviousPage}
  358. {block:NextPage}<a href="{NextPage}"><font size="1"><b>Inhale</b></font></a>{/block:NextPage}
  359. {/block:ifshowarrows}
  360. {block:ifinfinitescrolling}{/block:ifinfinitescrolling}
  361. </div>
  362.  
  363.  
  364.  
  365.  
  366. <div id="content">
  367. {block:Posts}
  368. <div id="entry">
  369.  
  370. {block:Text}
  371. {block:Title}<span class="title">{Title}</span>{/block:Title}
  372. <span class="entrytext">{Body}</span><div align="right"><a href="{Permalink}"></span></a></div>{/block:Text}
  373.  
  374. {block:Link}
  375. <a href="{URL}" class="title">{Name}</a>
  376. {block:Description}{Description}{/block:Description}<div align="right"><a href="{Permalink}"></span></a></div>
  377. {block:Link}
  378.  
  379. {block:Photo}
  380. {block:IndexPage}
  381. <center>
  382. <div class="perma">
  383. <a href="{permalink}">{NoteCountWithLabel} </a> - <a href="{ReblogURL}" target="_blank">Reblog</a></span></div>
  384. <a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=302px/></a></center>{/block:IndexPage}
  385. {block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}
  386. {block:IndexPage}</a>{/block:IndexPage}
  387. {block:PermalinkPage}<center><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=450px/></center>{LinkCloseTag}
  388. {/block:PermalinkPage}
  389.  
  390. {/block:Photo}
  391. {LinkCloseTag}
  392.  
  393. {/block:Photo}
  394.  
  395. {block:Quote}
  396. <span class="entrytext">{Quote}</span>
  397. {block:Source}<b><a href="{Permalink}">{Source}</a></b>{/block:Source}
  398. <P ALIGN=Right><a href="{Permalink}"></a></span>
  399. {/block:Quote}
  400.  
  401. {block:Chat}
  402. {block:Title}<span class="title">{Title}</span>{/block:Title}
  403. <ul class="chat">
  404. {block:Lines}
  405. <li class="user_{UserNumber}">
  406. {block:Label}
  407. <span class="label">{Label}</span>
  408. {/block:Label}
  409.  
  410. {Line}
  411. </li>
  412. {/block:Lines}
  413. </ul>
  414. <div align="right"><a href="{Permalink}"></a></span>
  415. {/block:Chat}
  416.  
  417.  
  418. {block:Audio}
  419. <center><div style="width:170px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
  420. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>
  421. <div align="right"><a href="{Permalink}">Reblog</a><a href="{ReblogURL}" target="_blank"></a></span>
  422. {/block:Audio}
  423.  
  424. {block:Video}<center>
  425. <div class="video">{Video-250}</div><BR>
  426. {block:Caption}<a href="{Permalink}">{Caption}</a>{/block:Caption}</center>
  427. <div class="perma">
  428. <div align="right"><a href="{Permalink}">{timeago}</a>Reblog<a href="{ReblogURL}" target="_blank"></a></span></div>
  429. {block:Video}
  430.  
  431. {block:Answer}
  432. <br>
  433. <div style="margin: 3px; min-height:35px; padding: 2px; background-color: #dadada;">
  434. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px;"/>
  435. {Asker}: {Question}<br></div>{Answer}
  436. <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
  437. {/block:Answer}
  438.  
  439. {block:PostNotes}
  440. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
  441. <div id="postnotes">{PostNotes}</div>
  442.  
  443. {/block:PostNotes}
  444. </div>
  445.  
  446. {/block:Posts}
  447. </div></div>
  448.  
  449. </div>
  450. </center>
  451. </body>
  452. </html>
  453. <div style="position:fixed; bottom:2px; left:2px;">
  454. <a href="http://icy-me0ws.tumblr.com/">credit</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement