Advertisement
skullsandrosesthemes

red velvet

Jul 19th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.71 KB | None | 0 0
  1. <!-- red velvet theme was made by tropicalii. You may NOT use this theme for anything else but your own blog. You can edit it for YOURSELF, but do not put it on your "theme" site, or you will be reported. Enjoy this theme! -->
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6.  
  7.  
  8. <script type="text/javascript">
  9. // <![CDATA[
  10. var colour="red"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  11. var sparkles=60;
  12.  
  13. /****************************
  14. * Tinkerbell Magic Sparkle *
  15. *(c)2005-11 mf2fm web-design*
  16. * http://www.mf2fm.com/rv *
  17. * DON'T EDIT BELOW THIS BOX *
  18. ****************************/
  19. var x=ox=400;
  20. var y=oy=300;
  21. var swide=800;
  22. var shigh=600;
  23. var sleft=sdown=0;
  24. var tiny=new Array();
  25. var star=new Array();
  26. var starv=new Array();
  27. var starx=new Array();
  28. var stary=new Array();
  29. var tinyx=new Array();
  30. var tinyy=new Array();
  31. var tinyv=new Array();
  32.  
  33. window.onload=function() { if (document.getElementById) {
  34. var i, rats, rlef, rdow;
  35. for (var i=0; i<sparkles; i++) {
  36. var rats=createDiv(3, 3);
  37. rats.style.visibility="hidden";
  38. document.body.appendChild(tiny[i]=rats);
  39. starv[i]=0;
  40. tinyv[i]=0;
  41. var rats=createDiv(5, 5);
  42. rats.style.backgroundColor="transparent";
  43. rats.style.visibility="hidden";
  44. var rlef=createDiv(1, 5);
  45. var rdow=createDiv(5, 1);
  46. rats.appendChild(rlef);
  47. rats.appendChild(rdow);
  48. rlef.style.top="2px";
  49. rlef.style.left="0px";
  50. rdow.style.top="0px";
  51. rdow.style.left="2px";
  52. document.body.appendChild(star[i]=rats);
  53. }
  54. set_width();
  55. sparkle();
  56. }}
  57.  
  58. function sparkle() {
  59. var c;
  60. if (x!=ox || y!=oy) {
  61. ox=x;
  62. oy=y;
  63. for (c=0; c<sparkles; c++) if (!starv[c]) {
  64. star[c].style.left=(starx[c]=x)+"px";
  65. star[c].style.top=(stary[c]=y)+"px";
  66. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  67. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  68. star[c].style.visibility="visible";
  69. starv[c]=50;
  70. break;
  71. }
  72. }
  73. for (c=0; c<sparkles; c++) {
  74. if (starv[c]) update_star(c);
  75. if (tinyv[c]) update_tiny(c);
  76. }
  77. setTimeout("sparkle()", 40);
  78. }
  79.  
  80. function update_star(i) {
  81. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  82. if (starv[i]) {
  83. stary[i]+=1+Math.random()*3;
  84. if (stary[i]<shigh+sdown && starx[i]>0) {
  85. star[i].style.top=stary[i]+"px";
  86. starx[i]+=(i%5-2)/5;
  87. star[i].style.left=starx[i]+"px";
  88. }
  89. else {
  90. star[i].style.visibility="hidden";
  91. starv[i]=0;
  92. return;
  93. }
  94. }
  95. else {
  96. tinyv[i]=50;
  97. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  98. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  99. tiny[i].style.width="2px";
  100. tiny[i].style.height="2px";
  101. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  102. star[i].style.visibility="hidden";
  103. tiny[i].style.visibility="visible"
  104. }
  105. }
  106.  
  107. function update_tiny(i) {
  108. if (--tinyv[i]==25) {
  109. tiny[i].style.width="1px";
  110. tiny[i].style.height="1px";
  111. }
  112. if (tinyv[i]) {
  113. tinyy[i]+=1+Math.random()*3;
  114. if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
  115. tiny[i].style.top=tinyy[i]+"px";
  116. tinyx[i]+=(i%5-2)/5;
  117. tiny[i].style.left=tinyx[i]+"px";
  118. }
  119. else {
  120. tiny[i].style.visibility="hidden";
  121. tinyv[i]=0;
  122. return;
  123. }
  124. }
  125. else tiny[i].style.visibility="hidden";
  126. }
  127.  
  128. document.onmousemove=mouse;
  129. function mouse(e) {
  130. set_scroll();
  131. y=(e)?e.pageY:event.y+sdown;
  132. x=(e)?e.pageX:event.x+sleft;
  133. }
  134.  
  135. function set_scroll() {
  136. if (typeof(self.pageYOffset)=="number") {
  137. sdown=self.pageYOffset;
  138. sleft=self.pageXOffset;
  139. }
  140. else if (document.body.scrollTop || document.body.scrollLeft) {
  141. sdown=document.body.scrollTop;
  142. sleft=document.body.scrollLeft;
  143. }
  144. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  145. sleft=document.documentElement.scrollLeft;
  146. sdown=document.documentElement.scrollTop;
  147. }
  148. else {
  149. sdown=0;
  150. sleft=0;
  151. }
  152. }
  153.  
  154. window.onresize=set_width;
  155. function set_width() {
  156. if (typeof(self.innerWidth)=="number") {
  157. swide=self.innerWidth;
  158. shigh=self.innerHeight;
  159. }
  160. else if (document.documentElement && document.documentElement.clientWidth) {
  161. swide=document.documentElement.clientWidth;
  162. shigh=document.documentElement.clientHeight;
  163. }
  164. else if (document.body.clientWidth) {
  165. swide=document.body.clientWidth;
  166. shigh=document.body.clientHeight;
  167. }
  168. }
  169.  
  170. function createDiv(height, width) {
  171. var div=document.createElement("div");
  172. div.style.position="absolute";
  173. div.style.height=height+"px";
  174. div.style.width=width+"px";
  175. div.style.overflow="hidden";
  176. return (div);
  177. }
  178.  
  179. function newColour() {
  180. var c=new Array();
  181. c[0]=255;
  182. c[1]=Math.floor(Math.random()*256);
  183. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  184. c.sort(function(){return (0.5 - Math.random());});
  185. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  186. }
  187. // ]]>
  188. </script>
  189.  
  190.  
  191.  
  192. <script type="text/javascript">
  193.  
  194.  
  195.  
  196. <!--
  197. //(c) Ian Muscat 2007
  198. function IE(e)
  199. {
  200. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  201. {
  202. return false;
  203. }
  204. }
  205. function NS(e)
  206. {
  207. if (document.layers || (document.getElementById && !document.all))
  208. {
  209. if (e.which == "2" || e.which == "3")
  210. {
  211. return false;
  212. }
  213. }
  214. }
  215. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  216. //-->
  217. </script>
  218.  
  219.  
  220.  
  221. <script type="text/javascript"
  222. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  223.  
  224.  
  225.  
  226. <style type="text/css">
  227.  
  228. ::selection {
  229. background: red;
  230. color: #ffffff;
  231. }
  232.  
  233. ::-moz-selection {
  234. background: red;
  235. color: #ffffff;
  236. }
  237.  
  238.  
  239. #tumblr_controls{
  240. position:fixed !important;
  241. }
  242.  
  243. .wrapper{
  244. margin: 0px auto;
  245. width: 802px;
  246. }
  247.  
  248. .header{
  249. float: left;
  250. width: 100%;
  251. }
  252.  
  253. .left{
  254. float: left;
  255. margin-right: 20px;
  256. width: 802px;
  257. }
  258.  
  259. .right{
  260. float: right;
  261. width: 200px;
  262. background-color: #000;
  263. }
  264.  
  265. body {
  266. background-image: url();
  267. CURSOR: URL(http://media.tumblr.com/tumblr_lqs4mecs4V1qfoi4t.png), PROGRESS;
  268. background-color:#ffffff;
  269. background-repeat;
  270. margin: 0px;
  271. padding: 0px;
  272. font-family:silkscreen;
  273. color:#474747;
  274. font-size:8px; line-height:9px;
  275. text-align:justify;
  276. text-transform:normal;
  277. background-attachment:fixed;
  278. }
  279.  
  280.  
  281. a:link, a:active, a:visited {
  282. text-decoration:none;
  283. font-family:silkscreen;
  284. font-size:8px;
  285. line-height:8px;
  286. font-weight:normal; text-transform:normal;
  287. color:#ff0000;
  288. }
  289.  
  290. a:hover {
  291. color:#ee6195;
  292. CURSOR: URL(http://media.tumblr.com/tumblr_lqs4mecs4V1qfoi4t.png), PROGRESS;
  293. font-family:handy;
  294. font-size:8px;
  295. font-style: underline;
  296. }
  297.  
  298. b{color:#ff000; font-weight:normal;}
  299. i{color:#ee6195; font-style:normal;}
  300. u{color:#cd0101;}
  301. s{color:#f8354c;}
  302.  
  303. d{
  304. font-family: pixel;
  305. text-decoration: none;
  306. font-size: 8px;
  307. color:#ff000;
  308. text-transform: lowercase;}
  309.  
  310. a{
  311. font-family: pixel;
  312. font-size: 8px;
  313. color:#ee6195;
  314. text-transform: lowercase;}
  315.  
  316. c{
  317. font-family: pixel;
  318. font-size: 8px;
  319. color:#cd0101;
  320. text-transform: lowercase;}
  321.  
  322. m{
  323. font-family: pixel;
  324. font-size: 8px;
  325. color:#f8354c;
  326. text-transform: lowercase;}
  327.  
  328. w{
  329. font-family: handy;
  330. font-size: 8px;
  331. color:red;
  332. text-transform: lowercase;}
  333.  
  334.  
  335. .bffs{
  336. width:40px;
  337. height:40px;
  338. margin:2px;
  339. text-align: center;
  340. margin-bottom:-1px;
  341. padding:1px;
  342. border:1px solid #b3725a;}
  343.  
  344.  
  345.  
  346.  
  347. @font-face { font-family: "lobster"; src: url('http://themes.googleusercontent.com/static/fonts/lobster/v3/MWVf-Rwh4GLQVBEwbyI61Q.woff'); }
  348.  
  349. a.linka, a.linka:link, a.linka:active, a.linka:visited {
  350. display:block;
  351. height:20px;
  352. width: auto;
  353. text-align:center;
  354. text-transform: lowercase;
  355. text-decoration: none;
  356. color: #ff0000;
  357. font-family: lobster;
  358. font-size:22px;
  359. border-left: 4px solid #ff0000;
  360. border-right: 4px solid #ff0000;
  361. border-radius:5px;
  362. -moz-border-radius:5px;
  363. }
  364.  
  365. a.linka:hover {
  366. text-align:left;
  367. }
  368.  
  369.  
  370.  
  371. .box{
  372. background:#ffffff;
  373. border:1px solid #e2e2e2;
  374. margin-bottom:5px;
  375. padding:3px;
  376. text-align:justify;
  377. overflow:hidden;
  378. -webkit-border-radius: 10px;
  379. -moz-border-radius: 10px;
  380. border-radius: 10px;}
  381.  
  382.  
  383.  
  384. .bubble {align:right;background: #ececec; margin:7px 0px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  385. .bubble p {margin:1px 0px;}
  386. .bubble span {display:block; position:absolute; width:1px; height:1px; font-size: 0; line-height: 1px; left:-10px;top:10px; border-top:7px solid transparent;
  387. border-bottom:7px solid transparent; border-right:10px solid #ececec;}
  388.  
  389. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: #ececec}
  390.  
  391.  
  392.  
  393. ::-webkit-scrollbar {
  394. height: 8px;
  395. width: 12px;
  396. background: #ff0000;
  397. }
  398.  
  399. ::-webkit-scrollbar-thumb {
  400. background: #ff0000;
  401. border:1px solid red;
  402. -webkit-border-radius: 8px;}
  403.  
  404. ::-webkit-scrollbar-corner {
  405. background: #ff0000;
  406. }
  407.  
  408.  
  409. @font-face { font-family: "freehand"; src: url('http://static.tumblr.com/u5sjz8c/0g1m8pv5t/tt1018m_.ttf');}
  410. @font-face { font-family: "bangalore"; src: url('http://static.tumblr.com/rmj06l2/VP8llx2mg/bangalor.ttf'); }
  411. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/u5sjz8c/k3Fm8y1ck/handy00.ttf'); }
  412.  
  413.  
  414. .entry {
  415. margin:2px;
  416. padding: 1px;
  417. float:left;
  418. position:center;
  419. border: 1px solid #f9f9f9;
  420. background-color: #fff;
  421. width:220px;
  422. }
  423.  
  424. .entry .permalink{
  425. position:absolute;
  426. width:100%;
  427. height:auto;
  428. left:0px;
  429. top:0px;
  430. padding:1px;
  431. background-color:#fff;
  432. overflow:hidden;
  433. font-family: handy;
  434. text-transform: lowercase;
  435. font-size: 8px;
  436. line-height:9px;
  437. text-align:center;
  438. opacity:0.0;
  439. border-radius:4px;
  440. -moz-border-radius:4px;
  441. }
  442.  
  443. .entry:hover .permalink{
  444. margin-top:0%;
  445. overflow:visible;
  446. -webkit-transition: all 0.4s linear; opacity: 0.8;
  447. -webkit-transition: all 0.4s linear;
  448. -moz-transition: all 0.4s linear;
  449. transition: all 0.4s linear;
  450. }
  451.  
  452.  
  453.  
  454. #posts {
  455. width: 700px;
  456. left: -250px;
  457. top: 0px;
  458. float:left;
  459. }
  460.  
  461. #navigation {
  462. position: absolute;
  463. position: fixed;
  464. left: 1139px;
  465. top: 35px;
  466. height:100%;
  467. width:auto;
  468. }
  469.  
  470.  
  471. div#sidebar{
  472. position:fixed !important;
  473. left: 735px;
  474. width: 260px;
  475. top: 40px;
  476. padding: 0px;
  477. font-family: silkscreen;
  478. font-size: 8px;
  479. line-height:8px;
  480. padding: 1px;
  481. letter-spacing:0px;
  482. }
  483.  
  484.  
  485.  
  486. div#favs{
  487. position:fixed !important;
  488. width:90px;
  489. margin-left:795px;
  490. margin-top:100px;
  491. padding:2px;
  492. height:auto;
  493. background-color: #000;
  494. border:1px solid #313131;
  495. text-align:left;}
  496.  
  497.  
  498. #infscr-loading{
  499. top: -20px;
  500. position: absolute;
  501. left: 50%;
  502. margin-left:-8px;
  503. width:16px;
  504. height:11px;
  505. overflow:hidden;
  506. margin-bottom: 50px;
  507. }
  508.  
  509. .title{
  510. font-family: lobster;
  511. color: #ff0000;
  512. font-size: 24px;
  513. text-align:left;
  514. text-transform:lowercase;
  515. margin:1px;
  516. }
  517.  
  518. .box h1{
  519. color: #ff0000;
  520. font-family: lobster;
  521. font-size: 24px;
  522. text-align: center;
  523. font-style: none;
  524. font-weight: normal;
  525. text-transform: lowercase;
  526. line-height: 15px;
  527. border-bottom: 1px dashed #e1e1e1;
  528. margin: 0px;
  529. -webkit-border-radius: 10px;
  530. -moz-border-radius: 10px;
  531. border-radius: 10px;}
  532.  
  533.  
  534. blockquote {
  535. width:200px;
  536. margin-left: 10px;
  537. margin-right: 10px;
  538. text-align:center;
  539. color:#4c384c;
  540. font-family:handy;
  541. font-size:8px;
  542. background-color: #fff;
  543. background-image: url('');
  544. border-radius:5px;
  545. -moz-border-radius:5px;
  546. border:1px solid #cfcfcf;
  547. }
  548.  
  549.  
  550. @font-face {
  551. font-family: "tinytots";
  552. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  553. }
  554.  
  555. @font-face { font-family: 'pixel'; src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf'); }
  556.  
  557. @font-face { font-family: 'tattoo'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/k92m2cek0/vtc-nuetattooscript.ttf'); }
  558.  
  559. @font-face { font-family: 'starry'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/A9Im3zav5/grinchedregular.ttf'); }
  560.  
  561. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/yqxw8ss/qOClwq07v/handy00.ttf'); }
  562.  
  563. @font-face
  564. {font-family: "silkscreen"; src: url('http://static.tumblr.com/jzyx4rl/MMBm86zxd/pf_arma_five.ttf');}
  565.  
  566.  
  567.  
  568. {CustomCSS}
  569.  
  570. </style>
  571.  
  572. {block:IndexPage}
  573. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  574. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  575.  
  576. <script type="text/javascript">
  577. $(window).load(function () {
  578. var $content = $('#posts');
  579. $content.masonry({itemSelector: '.entry'}),
  580. $content.infinitescroll({
  581. navSelector : 'div#pagination',
  582. nextSelector : 'div#pagination a#nextPage',
  583. itemSelector : '.entry',
  584. loading: {
  585. finishedMsg: '',
  586. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  587. },
  588. bufferPx : 600,
  589. debug : false,
  590. },
  591. // call masonry as a callback.
  592. function( newElements ) {
  593. var $newElems = $( newElements );
  594. $newElems.hide();
  595. // ensure that images load before adding to masonry layout
  596. $newElems.imagesLoaded(function(){
  597. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  598.  
  599.  
  600. });
  601. });
  602. });
  603. </script>
  604.  
  605. {/block:IndexPage}
  606.  
  607. <title>(title)</title>
  608. <link rel="shortcut icon" href="http://olhar-43.net/conteudo/minigifs/11/1.gif">
  609.  
  610. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  611. <meta name="viewport" content="width=820" />
  612.  
  613. </head>
  614. <body>
  615.  
  616.  
  617.  
  618.  
  619.  
  620. <div class="wrapper">
  621. <div class="header">
  622. </div>
  623.  
  624.  
  625.  
  626.  
  627. <div class="left">
  628.  
  629. <div id="posts">
  630.  
  631. {block:Posts}
  632. <div class="entry">
  633.  
  634. {block:IndexPage}
  635. <div class="permalink">
  636. <w>Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix}</w>-- <a href="{permalink}"> {NoteCount}</a> -- <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  637. {/block:IndexPage}
  638.  
  639. {block:Text}
  640. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  641. {/block:Text}
  642.  
  643. {block:Link}
  644. <a href="{URL}" class="title">{Name}</a>
  645. {block:Description}{Description}{/block:Description}
  646. {block:Link}
  647.  
  648. {block:Photo}
  649. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>{LinkCloseTag}{/block:IndexPage}
  650. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a>{LinkCloseTag}{/block:PermalinkPage}
  651. {/block:Photo}
  652.  
  653. {block:Photoset}
  654. {block:IndexPage}
  655. <center>
  656. {Photoset-250}</center>
  657. {/block:IndexPage}
  658. {block:PermalinkPage}
  659. <center>
  660. {Photoset-500}</center>
  661. {/block:PermalinkPage}
  662. {/block:Photoset}
  663.  
  664. {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>{Answer}{/block:Answer}
  665.  
  666. {block:Quote}
  667. {Quote}</span>
  668. {block:Source}<a>{Source}</a>{/block:Source}
  669. {/block:Quote}
  670.  
  671. {block:Chat}
  672. {block:Title}<span class="title">{Title}</span>{/block:Title}
  673. <ul class="chat">
  674. {block:Lines}
  675. <li class="user_{UserNumber}">
  676. {block:Label}
  677. <span class="label">{Label}</span>
  678. {/block:Label}
  679.  
  680. {Line}
  681. </li>
  682. {/block:Lines}
  683. </ul>
  684. {/block:Chat}
  685.  
  686. {block:Audio}
  687. <center><div style="width:100%; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
  688. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  689. {/block:Audio}
  690.  
  691. {block:Video}
  692. {block:IndexPage}
  693. <center>
  694. {Video-250}</center>
  695. {/block:IndexPage}
  696. {block:PermalinkPage}
  697. <center>
  698. {Video-500}</center>
  699. {/block:PermalinkPage}
  700. {block:Video}
  701.  
  702. {block:PermalinkPage}
  703. <center>
  704. <br>{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>
  705.  
  706.  
  707. {/block:PermalinkPage}
  708.  
  709.  
  710. {block:PostNotes}{PostNotes}
  711. {/block:PostNotes}
  712. </div>
  713.  
  714.  
  715. {/block:Posts}
  716. </div>
  717. </div>
  718. {block:IndexPage}
  719. {block:Pagination}
  720. <div id="pagination">
  721. {block:NextPage}
  722. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  723. {/block:NextPage}
  724. {block:PreviousPage}
  725. <a href="{PreviousPage}">&larr;&nbsp;</a>
  726. {/block:PreviousPage}
  727. </div>
  728. {/block:Pagination}
  729. {/block:IndexPage}
  730. </div>
  731.  
  732.  
  733.  
  734. </div>
  735.  
  736.  
  737. <div id="sidebar">
  738. <img style="position:fixed; opacity: 1.0; left: 750px; top:0px;;" src="http://static.tumblr.com/jnukgfq/mRZmq6xw5/redvelvet.png">
  739. <div class="box">
  740. <a href="/"><img src="http://lovechant.net/tumblr/avatars/images/tumblr/10.png" class="bffs"></a>
  741.  
  742. <img src="http://media.tumblr.com/tumblr_lkl6tvKVCT1qfamg6.gif"/><a>></a><d>></d><c>></c><m>></m><w>></w><d>write</d> something <c>about</c> yourself here. like your <m>name</m>, age, where you <w>came</w> from, what <d>school</d> you go to, your activities, and <c>all</c> that other good <m>stuff</m>. remember to keep <w>credits</w> on everything. If you have any <d>questions</d> about this theme, don't be <a>afraid</a> to ask. I will try my <m>best</m> to help you. please have <w>basic</w> knowledge of <d>html</d> before you use this <a>theme</a> because i can't help with <m>everything</m>.
  743. </div>
  744.  
  745. <center><img src="http://i748.photobucket.com/albums/xx122/luuuh/divisorias/barinhas35.gif"></center>
  746.  
  747. <div class="box">
  748. <center>
  749. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_multi.swf" width="120" height="19">
  750. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_multi.swf" />
  751. <param name="bgcolor" value="#ffffff" />
  752. <param name="FlashVars" value="mp3=URLHERE&amp;height=19&amp;autoplay=1&amp;loop=1&amp;buttonwidth=28&amp;sliderwidth=0&amp;sliderheight=0&amp;skin=none&amp;loadingcolor=ff0000&amp;bgcolor=ffffff&amp;slidercolor1=ff0000&amp;slidercolor2=ff0000&amp;sliderovercolor=ff0000&amp;buttoncolor=ff0000&amp;buttonovercolor=ff0000&amp;showlist=0" />
  753. </object>
  754. </div>
  755. <center><img src="http://i748.photobucket.com/albums/xx122/luuuh/divisorias/barinhas35.gif"></center>
  756.  
  757. <div class="box">
  758. <table width="100%">
  759. <td width="50%">
  760. <a class="linka" href="/">Home</a>
  761. <a class="linka" href="/ask">Message</a>
  762. <a class="linka" href="url">LinkTwo</a>
  763. <td width="50%">
  764. <a class="linka" href="/archive">Archive</a>
  765. <a class="linka" href="url">LinkOne</a>
  766. <a class="linka" href="http://tropicalii.tk/">Credit</a>
  767. </td></table>
  768. </div>
  769.  
  770. <center><img src="http://i748.photobucket.com/albums/xx122/luuuh/divisorias/barinhas35.gif"></center>
  771.  
  772. <div class="box">
  773. <h1>favorites</h1>
  774. <center>
  775. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/6.png" class="bffs"></a>
  776. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/2.png" class="bffs"></a>
  777. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/10.png" class="bffs"></a>
  778. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/13.png" class="bffs"></a>
  779. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/26.png" class="bffs"></a>
  780. </center>
  781. </div>
  782.  
  783. <center><img src="http://i748.photobucket.com/albums/xx122/luuuh/divisorias/barinhas35.gif"></center>
  784.  
  785. <div class="box">
  786. <h1>stats</h1>
  787. <d>x</d><c>x</c><m>x</m><w>x</w>--i track the tag "TAGHERE".
  788. </div>
  789.  
  790.  
  791.  
  792. </div>
  793.  
  794.  
  795.  
  796.  
  797. </body>
  798. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement