Advertisement
ramisaaaaa

Untitled

Sep 12th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.48 KB | None | 0 0
  1. <!--
  2. theme by cyrusnigga
  3. -->
  4.  
  5. <head>
  6.  
  7.  
  8. {block:ifshowsnow}
  9. <script type="text/javascript">
  10. // <![CDATA[
  11. var speed=20; // lower number for faster
  12. var flakes=50; // number of flakes
  13. var colour="#fff"; // colour of flakes
  14. var slush=0; // set to '0' for no slush or otherwise set to height at which slush melts
  15.  
  16. /***************************\
  17. * Let It Snow Effect *
  18. *(c)2004-12 mf2fm web-design*
  19. * http://www.mf2fm.com/rv *
  20. * DON'T EDIT BELOW THIS BOX *
  21. \***************************/
  22. var flks=new Array();
  23. var flkx=new Array();
  24. var flky=new Array();
  25. var fldy=new Array();
  26. var slss=new Array();
  27. var slsh=new Array();
  28. var swide, shigh, boddie;
  29.  
  30. function addLoadEvent(funky) {
  31. var oldonload=window.onload;
  32. if (typeof(oldonload)!='function') window.onload=funky;
  33. else window.onload=function() {
  34. if (oldonload) oldonload();
  35. funky();
  36. }
  37. }
  38.  
  39. addLoadEvent(baby_its_cold_outside);
  40.  
  41. function baby_its_cold_outside() { if (document.getElementById) {
  42. var i;
  43. boddie=document.createElement("div");
  44. boddie.style.position="fixed";
  45. boddie.style.top="0px";
  46. boddie.style.left="0px";
  47. boddie.style.overflow="visible";
  48. boddie.style.width="1px";
  49. boddie.style.height="1px";
  50. boddie.style.backgroundColor="transparent";
  51. document.body.appendChild(boddie);
  52. set_width();
  53. for (var i=0; i<flakes; i++) {
  54. flks[i]=createDiv(3, 3, colour);
  55. flkx[i]=3*Math.floor(Math.random()*swide/3);
  56. flky[i]=Math.floor(Math.random()*shigh);
  57. fldy[i]=2+Math.floor(Math.random()*4);
  58. flks[i].style.left=flkx[i]+"px";
  59. flks[i].style.top=flky[i]+"px";
  60. boddie.appendChild(flks[i]);
  61. }
  62. setInterval("let_it_snow()", speed);
  63. }}
  64.  
  65. function createDiv(height, width, colour) {
  66. var div=document.createElement("div");
  67. div.style.position="absolute";
  68. div.style.height=height+"px";
  69. div.style.width=width+"px";
  70. div.style.overflow="hidden";
  71. div.style.backgroundColor=colour;
  72. return (div);
  73. }
  74.  
  75. window.onresize=set_width;
  76. function set_width() {
  77. var sw_min=999999;
  78. var sh_min=999999;
  79. if (document.documentElement && document.documentElement.clientWidth) {
  80. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  81. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  82. }
  83. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  84. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  85. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  86. }
  87. if (document.body.clientWidth) {
  88. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  89. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  90. }
  91. if (sw_min==999999 || sh_min==999999) {
  92. sw_min=800;
  93. sh_min=600;
  94. }
  95. swide=sw_min-3;
  96. shigh=sh_min;
  97. if (slush) {
  98. if (swide/3>slss.length) for (i=slss.length; i<swide/3; i++) {
  99. if (!slsh[i]) slsh[i]=3;
  100. slss[i]=createDiv(slsh[i], 3, colour);
  101. boddie.appendChild(slss[i]);
  102. }
  103. for (i=0; i<swide/3; i++) {
  104. slss[i].style.height=slsh[i]+"px";
  105. slss[i].style.top=shigh-slsh[i]+"px";
  106. slss[i].style.left=3*i+"px";
  107. }
  108. if (i<slss.length && slss[i].style.left!="-3px") for (; i<slss.length; i++) slss[i].style.left="-3px";
  109. }
  110. }
  111.  
  112. function let_it_snow(c) {
  113. var i, x, o=0, z=0;
  114. for (i=0; i<flakes; i++) {
  115. flky[i]+=fldy[i];
  116. x=Math.floor(flkx[i]/3);
  117. if (slush) {
  118. o+=slsh[x];
  119. if (flky[i]>=shigh-slsh[x]) {
  120. if (x<swide && slsh[x]>slsh[x+1]+3) x++;
  121. else if (x>0 && slsh[x]>slsh[x-1]+3) x--;
  122. slss[x].style.top=shigh-(slsh[x]+=3)+"px";
  123. slss[x].style.height=slsh[x]+"px";
  124. flky[i]=shigh;
  125. }
  126. }
  127. if (flky[i]>=shigh || flkx[i]>swide) {
  128. flky[i]=0;
  129. fldy[i]=2+Math.floor(Math.random()*4);
  130. flkx[i]=3*Math.floor(Math.random()*swide/3);
  131. flks[i].style.left=flkx[i]+"px";
  132. z++;
  133. }
  134. flks[i].style.top=flky[i]+"px";
  135. }
  136. if (o>flakes*slush) for (i=0; i<slsh.length; i++) if (slsh[i]>3) slsh[i]--;
  137. if (z || o>flakes*slush) set_width();
  138. }
  139. // ]]>
  140. </script>
  141. {/block:ifshowsnow}
  142.  
  143. <script type="text/javascript"
  144. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  145. <script type="text/javascript"
  146. src="http://static.tumblr.com/xek1qzw/EmKmn4b8i/document.txt"></script>
  147. <link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
  148. <meta name="color:background" content="#FFFFFF"/>
  149. <meta name="color:text" content="#130C11"/>
  150. <meta name="text:blogtitle" content=""/>
  151. <meta name="color:hover" content="#ffffff"/>
  152. <meta name="color:link" content="#000000"/>
  153. <meta name="color:title" content="#aaaaaa"/>
  154. <meta name="color:scrollbar" content="#dadada"/>
  155. <meta name="image:sidebar" content="1"/>
  156. <meta name="image:background" content="1"/>
  157. <meta name="text:link one" content="" />
  158. <meta name="text:link one title" content="" />
  159. <meta name="text:link two" content="" />
  160. <meta name="text:link two title" content="" />
  161. <meta name="text:link three" content="" />
  162. <meta name="text:link three title" content="" />
  163. <meta name="text:link four" content="" />
  164. <meta name="text:link four title" content="" />
  165. <meta name="text:link five" content="" />
  166. <meta name="text:link five title" content="" />
  167. <meta name="if:show snow" content="1" />
  168.  
  169.  
  170.  
  171. <style type="text/css">
  172.  
  173.  
  174. a {color:{color:link};text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  175.  
  176.  
  177.  
  178. .wrapper{
  179. margin:1px auto;
  180. width: 802px;
  181. }
  182.  
  183. .header{
  184. float: left;
  185. width: 100%;
  186. }
  187.  
  188. .left{
  189. float: left;
  190. margin-right: 20px;
  191. width: 802px;
  192. }
  193.  
  194. .right{
  195. float: right;
  196. width: 200px;
  197. background-color: {color:Background};
  198. }
  199.  
  200.  
  201. p {
  202. margin:0px;
  203. margin-top:0px;
  204. }
  205.  
  206. ::-webkit-scrollbar {width: 5px; height: 3px; background-color:transparent; }
  207.  
  208. ::-webkit-scrollbar-thumb { background-color: {color:scrollbar}; -webkit-border-radius: 5px; border: 1px #dadada !important;}
  209.  
  210.  
  211. body {
  212. margin:0px;
  213. text-decoration: none;
  214. background-color: {color:background};
  215. background-image:url({image:Background});
  216. background-attachment: fixed;
  217. background-repeat: repeat;
  218. color: {color:Text};
  219. font-family: swag;
  220. font-size: 8px;
  221. letter-spacing: 0px;
  222. line-height: 12px;
  223. }
  224.  
  225. body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  226. }
  227. body, a, a:hover {http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  228.  
  229. @font-face { font-family: "swag"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  230.  
  231.  
  232. a:link, a:active, a:visited{
  233. color: {color:Link};
  234. text-decoration: none;
  235. -webkit-transition: color 0.2s ease-out;
  236. -moz-transition: color 0.2s ease-out;
  237. }
  238.  
  239.  
  240.  
  241. a:hover{
  242. color:{color:hover};
  243. text-shadow: 0px 0px 9px #000000;
  244. -webkit-transition: opacity 0.7s linear;
  245. -webkit-transition: all 0.8s ease-out;
  246. -moz-transition: all 0.7s ease-out;
  247. transition: all 0.7s ease-out;
  248. }
  249.  
  250.  
  251. .entry {
  252. float:left;
  253. padding:6px;
  254. margin: 3px;
  255. padding-bottom: 4px;
  256. overflow:hidden;
  257. border: 4px double #ddd;
  258. background-color: #ffffff;
  259. {block:IndexPage}
  260. width: 400px;
  261. {/block:IndexPage}
  262. {block:PermalinkPage}
  263. width:400px;
  264. {/block:PermalinkPage}
  265. }
  266.  
  267. .entry:hover{
  268. {block:iffadedimages}opacity: 1.0;{/block:iffadedimages}
  269. -webkit-transition: opacity 0.9s linear;
  270. }
  271.  
  272.  
  273. div#sidebar{
  274. position:fixed !important;
  275. width: 220px;
  276. opacity: 1.0;
  277. height:auto;
  278. margin-top: 160px;
  279. margin-left: -80px;
  280. padding: 2px;
  281. line-height:12px;
  282. letter-spacing:0px;
  283. margin-bottom: 6px;
  284. background-color:#ffffff;
  285. letter-spacing: 0px;
  286. }
  287.  
  288. #posts {
  289. width:500px;
  290. margin-left:189px;
  291. margin-top: 10px;
  292. background-color: {color:background};
  293. background-image:url({image:Background});
  294. {block:PermalinkPage}
  295. margin-left:189px;
  296. {/block:PermalinkPage}
  297. float:left;
  298. }
  299.  
  300. #infscr-loading{
  301. bottom: -70px;
  302. position: absolute;
  303. left: 50%;
  304. margin-left:-8px;
  305. width:16px;
  306. height:11px;
  307. overflow:hidden;
  308. margin-bottom: 50px;
  309. }
  310.  
  311.  
  312. .title{
  313. font-size: 18px;
  314. line-height:14px;
  315. color: {color:Title};
  316. font-family: cedarville cursive;
  317.  
  318. }
  319.  
  320. .title2{
  321. font-size: 25px;
  322. line-height:14px;
  323. color: {color:Title};
  324. font-family: cedarville cursive;
  325.  
  326. }
  327.  
  328.  
  329. #pagination{
  330. display:none;
  331. }
  332.  
  333.  
  334. #sidepicture {
  335. padding:6px;
  336. border: 4px double #ddd;
  337. padding-bottom: 4px;
  338. }
  339.  
  340. #snow{
  341. opacity:1.0;
  342. position:fixed;
  343. margin-left:-114px;
  344. margin-top:119px;
  345. z-index:1;
  346. }
  347.  
  348.  
  349. #snow img{
  350. width:90px;
  351. position: fixed;
  352. }
  353.  
  354. .entry .perma a{
  355. color:{color:text};}
  356.  
  357. .entry .perma{
  358. width:400px;
  359. position: absolute;
  360. line-height: 13px;
  361. margin-left:0px;
  362. padding-bottom:1px;
  363. padding-top:1px;
  364. text-align: center;
  365. overflow:hidden;
  366. opacity: 0;
  367. height:0px;
  368. background-color:{color:background};
  369. -webkit-transition: all 0.5s ease-out;
  370. -moz-transition: all 0.5s ease-out;
  371. transition: all 0.8s ease-out;
  372. }
  373.  
  374. .entry:hover .perma{
  375. text-align: center;
  376. overflow:visible;
  377. opacity:0.8;
  378. height:14px;
  379. -webkit-transition: all 0.5s linear;
  380. -moz-transition: all 0.5s linear;
  381. transition: all 0.5s linear;
  382.  
  383. }
  384.  
  385. .permalink{
  386. text-transform: normal;
  387. display: block;
  388. text-align: right;
  389. padding-top:1px;
  390. padding-bottom:2px;
  391. margin-top:3px;
  392. border-top:1px solid #dadada;
  393. text-decoration: none;
  394. }
  395.  
  396.  
  397. blockquote{
  398. padding:3px3px 2px 5px;
  399. margin:2px 2px 2px 10px;
  400. border-left: 1px trans #555555;
  401. }
  402.  
  403. #sidebardesc{
  404. opacity:0;
  405. z-index:1;
  406. position:fixed;
  407. width:210px;
  408. height:157px;
  409. padding-top:60px;
  410. margin-top: 6px;
  411. margin-left:5px;
  412. line-height:10px;
  413. background-color: white;
  414. transition: all 0.7s ease-out;
  415. -o-transition-transition: all 0.7s ease-out;
  416. -webkit-transition: all 0.7s ease-out;
  417. -moz-transition: all 0.7s ease-out;
  418. }
  419.  
  420. #sidebar:hover #sidebardesc{
  421. opacity:0.8;
  422. transition: all 0.7s ease-out;
  423. -o-transition-transition: all 0.7s ease-out;
  424. -webkit-transition: all 0.7s ease-out;
  425. -moz-transition: all 0.7s ease-out;
  426.  
  427.  
  428. }
  429.  
  430.  
  431. {CustomCSS}
  432.  
  433.  
  434.  
  435. </style>
  436.  
  437.  
  438.  
  439.  
  440. {block:IndexPage}
  441. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  442. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  443.  
  444. <script type="text/javascript">
  445. $(window).load(function () {
  446. var $content = $('#posts');
  447. $content.masonry({itemSelector: '.entry'}),
  448. $content.infinitescroll({
  449. navSelector : 'div#pagination',
  450. nextSelector : 'div#pagination a#nextPage',
  451. itemSelector : '.entry',
  452. loading: {
  453. finishedMsg: '',
  454. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  455. },
  456. bufferPx : 600,
  457. debug : false,
  458. },
  459. // call masonry as a callback.
  460. function( newElements ) {
  461. var $newElems = $( newElements );
  462. $newElems.hide();
  463. // ensure that images load before adding to masonry layout
  464. $newElems.imagesLoaded(function(){
  465. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  466.  
  467.  
  468. });
  469. });
  470. });
  471. </script>
  472.  
  473. {/block:IndexPage}
  474.  
  475.  
  476. <title>{title}</title>
  477.  
  478. <link rel="shortcut icon" href="{Favicon}">
  479. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  480. <meta name="viewport" content="width=820" />
  481.  
  482. </head>
  483. <body>
  484. <div class="wrapper">
  485. <div class="header">
  486. </span>
  487. </div>
  488.  
  489. <div id="snow"><a href="/"><img src="http://24.media.tumblr.com/tumblr_mehg90XTbk1r43iyto1_250.png" width=100px></a></div>
  490. <div id="sidebar">
  491.  
  492.  
  493.  
  494. <center><div id="sidebardesc"><div class="title2"><center>{text:blogtitle}</div><div style="margin-top:1px;border-bottom:1px dashed #ccc;padding-bottom:2px; padding: 4px;margin-bottom:2px;">{description}</div>{block:IfLinkonetitle}<a href="{text:link one}">{text:link one title}</a> {/block:IfLinkonetitle}
  495. {block:IfLinktwotitle} ❈ <a href="{text:link two}">{text:link two title}</a> {/block:IfLinktwotitle}
  496. {block:IfLinkthreetitle} ❈ <a href="{text:link three}">{text:link three title}</a>{/block:IfLinkthreetitle}
  497. {block:IfLinkfourtitle} ❈ <a href="{text:link four}">{text:link four title}</a>{/block:IfLinkfourtitle}
  498. {block:IfLinkfivetitle} ❈ <a href="{text:link five}">{text:link five title}</a>{/block:IfLinkfivetitle}</div>
  499.  
  500.  
  501.  
  502. <center><div id="sidepicture"><img src="{image:sidebar}" width=200px height= 210px></div>
  503.  
  504.  
  505.  
  506.  
  507. </div>
  508.  
  509. <div class="left">
  510.  
  511.  
  512.  
  513. <div id="posts">
  514.  
  515.  
  516.  
  517. {block:Posts}
  518. <div class="entry">
  519.  
  520. {block:ContentSource}
  521.  
  522. <!— {SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  523.  
  524. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  525.  
  526. {/block:SourceLogo}
  527.  
  528. {block:NoSourceLogo}{noSourceLink}{/block:NoSourceLogo} —>
  529.  
  530. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  531.  
  532. {block:IndexPage}
  533. {/block:IndexPage}
  534.  
  535.  
  536.  
  537. {block:Text}
  538.  
  539.  
  540. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  541.  
  542. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel} - posted {timeago}</a> <a href="{Permalink}"></span></align>
  543. {/block:Text}
  544.  
  545. {block:Link}
  546. <a href="{URL}" class="title">{Name}</a>
  547. {block:Description}{Description}{/block:Description}
  548.  
  549. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel} - posted {timeago}</a> <a href="{Permalink}"></span></align>
  550. {block:Link}
  551.  
  552.  
  553. {block:Photo}
  554.  
  555. <div class="perma">
  556. <a href="{permalink}">{NoteCountWithLabel}</a> / {TimeAgo} / <a href="{ReblogURL}" target="_blank"> reblog this post </a> </span></div>
  557.  
  558.  
  559. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a></div>
  560.  
  561. {LinkCloseTag}{/block:IndexPage}
  562. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}">
  563. <img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a>
  564. {LinkCloseTag}{/block:PermalinkPage}
  565. {/block:Photo}
  566.  
  567. {block:Photoset}
  568. {block:IndexPage}
  569. <div class="perma">
  570. <a href="{permalink}">{NoteCountWithLabel}</a> / {TimeAgo} / <a href="{ReblogURL}" target="_blank"> reblog this post </a> </span></div>
  571. {Photoset-400}
  572. {/block:IndexPage}
  573. {block:PermalinkPage}
  574. {Photoset-400}
  575. {/block:PermalinkPage}
  576. {/block:Photoset}
  577.  
  578. {block:Quote}
  579.  
  580.  
  581.  
  582. <div class="text">
  583. "{Quote}"
  584. {block:Source}
  585. <div class="source">{Source}</div>
  586. {/block:Source}
  587. </div>
  588.  
  589. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel} - posted {timeago}</a> <a href="{Permalink}"></span></align>
  590. {/block:Quote}
  591.  
  592.  
  593. {block:Chat}
  594. {block:Title}<span class="title">{Title}</span>{/block:Title}
  595. <ul class="chat">
  596. {block:Lines}
  597. <li class="user_{UserNumber}">
  598. {block:Label}
  599. <span class="label">{Label}</span>
  600. {/block:Label}
  601.  
  602. {Line}
  603. </li>
  604. {/block:Lines}
  605. </ul>
  606.  
  607. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel} - posted {timeago}</a> <a href="{Permalink}"></span></align>
  608.  
  609. {/block:Chat}
  610.  
  611. {block:Audio}
  612.  
  613.  
  614. <center><div style="width:250px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  615. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>
  616.  
  617.  
  618. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel} - posted {timeago}</a> <a href="{Permalink}"></span></align>
  619. {/block:Audio}
  620.  
  621.  
  622. {block:Video}
  623. <div class="perma">
  624. <a href="{permalink}">{NoteCountWithLabel}</a> / {TimeAgo} / <a href="{ReblogURL}" target="_blank"> reblog this post </a> </span></div>
  625. {block:IndexPage}
  626. {Video-400}
  627. {/block:IndexPage}
  628. {block:PermalinkPage}
  629. {Video-400}
  630. {/block:PermalinkPage}
  631.  
  632. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel} - posted {timeago}</a> <a href="{Permalink}"></span></align>
  633. {block:Video}
  634.  
  635. {block:PermalinkPage}
  636. <center>
  637.  
  638.  
  639. {block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  640. {/block:PermalinkPage}
  641.  
  642.  
  643.  
  644.  
  645. {block:PostNotes}{PostNotes}
  646. {/block:PostNotes}
  647. </div>
  648.  
  649.  
  650.  
  651.  
  652. {/block:Posts}
  653. </div>
  654. </div>
  655. {block:IndexPage}
  656. {block:Pagination}
  657. <div id="pagination">
  658. {block:NextPage}
  659. <a id="nextPage" href="{NextPage}"></a>
  660. {/block:NextPage}
  661. {block:PreviousPage}
  662. <a href="{PreviousPage}"></a>
  663. {/block:PreviousPage}
  664. </div>
  665. {/block:Pagination}
  666. {/block:IndexPage}
  667.  
  668.  
  669. </div>
  670. </body>
  671.  
  672.  
  673. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement