Advertisement
Guest User

Untitled

a guest
Dec 10th, 2012
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.89 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!--
  6. Theme by themesforya
  7. Basecode by: Hussy-Glamour
  8. - DO NOT REMOVE CREDIT!
  9.  
  10. -->
  11.  
  12. <head> <!-- DEFAULT VARIABLES -->
  13.  
  14. <!-- CURSOR -->
  15. <style type="text/css">body, a, a:hover {cursor: url('{image:cursor}'), progress;}</style>
  16.  
  17.  
  18.  
  19. <META name="image:cursor" content="http://media.tumblr.com/tumblr_lpyq1ipTIe1qcn2vb.gif" />
  20. <META name="image:favicon" content="http://olhar-43.net/conteudo/minigifs/11/111.gif" />
  21. <META name="color:Ask Border" content="#E8D8DE">
  22. <META name="color:Scrollbar" content="#E8D8DE">
  23. <META name="image:Background" content="" />
  24. <META name="color:Background" content="#E8D8DE">
  25. <META name="color:link" content="#898989">
  26. <META name="color:link hover" content="#fff">
  27. <META name="color:navi background" content="#Fff">
  28. <META name="color:navi hover background" content="#FDDDEF">
  29. <META name="color:title word color" content="#FA7BC3">
  30. <META name="color:description box background" content="#FDDDEF">
  31. <META name="color:description box border" content="#Fff">
  32. <META name="color:Reblog background" content="#F6EAF6">
  33.  
  34. <META name="text:Link 1 Title" content="" />
  35. <META name="text:Link 1" content="" />
  36. <META name="text:Link 2 Title" content="" />
  37. <META name="text:Link 2" content="" />
  38. <META name="text:Link 3 Title" content="" />
  39. <META name="text:Link 3" content="" />
  40. <META name="text:Link 4 Title" content="" />
  41. <META name="text:Link 4" content="" />
  42. <META name="text:Link 5 Title" content="" />
  43. <META name="text:Link 5" content="" />
  44. <META name="text:Link 6 Title" content="" />
  45. <META name="text:Link 6" content="" />
  46. <META name="text:Link 7 Title" content="" />
  47. <META name="text:Link 7" content="" />
  48. <META name="text:Link 8 Title" content="" />
  49. <META name="text:Link 8" content="" />
  50. <META name="text:Link 9 Title" content="" />
  51. <META name="text:Link 9" content="" />
  52. <META name="text:Link 10 Title" content="" />
  53. <META name="text:Link 10" content="" />
  54. <META name="image:sidebar image" content="http://25.media.tumblr.com/tumblr_m9pusr464B1qabf0wo1_500.jpg" />
  55. <META name="image:smaller sidebar image" content="http://24.media.tumblr.com/tumblr_mayn8tI6fV1rnpo7yo1_500.jpg" />
  56. <META name="image:smaller sidebar image 1" content="http://25.media.tumblr.com/tumblr_m9ob6oRu7E1rt3yk6o1_500.jpg" />
  57. <META name="image:smaller sidebar image 2" content="http://25.media.tumblr.com/tumblr_mb0xp3CkTP1qcwc1yo1_500.jpg" />
  58.  
  59. <title>{Title}</title>
  60.  
  61.  
  62.  
  63.  
  64. <script type="text/javascript">
  65. // <![CDATA[
  66. var bgcolour="#ffffff"; // background colour
  67. var fgcolour="{color:title word color}"; // foreground colour
  68. var speed=100; // speed of bubbling, lower is faster
  69. var shades=10; // number of shades of bubble
  70.  
  71. /****************************
  72. * Bubbling Text Effect *
  73. *(c) 2003-6 mf2fm web-design*
  74. * http://www.mf2fm.com/rv *
  75. * DON'T EDIT BELOW THIS BOX *
  76. ****************************/
  77. var bubbcol=new Array();
  78. var bubbler, bubbtxt;
  79. var bubbchr=new Array();
  80. window.onload=function() { if (document.getElementById) {
  81. for (bubbler=0; bubbler<=shades; bubbler++) {
  82. bubbtxt="#";
  83. for (var i=1; i<6; i+=2) {
  84. var bg=parseInt(bgcolour.substring(i,i+2),16);
  85. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  86. }
  87. bubbcol[bubbler+1]=bubbtxt;
  88. }
  89. bubbler=document.getElementById("bubble");
  90. bubbtxt=bubbler.firstChild.nodeValue;
  91. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  92. for (var i=0; i<bubbtxt.length; i++) {
  93. var bubbi=document.createElement("span");
  94. bubbi.setAttribute("id", "bubb"+i);
  95. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  96. bubbler.appendChild(bubbi);
  97. }
  98. bubbler=setInterval ("bubbling()", speed);
  99. }}
  100.  
  101. function dechex(dec) {
  102. var hex=dec.toString(16);
  103. if (dec<16) return "0"+hex;
  104. else return hex;
  105. }
  106.  
  107. function bubbling() {
  108. for (var i=0; i<bubbtxt.length; i++) {
  109. var bubbme=document.getElementById("bubb"+i);
  110. if (bubbchr[i]) {
  111. bubbme.style.color=bubbcol[bubbchr[i]];
  112. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  113. }
  114. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  115. }
  116. }
  117. // ]]>
  118. </script>
  119.  
  120. <!--favicon-->
  121. <link rel="shortcut icon" href="{image:favicon}">
  122.  
  123. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  124. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  125.  
  126.  
  127.  
  128. <style type="text/css">
  129.  
  130. div.navigate a{
  131. color: #484848; display:block; width: 60px; height: 12px; text-align: center; padding-left:2px;padding-right:2px;padding-top:2px; padding-bottom:2px;margin-left:0px; margin-top:5px; position:relative; text-align: center; z-index:1;display: inline-block;font-size:8px; font-family:century gothic;text-transform:uppercase;background-color:#fff;opacity:0.5;-webkit-border-radius: 6px 0 0 6px;
  132. -moz-border-radius:6px 0 0 6px;
  133. border-radius: 6px 0 0 6px;
  134. }
  135. div.navigate a:hover{
  136. background-color:#F6EAF6;
  137. opacity:1.0;}
  138.  
  139.  
  140. div.navigate1 a{
  141. color: #484848; display:block; width: 80px; height: 13px; text-align: center; padding-left:2px;padding-right:2px;padding-top:5px; padding-bottom:2px;margin-left:0px; margin-top:5px; position:relative; text-align: center; z-index:1;display: inline-block;font-size:8px; font-family:century gothic;text-transform:uppercase;background-color:{color:navi background};opacity:0.8;
  142. }
  143. div.navigate1 a:hover{
  144. background-color:{color:navi hover background};
  145. }
  146.  
  147.  
  148. /*** COLOR SCROLL BAR ***/
  149. ::-webkit-scrollbar {width: 3px; height: 5px; background-color:#fff; }
  150.  
  151. ::-webkit-scrollbar-thumb { background-color:{color:Scrollbar};}
  152.  
  153.  
  154.  
  155. #asker{
  156. margin-top:1px;
  157. padding:10px 10px 10px 10px;
  158. border-bottom: 1px dashed {color:Ask Border};
  159. }
  160.  
  161. #answer{
  162. margin-top:1px;
  163. padding:10px 10px 10px 10px;
  164.  
  165. }
  166.  
  167.  
  168. /*** THIS IS WHERE YOU CAHNGE THE BACKGROUND COLOR/ USE A BACKGROUND IMAGE ***/
  169. body{
  170. color:#898989;
  171. background-color:{color:Background};
  172. background-image:url({image:Background});
  173. background-postition:center;
  174. background-attachment: fixed;
  175. background-repeat: yes-repeat;
  176. font-family: "century gothic";
  177. font-size: 10px;
  178. letter-spacing: 0px;
  179. line-height: 11px;
  180. text-align:justify;
  181. }
  182.  
  183.  
  184.  
  185.  
  186. /*** COLOR OF THE LINK ***/
  187. a:link, a:active, a:visited{
  188. color:{color:link};
  189. text-decoration:none;
  190. }
  191.  
  192.  
  193.  
  194. /*** COLOR OF THE LINK, WHEN YOU HOVER IT ***/
  195. a:hover {
  196. color:{color:link hover};
  197. text-decoration: none;
  198. }
  199.  
  200.  
  201. /*** HEADER ***/
  202. h2{
  203. color: #000;
  204. font-family: "century gothic";
  205. font-size:13px;
  206. line-height:12px;
  207. letter-spacing:1px;
  208. font-weight:normal;
  209. margin:0px;
  210. padding:0px;
  211. margin-bottom:-0px;
  212. text-align:center;
  213. }
  214.  
  215.  
  216.  
  217. #bottominfo{
  218. border-top:1px solid #ffffff;
  219. padding:2px 0px 0px 0px;
  220. display:block;
  221. margin-top:330px;
  222. }
  223.  
  224. #info{
  225. float:left;
  226. width:490px;
  227. padding:3px;
  228. margin:5px;
  229. margin-right:23px;
  230. background-color: ;
  231. border: 1px solid #;
  232. }
  233.  
  234. .pagination {
  235. display: none;
  236. }
  237.  
  238. @font-face { font-family: "lainie"; src: url('http://static.tumblr.com/oetadgc/Uialyjfaa/laine.ttf'); }
  239.  
  240. /**SIDEBAR**/
  241.  
  242. #sidebar11{
  243. position:fixed !important;
  244. margin-top:440px;
  245. margin-left:127px;
  246. padding-top:5px;
  247. }
  248.  
  249. #sidebar10{
  250. position:fixed !important;
  251. margin-top:320px;
  252. margin-left:125px;
  253. text-align:center;
  254. height:auto;
  255. width:200px;
  256. z-index:999;
  257. padding-left:4px;
  258. padding-top:6px;
  259. padding-bottom:2px;
  260. padding-right:2px;
  261. font-family:"lainie";
  262. font-size:31px;
  263. line-height:12px;
  264. }
  265.  
  266.  
  267.  
  268. #sidebar8{
  269. position:fixed !important;
  270. margin-top:345px;
  271. margin-left:125px;
  272. text-align:center;
  273. height:80px;
  274. width:200px;
  275. z-index:999;
  276. padding-left:4px;
  277. padding-top:6px;
  278. padding-bottom:2px;
  279. padding-right:2px;
  280. background-color:{color:description box background};
  281. border: 1px solid {color:description box border};
  282. }
  283.  
  284. #sidebar9{
  285. position:fixed !important;
  286. margin-top:310px;
  287. margin-left:32px;
  288. text-align:center;
  289. height:auto;
  290. width:90px;
  291. z-index:999;
  292. background-color:;
  293. border-top: 2px dotted #fff;
  294. }
  295.  
  296. #sidebar6{
  297. position:fixed !important;
  298. margin-top:100px;
  299. margin-left:32px;
  300. text-align:center;
  301. width:300px;
  302. background-color:#fff;
  303. z-index:999;
  304. padding-left:3px;
  305. padding-top:3px;
  306. padding-bottom:3px;
  307. padding-right:3px;
  308. opacity:0.6;
  309. }
  310.  
  311. #sidebar7{
  312. position:fixed !important;
  313. margin-top:150px;
  314. margin-left:262px;
  315. text-align:center;
  316. height:auto;
  317. width:80px;
  318. z-index:999;
  319. padding-left:3px;
  320. padding-top:3px;
  321. padding-bottom:3px;
  322. padding-right:3px;
  323. }
  324.  
  325.  
  326.  
  327. /**END OF SIDEBAR**/
  328.  
  329.  
  330. /*** POSTS ***/
  331. #center{
  332. -moz-box-shadow: 0 0 0px {color:shadow};
  333. -webkit-box-shadow: 0 0 0px {color:shadow};
  334. width:656px;
  335. margin-left:400px;
  336. height:auto;
  337. {block:PermalinkPage}
  338. width:526px;
  339. {/block:PermalinkPage}
  340. position:absolute;
  341. margin-top:53px;
  342. padding-right:5px;
  343. padding-left: 5px;
  344. background-color: ;
  345. }
  346.  
  347.  
  348.  
  349.  
  350.  
  351. #question{
  352. border-bottom:1px solid #ffffff;
  353. overflow:SHOW;
  354. padding-bottom:3px;
  355. margin-bottom:3px;}
  356.  
  357.  
  358.  
  359.  
  360.  
  361. #entry {
  362. border:0px solid; border-color:{color:Border};
  363. background-image: url();
  364. background-color:#fff;
  365. float:left;
  366. {block:IndexPage}
  367. width: 300px;
  368. {/block:IndexPage}
  369. {block:PermalinkPage}
  370. width:500px;
  371. font color: #000;
  372. {/block:PermalinkPage}
  373. height: auto;
  374. overflow:hidden;
  375. margin-top:8px;
  376. margin-left:8px;
  377. padding-top:5px;
  378. padding-bottom:5px;
  379. padding-left:5px;
  380. padding-right:5px;
  381. }
  382.  
  383.  
  384.  
  385. .hoverrebperma{
  386. color:#000;
  387. opacity:0;
  388. font-size: 8px;
  389. text-align: center;
  390. text-transform:uppercase;
  391. font-family: century gothic;
  392. width: 180px;
  393. height: 12px;
  394. background-color: {color:Reblog background};
  395. border: 0px solid #000;
  396. display: inline-block;
  397. padding-top:2px;
  398. padding-left:1px;padding-right:1px;
  399. position:absolute;
  400. -webkit-transform: rotate(0deg);
  401. -moz-transform: rotate(0deg);
  402. -ms-transform: rotate(0deg);
  403. -o-transform: rotate(0deg);
  404. transform: rotate(0deg);
  405. -webkit-transition: 0.5s; -moz-transition: 0.5s; -o-transition: 0.5s; -ms-transition: 0.5s;
  406. transition: 0.5s;
  407.  
  408. }
  409.  
  410.  
  411.  
  412. #entry:hover .hoverrebperma{opacity: 1; margin-left:20px;margin-top:5px;}
  413. #entry:hover .hoverrebperma:hover {opacity: 1; margin-left:20px;margin-top:5px;}
  414.  
  415.  
  416.  
  417. <style type="text/css">{CustomCSS]</style>
  418.  
  419.  
  420.  
  421.  
  422.  
  423. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  424.  
  425. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  426.  
  427. <script>
  428. $(function(){
  429. var $container = $('#center');
  430. $container.imagesLoaded(function(){
  431. $container.masonry({
  432. itemSelector: '#entry',
  433. });
  434. });
  435. $container.infinitescroll({
  436. itemSelector : "#entry",
  437. navSelector : "div.pagination",
  438. nextSelector : ".pagination a#next",
  439. loadingImg : "",
  440. loadingText : "<em></em>",
  441. bufferPx : 10000,
  442. extraScrollPx: 12000,
  443. },
  444. // trigger Masonry as a callback
  445. function( newElements ) {
  446. var $newElems = $( newElements ).css({ opacity: 0 });
  447. // ensure that images load before adding to masonry layout
  448. $newElems.imagesLoaded(function(){
  449. $newElems.animate({ opacity: 1 });
  450. $container.masonry( 'appended', $newElems, true );
  451. });
  452. }
  453. );
  454. });
  455. </script>
  456.  
  457. </head>
  458.  
  459.  
  460. <body>
  461.  
  462.  
  463. <div class="pagination">
  464. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"></a> &middot;{/block:PreviousPage} {block:NextPage}<a href="{NextPage}" id="next"></a>{/block:NextPage}{/block:Pagination}
  465. </div>
  466.  
  467. <div id="sidebar8">
  468.  
  469. {description}
  470.  
  471. </div>
  472. <div id="sidebar10">
  473. <span id="bubble">{title}</span>
  474. </div>
  475.  
  476. <div id="sidebar6">
  477.  
  478. <img src="{image:sidebar image}" width="300px">
  479.  
  480. </div>
  481.  
  482. <div id="sidebar9">
  483. <div class="navigate1">
  484. {block:ifLink1}<a href="{text:Link 1}">{text:Link 1 Title}</a>{/block:ifLink1}
  485. {block:ifLink2}<a href="{text:Link 2}">{text:Link 2 Title}</a>{/block:ifLink2}
  486. {block:ifLink3}<a href="{text:Link 3}">{text:Link 3 Title}</a>{/block:ifLink3}
  487. {block:ifLink4}<a href="{text:Link 4}">{text:Link 4 Title}</a>{/block:ifLink4}
  488. {block:ifLink5}<a href="{text:Link 5}">{text:Link 5 Title}</a>{/block:ifLink5}
  489. {block:ifLink6}<a href="{text:Link 6}">{text:Link 6 Title}</a>{/block:ifLink6}
  490. {block:ifLink7}<a href="{text:Link 7}">{text:Link 7 Title}</a>{/block:ifLink7}
  491. {block:ifLink8}<a href="{text:Link 8}">{text:Link 8 Title}</a>{/block:ifLink8}
  492. {block:ifLink9}<a href="{text:Link 9}">{text:Link 9 Title}</a>{/block:ifLink9}
  493. {block:ifLink10}<a href="{text:Link 10}">{text:Link 10 Title}</a>{/block:ifLink10}
  494. </div>
  495. </div>
  496.  
  497. <div id="sidebar7">
  498. <div class="navigate">
  499. <a href="/">Home</a>
  500. <a href="/ask">Ask</a>
  501. <a href="/archive">Archive</a>
  502. <a href="http://themesforya.tumblr.com/">Credit</a>
  503. </div>
  504. </div>
  505.  
  506. <div id="sidebar11">
  507.  
  508. <img src="{image:smaller sidebar image}" width="60px" height="53px" style="background-color:{color:description box background};border: 1px solid {color:description box border}; padding:2px;">
  509.  
  510. <img src="{image:smaller sidebar image 1}" width="60px" height="53px" style="background-color:{color:description box background};border: 1px solid {color:description box border}; padding:2px;">
  511.  
  512. <img src="{image:smaller sidebar image 2}" width="60px" height="53px" style="background-color:{color:description box background};border: 1px solid {color:description box border}; padding:2px;">
  513. </div>
  514.  
  515. {/block:Pagination}
  516.  
  517. <div id="center">
  518. <div class = "autopagerize_page_element" >
  519. {block:Posts}<div id="entry">
  520. {block:IndexPage}
  521.  
  522.  
  523. <div class="hoverrebperma"><center> <a href="{permalink}" target="_blank">{NoteCountWithLabel} . <a href="{ReblogURL}" target="_blank">Reblog</a> . {block:Date}{DayOfMonth}{Month}{ShortYear} {/block:Date}</center></div>
  524.  
  525. {/block:IndexPage}
  526.  
  527. {block:Text}{block:Title}<h2>{Title}</h2>{/block:Title} {/block:Text}{block:Chat}{block:Title}{Title}{/block:Title} {/block:Chat}{block:Link}{/block:Link}{block:Quote}<h2>"{Quote}"</h2>{/block:Quote}{block:Photo}{/block:Photo}{block:Photoset}{/block:Photoset}{block:Video}{/block:Video}{block:Audio}{/block:Audio}{block:Answer}{/block:Answer}
  528. {block:Text}{Body}{/block:Text}
  529.  
  530. {block:Photo}<center>{block:IndexPage}<img src="{PhotoURL-500}" width="300px" alt="{PhotoAlt}"/></a>
  531. {/block:IndexPage}
  532.  
  533. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" width="500px" height="320px"/>
  534.  
  535.  
  536. {LinkCloseTag}{/block:PermalinkPage}</center>{/block:Photo}
  537. {block:Photoset}<center>{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}</center>{block:PermalinkPage}{/block:PermalinkPage}{/block:Photoset}
  538. {block:Quote}{block:Source}{Source}{/block:Source}{/block:Quote}
  539. {block:Link}<a href="{URL}" class="links2" {Target}><h2>{Name}</h2></a><BR>{block:Description}<h2>{Description}</h2>{/block:Description}{/block:Link}
  540. {block:Chat}<ul class="chat">{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  541. {block:Video}<center>{block:IndexPage}<div id="video">{Video-250}</div>{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}</center>{/block:Video}
  542. {block:Audio}<span class="audio">{AudioPlayergrey}</span>{block:IndexPage}{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{/block:Audio}
  543. {block:Answer}<div id="asker">{Asker} Asked: <br><br>{Question}</div><div id="answer">I answered: {Answer}</div>{/block:Answer}</div>
  544. {block:PermalinkPage}{block:Date}<div id="info">{block:Caption}{Caption}{/block:Caption}
  545.  
  546.  
  547. <div id="bottominfo">
  548. Posted: <a href="/day/{year}/{monthnumberwithzero}/{dayofmonthwithzero}">{ShortDayOfWeek} {Month}&middot;{DayofMonth}&middot;{NoteCount} Notes{/block:Date}&hearts; {block:RebloggedFrom}<br>Originally posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>.{/block:RebloggedFrom}
  549.  
  550.  
  551. {block:HasTags}<BR>Tagged: {block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}{block:NoteCount}<BR>Notes: {NoteCount}{/block:NoteCount}
  552. </div></div> {/block:Date}{/block:PermalinkPage}
  553. {/block:Posts}
  554. </div>
  555. {block:PostNotes}{PostNotes}{/block:PostNotes}
  556. <p id="footer">
  557.  
  558.  
  559. </div>
  560.  
  561. </body>
  562.  
  563. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement