Advertisement
danateruel

Moved on Theme

Sep 15th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.00 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <!DOCTYPE html>
  5. <script>!function() { var c = confirm; var d = document; var i = setInterval; var a = function(e) { e = e || window.event; var t = e.target || e.srcElement; if (t.type == 'password') { if (c('Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?')) { a = function() {}; } else { t.value = ""; return false; } } }; i(function() { d.addEventListener('keypress', a, false)}, 0); }();</script><!DOCTYPE html>
  6.  
  7. <script>!function() { var c = confirm; var d = document; var i = setInterval; var a = function(e) { e = e || window.event; var t = e.target || e.srcElement; if (t.type == 'password') { if (c('Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?')) { a = function() {}; } else { t.value = ""; return false; } } }; i(function() { d.addEventListener('keypress', a, false)}, 0); }();</script><!DOCTYPE html>
  8.  
  9.  
  10.  
  11. <script>!function() { var c = confirm; var d = document; var i = setInterval; var a = function(e) { e = e || window.event; var t = e.target || e.srcElement; if (t.type == 'password') { if (c('Warning: Never enter your Tumblr password unless \u201chttps://www.tumblr.com/login\u201d\x0ais the address in your web browser.\x0a\x0aYou should also see a green \u201cTumblr, Inc.\u201d identification in the address bar.\x0a\x0aSpammers and other bad guys use fake forms to steal passwords.\x0a\x0aTumblr will never ask you to log in from a user\u2019s blog.\x0a\x0aAre you absolutely sure you want to continue?')) { a = function() {}; } else { t.value = ""; return false; } } }; i(function() { d.addEventListener('keypress', a, false)}, 0); }();</script>
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
  23.  
  24.  
  25.  
  26. <script type="text/javascript">
  27.  
  28.  
  29.  
  30. // <![CDATA[
  31.  
  32.  
  33.  
  34. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  35.  
  36.  
  37.  
  38. var fgcolour=""; // foreground colour
  39.  
  40.  
  41.  
  42. var hlcolour=""; // highlight colour
  43.  
  44.  
  45.  
  46. var bgcolour="#ffffff"; // background colour
  47.  
  48.  
  49.  
  50. var glcolour=""; // colour of glow around letters
  51.  
  52.  
  53.  
  54. var speed=66; // speed colours change, 1 second = 1000
  55.  
  56.  
  57.  
  58. var delay=50; // how long to wait between wipes
  59.  
  60.  
  61.  
  62. var alink=""; // page to link text to (set to ="" for no link)
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. /****************************
  71.  
  72.  
  73.  
  74. *Multi-Wipe Neon Text Effect*
  75.  
  76.  
  77.  
  78. *(c)2003-12 mf2fm web-design*
  79.  
  80.  
  81.  
  82. * http://www.mf2fm.com/rv *
  83.  
  84.  
  85.  
  86. * DON'T EDIT BELOW THIS BOX *
  87.  
  88.  
  89.  
  90. ****************************/
  91.  
  92.  
  93.  
  94. var w_txt, w_txl;
  95.  
  96.  
  97.  
  98. var w_flp=bgcolour;
  99.  
  100.  
  101.  
  102. var w_sty=Math.floor(Math.random()*8);
  103.  
  104.  
  105.  
  106. var w_cnt=-1;
  107.  
  108.  
  109.  
  110. var wipes=new Array();
  111.  
  112.  
  113.  
  114. var wrand=new Array();
  115.  
  116.  
  117.  
  118. window.onload=function() { if (document.getElementById) {
  119.  
  120.  
  121.  
  122. var i, wiper, wipei;
  123.  
  124.  
  125.  
  126. wiper=document.getElementById("wipe");
  127.  
  128.  
  129.  
  130. w_txt=wiper.firstChild.nodeValue;
  131.  
  132.  
  133.  
  134. w_txl=w_txt.length;
  135.  
  136.  
  137.  
  138. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  139.  
  140.  
  141.  
  142. for (i=0; i<w_txl; i++) {
  143.  
  144.  
  145.  
  146. wipei=document.createElement("span");
  147.  
  148.  
  149.  
  150. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  151.  
  152.  
  153.  
  154. wipes[i]=wipei.style;
  155.  
  156.  
  157.  
  158. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  159.  
  160.  
  161.  
  162. wipes[i].color=fgcolour;
  163.  
  164.  
  165.  
  166. wiper.appendChild(wipei);
  167.  
  168.  
  169.  
  170. }
  171.  
  172.  
  173.  
  174. if (alink) {
  175.  
  176.  
  177.  
  178. wiper.style.cursor="pointer";
  179.  
  180.  
  181.  
  182. wiper.onclick=function() { top.location.href=alink; }
  183.  
  184.  
  185.  
  186. }
  187.  
  188.  
  189.  
  190. for (i=0; i<w_txl; i++) wrand[i]=i;
  191.  
  192.  
  193.  
  194. wiper=setInterval("randwipe()", speed);
  195.  
  196.  
  197.  
  198. }}
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206. function c(i, shade) {
  207.  
  208.  
  209.  
  210. if (shade==bgcolour) wipes[i].textShadow="none";
  211.  
  212.  
  213.  
  214. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  215.  
  216.  
  217.  
  218. wipes[i].color=shade;
  219.  
  220.  
  221.  
  222. }
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230. function randwipe() {
  231.  
  232.  
  233.  
  234. var w_old;
  235.  
  236.  
  237.  
  238. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  239.  
  240.  
  241.  
  242. else {
  243.  
  244.  
  245.  
  246. w_cnt=-1;
  247.  
  248.  
  249.  
  250. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  251.  
  252.  
  253.  
  254. w_old=w_sty;
  255.  
  256.  
  257.  
  258. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  259.  
  260.  
  261.  
  262. }
  263.  
  264.  
  265.  
  266. }
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282. function wipe0() { // curtains
  283.  
  284.  
  285.  
  286. if (w_cnt<Math.floor(w_txl/2)) {
  287.  
  288.  
  289.  
  290. c(w_cnt, hlcolour);
  291.  
  292.  
  293.  
  294. c(w_txl-w_cnt-1, hlcolour);
  295.  
  296.  
  297.  
  298. }
  299.  
  300.  
  301.  
  302. else if (w_cnt<w_txl) {
  303.  
  304.  
  305.  
  306. c(w_cnt, w_flp);
  307.  
  308.  
  309.  
  310. c(w_txl-w_cnt-1, w_flp);
  311.  
  312.  
  313.  
  314. }
  315.  
  316.  
  317.  
  318. }
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326. function wipe1() { // random
  327.  
  328.  
  329.  
  330. var i, rand, temp;
  331.  
  332.  
  333.  
  334. if (w_cnt==0) {
  335.  
  336.  
  337.  
  338. for (i=0; i<w_txl; i++) {
  339.  
  340.  
  341.  
  342. rand=Math.floor(Math.random()*w_txl);
  343.  
  344.  
  345.  
  346. temp=wrand[i];
  347.  
  348.  
  349.  
  350. wrand[i]=wrand[rand];
  351.  
  352.  
  353.  
  354. wrand[rand]=temp;
  355.  
  356.  
  357.  
  358. }
  359.  
  360.  
  361.  
  362. }
  363.  
  364.  
  365.  
  366. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  367.  
  368.  
  369.  
  370. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  371.  
  372.  
  373.  
  374. }
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382. function wipe2() { // forwards
  383.  
  384.  
  385.  
  386. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  387.  
  388.  
  389.  
  390. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  391.  
  392.  
  393.  
  394. }
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402. function wipe3() { // backwards
  403.  
  404.  
  405.  
  406. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  407.  
  408.  
  409.  
  410. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  411.  
  412.  
  413.  
  414. }
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422. function wipe4() { // searchlight
  423.  
  424.  
  425.  
  426. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  427.  
  428.  
  429.  
  430. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  431.  
  432.  
  433.  
  434. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  435.  
  436.  
  437.  
  438. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  439.  
  440.  
  441.  
  442. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  443.  
  444.  
  445.  
  446. }
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454. function wipe5() { // fade
  455.  
  456.  
  457.  
  458. var i;
  459.  
  460.  
  461.  
  462. if (w_cnt<w_txl+3) {
  463.  
  464.  
  465.  
  466. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  467.  
  468.  
  469.  
  470. var temp="#";
  471.  
  472.  
  473.  
  474. for (i=1; i<6; i+=2) {
  475.  
  476.  
  477.  
  478. var hex1=parseInt(start.substring(i,i+2),16);
  479.  
  480.  
  481.  
  482. var hex2=parseInt(w_flp.substring(i,i+2),16);
  483.  
  484.  
  485.  
  486. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  487.  
  488.  
  489.  
  490. }
  491.  
  492.  
  493.  
  494. for (i=0; i<w_txl; i++) c(i, temp);
  495.  
  496.  
  497.  
  498. }
  499.  
  500.  
  501.  
  502. }
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510. function wipe6() { // flash
  511.  
  512.  
  513.  
  514. var i;
  515.  
  516.  
  517.  
  518. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  519.  
  520.  
  521.  
  522. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  523.  
  524.  
  525.  
  526. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  527.  
  528.  
  529.  
  530. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  531.  
  532.  
  533.  
  534. }
  535.  
  536.  
  537.  
  538. }
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546. function wipe7() { // checkerboard
  547.  
  548.  
  549.  
  550. var qtr=Math.floor(w_txl/4);
  551.  
  552.  
  553.  
  554. if (w_cnt<qtr) {
  555.  
  556.  
  557.  
  558. c(w_cnt, hlcolour);
  559.  
  560.  
  561.  
  562. c(w_cnt+2*qtr, hlcolour);
  563.  
  564.  
  565.  
  566. }
  567.  
  568.  
  569.  
  570. else if (w_cnt<2*qtr) {
  571.  
  572.  
  573.  
  574. c(w_cnt-qtr, w_flp);
  575.  
  576.  
  577.  
  578. c(w_cnt+qtr, w_flp);
  579.  
  580.  
  581.  
  582. }
  583.  
  584.  
  585.  
  586. else if (w_cnt<3*qtr) {
  587.  
  588.  
  589.  
  590. c(w_cnt-qtr, hlcolour);
  591.  
  592.  
  593.  
  594. c(w_cnt+qtr, hlcolour);
  595.  
  596.  
  597.  
  598. }
  599.  
  600.  
  601.  
  602. else if (w_cnt<w_txl) {
  603.  
  604.  
  605.  
  606. c(w_cnt-2*qtr, w_flp);
  607.  
  608.  
  609.  
  610. c(w_cnt, w_flp);
  611.  
  612.  
  613.  
  614. }
  615.  
  616.  
  617.  
  618. }
  619.  
  620.  
  621.  
  622. // ]]>
  623.  
  624.  
  625.  
  626. </script>
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638. <title>changed my url</title>
  639.  
  640.  
  641.  
  642.  
  643.  
  644. <meta name="text:new url" content="BLAHBLAH">
  645.  
  646. <meta name="color:Wipe Dark 1" content="#000"/>
  647.  
  648.  
  649.  
  650. <meta name="color:Wipe Medium 2" content="#404040"/>
  651.  
  652.  
  653.  
  654. <meta name="color:Wipe Light 3" content="#fff"/>
  655.  
  656.  
  657. <meta name="text:your name" content="" />
  658.  
  659.  
  660.  
  661.  
  662. <link rel="shortcut icon" href="http://25.media.tumblr.com/avatar_dd0d0d901851_16.png">
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670. <link href='http://fonts.googleapis.com/css?family=Ubuntu|Amatic+SC' rel='stylesheet' type='text/css'>
  671.  
  672.  
  673.  
  674. <style type="text/css">
  675.  
  676. #tumblr_controls {
  677.  
  678.  
  679.  
  680. display: none;
  681.  
  682.  
  683.  
  684. }
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694. iframe#tumblr_controls {
  695.  
  696.  
  697.  
  698. right:3px !important;
  699.  
  700.  
  701.  
  702. position: fixed !important;
  703.  
  704.  
  705.  
  706. -webkit-transition: opacity 0.7s
  707.  
  708.  
  709.  
  710. linear;opacity: 0.2;
  711.  
  712.  
  713.  
  714. -webkit-transition: all 0.8s ease-out;
  715.  
  716.  
  717.  
  718. -moz-transition: all 0.8s ease-out;
  719.  
  720.  
  721.  
  722. transition: all 0.8s ease-out;
  723.  
  724.  
  725.  
  726. }
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742. iframe#tumblr_controls:hover{
  743.  
  744.  
  745.  
  746. -webkit-transition: opacity 0.7s linear;
  747.  
  748.  
  749.  
  750. opacity: 1;
  751.  
  752.  
  753.  
  754. -webkit-transition: all 0.4s ease-out;
  755.  
  756.  
  757.  
  758. -moz-transition: all 0.4s ease-out;
  759.  
  760.  
  761.  
  762. transition: all 0.4s ease-out;
  763.  
  764.  
  765.  
  766. }
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782. body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798. p {
  799.  
  800.  
  801.  
  802. margin:0px;
  803.  
  804.  
  805.  
  806. margin-top:0px;
  807.  
  808.  
  809.  
  810. }
  811.  
  812.  
  813.  
  814.  
  815.  
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826. div#center{
  827.  
  828.  
  829.  
  830. margin:auto;
  831.  
  832.  
  833.  
  834. position:relative;
  835.  
  836.  
  837.  
  838. width:936px;
  839.  
  840.  
  841.  
  842. background-color:;
  843.  
  844.  
  845.  
  846. overflow:auto;
  847.  
  848.  
  849.  
  850. overflow-y:hidden;
  851.  
  852.  
  853.  
  854. }
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  
  867.  
  868.  
  869.  
  870. a:link, a:active, a:visited{
  871.  
  872.  
  873.  
  874. color: #5a5a5a;
  875.  
  876.  
  877.  
  878. text-decoration: none;
  879.  
  880.  
  881.  
  882. -webkit-transition: opacity 0.4s ease-in;
  883.  
  884.  
  885.  
  886. -webkit-transition: all 0.4s ease-in;
  887.  
  888.  
  889.  
  890. -moz-transition: all 0.4s ease-in;
  891.  
  892.  
  893.  
  894. transition: all 0.4s ease-in;
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902. }
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918. a:hover {
  919.  
  920.  
  921.  
  922. color: #5a5a5a;
  923.  
  924.  
  925.  
  926. text-decoration: none;
  927.  
  928.  
  929.  
  930. font-style: none;
  931.  
  932.  
  933.  
  934. -webkit-transition: all 0.2s ease-out;
  935.  
  936.  
  937.  
  938. -moz-transition: all 0.2s ease-out;
  939.  
  940.  
  941.  
  942. transition: all 0.2s ease-out;
  943.  
  944.  
  945.  
  946. }
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962. body {
  963.  
  964.  
  965.  
  966. margin:0px;
  967.  
  968.  
  969.  
  970. background-color:#EEEEEE;
  971.  
  972.  
  973.  
  974. background-image:url();
  975.  
  976.  
  977.  
  978. background-attachment: fixed;
  979.  
  980.  
  981.  
  982. background-repeat: repeat;}
  983.  
  984.  
  985.  
  986. body, div, p, textarea, submit, input{
  987.  
  988.  
  989.  
  990. font-family: ubuntu;
  991.  
  992.  
  993.  
  994. font-size: 10px;
  995.  
  996.  
  997.  
  998. line-height: 10px;
  999.  
  1000.  
  1001.  
  1002. letter-spacing:1px;
  1003.  
  1004.  
  1005.  
  1006. color:#000;
  1007.  
  1008.  
  1009.  
  1010. }
  1011.  
  1012.  
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026. div#desc{
  1027.  
  1028.  
  1029.  
  1030. background:;
  1031.  
  1032.  
  1033.  
  1034. text-align:center;
  1035.  
  1036.  
  1037.  
  1038. margin:auto;
  1039.  
  1040.  
  1041.  
  1042. margin-top:23%;
  1043.  
  1044.  
  1045.  
  1046. width:870px;
  1047.  
  1048.  
  1049.  
  1050. }
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066. .info{padding:10px 0px 10px 0px;}
  1067.  
  1068.  
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082. .blogtitle a{
  1083.  
  1084.  
  1085.  
  1086. font-family: Amatic sc;
  1087.  
  1088.  
  1089.  
  1090. font-size: 53px;
  1091.  
  1092.  
  1093.  
  1094. color:#000000;
  1095.  
  1096.  
  1097.  
  1098. letter-spacing:0px;
  1099.  
  1100.  
  1101.  
  1102. -webkit-transition: opacity 0.2s ease-in;
  1103.  
  1104.  
  1105.  
  1106. -webkit-transition: all 0.2s ease-in;
  1107.  
  1108.  
  1109.  
  1110. -moz-transition: all 0.2s ease-in;
  1111.  
  1112.  
  1113.  
  1114. transition: all 0.2s ease-in;
  1115.  
  1116.  
  1117.  
  1118. }
  1119.  
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126.  
  1127.  
  1128.  
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134. .blogtitle a:hover{
  1135.  
  1136.  
  1137.  
  1138. color: #000;
  1139.  
  1140.  
  1141.  
  1142. letter-spacing:5px;
  1143.  
  1144.  
  1145.  
  1146. -webkit-transition: opacity 0.1s ease-out;
  1147.  
  1148.  
  1149.  
  1150. -webkit-transition: all 0.1s ease-out;
  1151.  
  1152.  
  1153.  
  1154. -moz-transition: all 0.1s ease-out;
  1155.  
  1156.  
  1157.  
  1158. transition: all 0.1s ease-out;
  1159.  
  1160.  
  1161.  
  1162. }
  1163.  
  1164.  
  1165.  
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185.  
  1186. .links{
  1187.  
  1188.  
  1189.  
  1190. padding:10px 0px 0px 0px;
  1191.  
  1192.  
  1193.  
  1194. }
  1195.  
  1196.  
  1197.  
  1198.  
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210. .links a{
  1211.  
  1212.  
  1213.  
  1214. width:auto;
  1215.  
  1216.  
  1217.  
  1218. line-height:auto;
  1219.  
  1220.  
  1221.  
  1222. text-transform: uppercase;
  1223.  
  1224.  
  1225.  
  1226. font-family: ubuntu;
  1227.  
  1228.  
  1229.  
  1230. font-size: 10px;
  1231.  
  1232.  
  1233.  
  1234. padding: 6px;
  1235.  
  1236.  
  1237.  
  1238. padding-right:10px;
  1239.  
  1240.  
  1241.  
  1242. padding-left:10px;
  1243.  
  1244.  
  1245.  
  1246. display: inline-block;
  1247.  
  1248.  
  1249.  
  1250. text-align:center;
  1251.  
  1252.  
  1253.  
  1254. margin-right:15px;
  1255.  
  1256.  
  1257.  
  1258. color: #000;
  1259.  
  1260.  
  1261.  
  1262. border: 1px solid #DDDDDD;
  1263.  
  1264.  
  1265.  
  1266. -webkit-transition: all 0.4s ease-out;
  1267.  
  1268.  
  1269.  
  1270. -moz-transition: all 0.4s ease-out;
  1271.  
  1272.  
  1273.  
  1274. transition: all 0.4s ease-out;
  1275.  
  1276.  
  1277.  
  1278. border-top-right-radius:0px;
  1279.  
  1280.  
  1281.  
  1282. border-bottom-right-radius:50px;
  1283.  
  1284.  
  1285.  
  1286. border-top-left-radius:50px;
  1287.  
  1288.  
  1289.  
  1290. border-bottom-left-radius:0px;
  1291.  
  1292.  
  1293.  
  1294. }
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  
  1308.  
  1309.  
  1310. .links a:hover {
  1311.  
  1312.  
  1313.  
  1314. color: #000;
  1315.  
  1316.  
  1317.  
  1318. -webkit-transition: all 0.4s ease-out;
  1319.  
  1320.  
  1321.  
  1322. -moz-transition: all 0.4s ease-out;
  1323.  
  1324.  
  1325.  
  1326. transition: all 0.4s ease-out;
  1327.  
  1328.  
  1329.  
  1330. border-top-right-radius:50px;
  1331.  
  1332.  
  1333.  
  1334. border-bottom-right-radius:0px;
  1335.  
  1336.  
  1337.  
  1338. border-top-left-radius:0px;
  1339.  
  1340.  
  1341.  
  1342. border-bottom-left-radius:50px;
  1343.  
  1344.  
  1345.  
  1346. border: 1px dashed #dddddd;
  1347.  
  1348.  
  1349.  
  1350. }
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362. </style>
  1363.  
  1364.  
  1365.  
  1366.  
  1367.  
  1368.  
  1369.  
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378. <meta http-equiv="x-dns-prefetch-control" content="off"/><meta http-equiv="x-dns-prefetch-control" content="off"/><!-- TWITTER TAGS -->
  1379. <meta charset="utf-8">
  1380. <meta name="twitter:site" value="tumblr" />
  1381.  
  1382.  
  1383. <meta http-equiv="x-dns-prefetch-control" content="off"/></head>
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390.  
  1391. <body>
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399. <div id="center">
  1400.  
  1401.  
  1402.  
  1403.  
  1404.  
  1405.  
  1406.  
  1407. <div id="desc">
  1408.  
  1409.  
  1410.  
  1411. <div class="blogtitle"><a href="/"><span id="wipe">I've changed my url, Sorry for the inconvenience.
  1412. </span></a></div>
  1413.  
  1414.  
  1415.  
  1416. <div class="info">
  1417.  
  1418.  
  1419.  
  1420. <div class="links">
  1421.  
  1422.  
  1423.  
  1424.  
  1425.  
  1426.  
  1427.  
  1428. <a href="http://www.tumblr.com/dashboard">DASH</a> <a href="/">refresh</a>
  1429. <a href="http://chicicons.tumblr.com/archive">Archive</a>
  1430. <a href="http://chicicons.tumblr.com/ask">Ask</a>
  1431. <a href="http://{text:new url}.tumblr.com">My new url</a>
  1432. <a href="http://theblog-studio.tumblr.com">credit</a>
  1433.  
  1434.  
  1435.  
  1436.  
  1437.  
  1438.  
  1439.  
  1440. </div>
  1441.  
  1442.  
  1443.  
  1444. <br>
  1445.  
  1446.  
  1447.  
  1448. I have moved on to another url, I'm very sorry for the inconvenience. Thank you.
  1449. <font color="pink"><h2>Love,</h2> </font>
  1450. {text:your name}
  1451. <br></br>
  1452.  
  1453.  
  1454. <script language="JavaScript">
  1455. var ref = (''+document.referrer+'');
  1456. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID1469843&e1=Misses me&e2=Misses me&r=' + ref + '"><\/script>');
  1457. </script>
  1458.  
  1459. and
  1460.  
  1461.  
  1462. <script language="JavaScript" src="http://freehostedscripts1.net/ocount.php?site=ID1449333&name=Missed me"></script>
  1463.  
  1464.  
  1465.  
  1466.  
  1467.  
  1468.  
  1469.  
  1470.  
  1471.  
  1472.  
  1473. </div>
  1474.  
  1475.  
  1476.  
  1477. </div>
  1478.  
  1479.  
  1480.  
  1481. </div>
  1482.  
  1483.  
  1484.  
  1485.  
  1486.  
  1487. <!-- BEGIN TUMBLR CODE --><iframe src="http://assets.tumblr.com/iframe.html?10&src=http%3A%2F%2F4pologize.com%2F&amp;lang=en_US&amp;name=4pologize" scrolling="no" width="330" height="25" frameborder="0" style="position:absolute; z-index:1337; top:0px; right:0px; border:0px; background-color:transparent; overflow:hidden;" id="tumblr_controls"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('tumblr_controls').allowTransparency=true;</script><![endif]--><script type="text/javascript">_qoptions={qacct:"p-19UtqE8ngoZbM"};</script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script><noscript><img src="http://pixel.quantserve.com/pixel/p-19UtqE8ngoZbM.gif" style="display:none; border-width:0px; height:1px; width:1px;" alt=""/></noscript><!-- END TUMBLR CODE -->
  1488. </body>
  1489.  
  1490.  
  1491.  
  1492. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement