Advertisement
ele-disse-adeus

13

Jan 14th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.97 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <head><script type='text/javascript'>
  5. //<![CDATA[
  6. var rate = 50;
  7. if (document.getElementById)
  8. window.onerror=new Function("return true")
  9.  
  10. var objActive; // The object which event occured in
  11. var act = 0; // Flag during the action
  12. var elmH = 0; // Hue
  13. var elmS = 128; // Saturation
  14. var elmV = 255; // Value
  15. var clrOrg; // A color before the change
  16. var TimerID; // Timer ID
  17. if (document.all) {
  18. document.onmouseover = doRainbowAnchor;
  19. document.onmouseout = stopRainbowAnchor;
  20. }
  21. else if (document.getElementById) {
  22. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  23. document.onmouseover = Mozilla_doRainbowAnchor;
  24. document.onmouseout = Mozilla_stopRainbowAnchor;
  25. }
  26. function doRainbow(obj)
  27. {
  28. if (act == 0) {
  29. act = 1;
  30. if (obj)
  31. objActive = obj;
  32. else
  33. objActive = event.srcElement;
  34. clrOrg = objActive.style.color;
  35. TimerID = setInterval("ChangeColor()",100);
  36. }
  37. }
  38. function stopRainbow()
  39. {
  40. if (act) {
  41. objActive.style.color = clrOrg;
  42. clearInterval(TimerID);
  43. act = 0;
  44. }
  45. }
  46. function doRainbowAnchor()
  47. {
  48. if (act == 0) {
  49. var obj = event.srcElement;
  50. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  51. obj = obj.parentElement;
  52. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  53. break;
  54. }
  55. if (obj.tagName == 'A' && obj.href != '') {
  56. objActive = obj;
  57. act = 1;
  58. clrOrg = objActive.style.color;
  59. TimerID = setInterval("ChangeColor()",100);
  60. }
  61. }
  62. }
  63. function stopRainbowAnchor()
  64. {
  65. if (act) {
  66. if (objActive.tagName == 'A') {
  67. objActive.style.color = clrOrg;
  68. clearInterval(TimerID);
  69. act = 0;
  70. }
  71. }
  72. }
  73. function Mozilla_doRainbowAnchor(e)
  74. {
  75. if (act == 0) {
  76. obj = e.target;
  77. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  78. obj = obj.parentNode;
  79. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  80. break;
  81. }
  82. if (obj.nodeName == 'A' && obj.href != '') {
  83. objActive = obj;
  84. act = 1;
  85. clrOrg = obj.style.color;
  86. TimerID = setInterval("ChangeColor()",100);
  87. }
  88. }
  89. }
  90. function Mozilla_stopRainbowAnchor(e)
  91. {
  92. if (act) {
  93. if (objActive.nodeName == 'A') {
  94. objActive.style.color = clrOrg;
  95. clearInterval(TimerID);
  96. act = 0;
  97. }
  98. }
  99. }
  100. function ChangeColor()
  101. {
  102. objActive.style.color = makeColor();
  103. }
  104. function makeColor()
  105. {
  106. // Don't you think Color Gamut to look like Rainbow?
  107. // HSVtoRGB
  108. if (elmS == 0) {
  109. elmR = elmV; elmG = elmV; elmB = elmV;
  110. }
  111. else {
  112. t1 = elmV;
  113. t2 = (255 - elmS) * elmV / 255;
  114. t3 = elmH % 60;
  115. t3 = (t1 - t2) * t3 / 60;
  116. if (elmH < 60) {
  117. elmR = t1; elmB = t2; elmG = t2 + t3;
  118. }
  119. else if (elmH < 120) {
  120. elmG = t1; elmB = t2; elmR = t1 - t3;
  121. }
  122. else if (elmH < 180) {
  123. elmG = t1; elmR = t2; elmB = t2 + t3;
  124. }
  125. else if (elmH < 240) {
  126. elmB = t1; elmR = t2; elmG = t1 - t3;
  127. }
  128. else if (elmH < 300) {
  129. elmB = t1; elmG = t2; elmR = t2 + t3;
  130. }
  131. else if (elmH < 360) {
  132. elmR = t1; elmG = t2; elmB = t1 - t3;
  133. }
  134. else {
  135. elmR = 0; elmG = 0; elmB = 0;
  136. }
  137. }
  138. elmR = Math.floor(elmR).toString(16);
  139. elmG = Math.floor(elmG).toString(16);
  140. elmB = Math.floor(elmB).toString(16);
  141. if (elmR.length == 1) elmR = "0" + elmR;
  142. if (elmG.length == 1) elmG = "0" + elmG;
  143. if (elmB.length == 1) elmB = "0" + elmB
  144. elmH = elmH + rate;
  145. if (elmH >= 360)
  146. elmH = 0;
  147. return '#' + elmR + elmG + elmB;
  148. }
  149. //]]>
  150. </script>
  151. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  152. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Stalemate' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Merienda' rel='stylesheet' type='text/css'>
  153.  
  154. <title>{Title}</title>
  155. <link rel="shortcut icon" href="{Favicon}">
  156. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  157. <link rel="shortcut icon" href="{Favicon}">
  158. <title>Untitled Document</title>
  159. <link rel="shortcut icon" href="{Favicon}">
  160. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  161. <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch:bold' rel='stylesheet' type='text/css'>
  162. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  163. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  164. {block:Description}
  165. <meta name="description" content="{MetaDescription}" />
  166. {/block:Description}
  167. <meta name="color:background" content="#fafafa">
  168. <meta name="image:background" content="http://static.tumblr.com/7e289f7d89e7ec597a55329b1e4c84f8/jis8eac/thGmglfo8/tumblr_static_city-wallpaper-18.jpg">
  169. <meta name="image:sidebar" content="http://static.tumblr.com/jis8eac/Ca4m90sdd/4.png">
  170. <meta name="color:post" content="#fff">
  171. <meta name="color:text" content="#999">
  172. <meta name="font:titulo" content="georgia">
  173. <meta name="color:link" content="#999">
  174. <meta name="color:link hover" content="#ccc">
  175. <meta name="text:menu1" content="URL">
  176. <meta name="text:menu1 nome" content="link">
  177. <meta name="text:menu2" content="URL">
  178. <meta name="text:menu2 nome" content="link 2">
  179. <meta name="text:menu3" content="URL">
  180. <meta name="text:menu3 nome" content="link 3">
  181. <meta name="text:menu4" content="URL">
  182. <meta name="text:menu4 nome" content="link 4">
  183. <meta name="text:menu5" content="URL">
  184. <meta name="text:menu5 nome" content="link 5">
  185. <meta name="text:menu6" content="URL">
  186. <meta name="text:menu6 nome" content="link 6">
  187. <meta name="text:frase" content="Miss your heater kiss.">
  188. <meta name="color:ol notes" content="#f4f4f4">
  189. <meta name="color:chat line 1" content="#f1f1f1">
  190. <meta name="color:chat line 2" content="#f4f4f4">
  191. <meta name="color:music" content="#f4f4f4">
  192. <meta name="color:h1" content="#aaaaaa">
  193. <meta name="color:extra" content="#f4f4f4">
  194. <meta name="color:ask" content="#f4f4f4">
  195. </head>
  196. <style type="text/css">
  197. #tumblr_controls{position:fixed !important; }
  198. /*** Corpo **********/
  199. body {text-align:justify;color: {color:text}; font-size: 11px; font-family: calibri, sans-serif; background: {color:background} url('{image:background}') fixed;background-position:center;}
  200.  
  201.  
  202. /*** Link estilo ***/
  203. a {color: {color:link};text-decoration: none;}
  204. a:hover {color:{color:link hover}}
  205.  
  206. /*** Quote formato **/
  207. blockquote { margin-bottom: 5px; padding: 3px; background:{color:mais claro que o dtls pf aqui}; margin-top: 5px; margin-left: 2px; margin-right: 2px; text-shadow: 0px 0px 3px {color:bgcaixa};
  208. font-size: 8pt; color: #; border-left: 6px solid {color:dtls}; color:{color:dtls}}
  209.  
  210. ful { list-style: none; }
  211. ol { list-style-position: inside; }
  212. * { margin: 0; padding: 0; outline: none; }
  213.  
  214.  
  215. #content { width: 840px; background: #; background-repeat: repeat-y; margin-left: auto; margin-right: auto;}
  216.  
  217. #posts{margin-top: 56px; background-color: #; width:840px; float: left; position: relative; margin-left: 0px; padding-left: 2px;}
  218. #content .yp {background-color:{color:post}; overflow: hidden; width: 180px; margin: 4px; border: solid 10px {color:post}; float:left; {block:PermalinkPage}width:500px;{/block:PermalinkPage}}
  219. m {color: #;}
  220. .clear {clear:both; }
  221. em {color:#;}
  222. dat {color: #; border-bottom: 1px solid #; }
  223. p { padding-bottom: 8px; }
  224. table, td, tr {font-size: 11px; font-family : 'Trebuchet MS', Tahoma, Arial, Helvetica, sans-serif; color: {color:text};}
  225. .la {float: right;}
  226.  
  227.  
  228. /*** Notes *********/
  229. ol.notes {display : block;margin-bottom : 1px; list-style-type: none; text-align: left;}
  230. ol.notes li.note {border-top: solid 1px #fff;background: {color:ol notes}; padding: 2px;}
  231. ol.notes li.note img.avatar {display: inline; width: 10px}
  232. ol.notes li.note span.action {font-weight: none;}
  233. ol.notes li.note .answer_content {font-weight: normal;}
  234. ol.notes li.note blockquote {display: none;}
  235. ol.notes li.note blockquote a {text-decoration: none;}
  236. /*** Chat, Musica e outros **/
  237. .post-chat {width: 500px; margin-top:-5px; background: #;}
  238. .chat {list-style-type: none; }
  239. .odd {font-size: 10px;padding: 6px; background: {color:chat line 1}; color: #; margin-top: 1px;}
  240. .even {font-size:10px; padding: 6px; background: {color:chat line 2}; margin-top: 1px; text-shadow: 0px 1px 1px {color:post};}
  241. .trackid {font-family: 'Pontano Sans', sans-serif; font-size: 9pt; margin-left: 0px;padding: 7px; margin-top: 1px; margin-bottom: 2px; background:{color:music};margin-right: 0px; text-shadow: 0px 1px 1px #;}
  242. .trackid c {color: {color:link};text-transform:uppercase; font-size: 8pt;}
  243. .trackid2 {margin-top: 1px; background:{color:music}; display: block; height:27px;overflow:hidden; padding-left: 54px;}
  244. .albumim {margin-top: -27px; background: url('http://static.tumblr.com/tx5g7yp/smgm74843/capa.png') no-repeat; width: 56px; height: 56px; position: absolute; float: left; display: inline-block;-webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px;}
  245. .albumim img {-webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px;}
  246. .boxmusica {background:{color:post};}
  247. .clear {margin-top:1px;}
  248. .rs {margin-left: 55px;}
  249. .caixa {padding: 3px;}
  250. /*** Comandos **/
  251. @font-face {font-family: "04b03";
  252. src: url('http://static.tumblr.com/icz5xqv/ZUmlobzpk/bonjourlindas.blgspt_upload_pxl.ttf'); format("truetype"); }
  253. .quote {text-align:center; font-family: georgia, sans-serif; font-size: 7pt; padding: 1px; color: {color:h1}; }
  254. .h1 a {text-align:justify; font-family: georgia, sans-serif; font-size: 13pt; padding: 1px; color: {color:h1}; }
  255. .h1 {text-align:justify; font-family: georgia, sans-serif; font-size: 13pt; padding: 1px; color: {color:h1}; }
  256. .h1 small {text-align:justify; font-family: georgia, sans-serif; font-size: 10pt; padding: 1px; color: {color:h1}; }
  257. .h2 a {text-align:justify; font-family: georgia, sans-serif; font-size: 13pt; padding: 1px; color: {color:h1}; }
  258. /** estilo de ask by htmland **/
  259. .msanswer {background: {color:ask};float: left; color: {color:text};width: 95%; margin-bottom: 25px; padding-top: 13px; padding-left: 13px; padding-bottom: 13px; padding-right: 13px; text-align: justy; display: block; overflow: hidden; border-bottom: 2px solid {color:ask};}
  260. .msanswerimg {border: 1px solid {color:ask}; float: left; margin-top: -27px; margin-bottom: 5px; opacity: 0.8}
  261. .msanswerimg:hover {opacity: 1.0}
  262. .msanswerinfo {background: {color:ask}; padding: 6px; float: left; display: inline-block; width: auto; color: {color:text}; font: normal 8px '04b03'; text-transform: uppercase; margin-bottom: 5px; margin-top: -27px; margin-left: 20px}
  263. .msanswerinfo a {color: {color:post};}
  264.  
  265. .caixa .perma {border-top:1px solid {color:background};text-align:right;font-family: georgia, sans-serif; font-size: 7pt; padding-top:1px; color: {color:h1};background:{color:post};}
  266.  
  267.  
  268. .caix .perma {position:absolute;font:13px 'georgia';text-align:center;width:180px;color:{color:post};opacity:0;padding:3px;color:#fff;}
  269. .caix .perma a {color:#fff;}
  270. .caix .perma .reb {border-bottom:1px solid {color:post};padding-bottom:3px;margin-bottom:3px;float:left;}
  271.  
  272. .caix:hover .perma {opacity:1;}
  273. .quotes{position:absolute; opacity: 0.1; top:0px; margin-left: 0px; font-size: 80px;}
  274.  
  275. #topped {height:50px;position:absolute;z-index:999;background:{color:post};width:824px;margin-left:6px;margin-top:2px;overflow:hidden;}
  276.  
  277. .topped-text {font:20px 'Merienda';text-align:center;width:824px;margin-top:10px;-moz-transition-duration: .99s; -webkit-transition-duration: .99s;}
  278. #topped:hover .topped-text {opacity:0;margin-top:-50px;}
  279. .men {z-index:999;margin-left:1050px;margin-top:40px;width:824px;-moz-transition-duration: .99s; -webkit-transition-duration: .99s;}
  280. #topped:hover .men {margin-left:0px;text-align:center;}
  281. #men {padding:3px;font:11px 'georgia';font-weight:bold;text-shadow:1px 1px 0px #eee;}
  282.  
  283.  
  284. </style>
  285.  
  286. <body>
  287.  
  288. <div id="content">
  289. <div id="topped"><div class="topped-text">{text:frase}</div><div class="men"><a href="{text:menu1}" id="men">{text:menu1 nome}</a>
  290. <a href="{text:menu2}" id="men">{text:menu2 nome}</a>
  291. <a href="{text:menu3}" id="men">{text:menu3 nome}</a>
  292. <a href="{text:menu4}" id="men">{text:menu4 nome}</a>
  293. <a href="{text:menu5}" id="men">{text:menu5 nome}</a>
  294. <a href="{text:menu6}" id="men">{text:menu6 nome}</a></div></div>
  295.  
  296.  
  297. <div id="posts">
  298.  
  299. {block:Posts}
  300.  
  301. <div class="yp">
  302.  
  303.  
  304. {block:Text}
  305. <div class="caixa">
  306.  
  307. <div class="hm">
  308. <div class="quote">{block:Title}{Title}{/block:Title}
  309. {Body}</div>{block:IndexPage}<div class="perma"><a href="{ReblogURL}">reblog</a> + <a href="{Permalink}">{NoteCount} notes</a> + <a href="{ReblogParentURL}">source</a></div>{/block:IndexPage}
  310. </div>
  311. </div>
  312. {/block:Text}
  313.  
  314.  
  315.  
  316. {block:Photo}
  317. <div class="caix">
  318. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  319. {/block:IndexPage}
  320.  
  321. {block:IndexPage}<img style="margin-bottom: -3px;" src="{PhotoURL-500}" width="180px">{/block:IndexPage}
  322. {block:PermalinkPage}<img src="{PhotoURL-500}" width="500">{/block:PermalinkPage}
  323.  
  324. </div>
  325. {/block:Photo}
  326.  
  327.  
  328. {block:Photoset}
  329. <div class="caix">
  330. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  331. {/block:IndexPage}
  332. <div style="margin-bottom: -3px;">
  333. {block:IndexPage}{Photoset-250}{/block:IndexPage}
  334. </div>
  335. {block:PermalinkPage}{Photoset-250}{/block:PermalinkPage}
  336. </div>
  337. {/block:Photoset}
  338.  
  339.  
  340. {block:Quote}
  341. <div class="caixa">
  342. <span class="quotes">❝</span>
  343. <div class="quote">{Quote} {block:Source}- <b>{Source}</b>{/block:Source}</div>
  344. {block:IndexPage}<div class="perma"><a href="{ReblogURL}">reblog</a> + <a href="{Permalink}">{NoteCount} notes</a> + <a href="{ReblogParentURL}">source</a></div>{/block:IndexPage}
  345. </div>
  346. {/block:Quote}
  347.  
  348.  
  349.  
  350. {block:Chat}
  351. <div class="caix">
  352. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  353. {/block:IndexPage}
  354. {block:Title}<div class="h1">
  355. <a href="{Permalink}">{Title}</a></div>{/block:Title}
  356. {block:Lines}<div class="{Alt} user_{UserNumber}">
  357. {block:Label}<span class="label">{Label}</span>{/block:Label}
  358. {Line}</div>
  359. {/block:Lines}
  360. </div>
  361. {/block:Chat}
  362.  
  363.  
  364.  
  365. {block:Link}
  366. <div class="caixa">
  367.  
  368. <span class="h1"><a href="{URL}"><span class="links">{Name}</span></span></a>{block:Description}{Description}{/block:Description}{block:IndexPage}<div class="perma"><a href="{ReblogURL}">reblog</a> + <a href="{Permalink}">{NoteCount} notes</a> + <a href="{ReblogParentURL}">source</a></div>{/block:IndexPage}
  369. </div>
  370. {/block:Link}
  371.  
  372.  
  373. {block:Audio}
  374. <div class="caix">
  375. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  376. {/block:IndexPage}
  377. <div class="trackid2">{AudioPlayerGrey}</div>
  378. <div class="boxmusica">
  379. <div class="albumim">{block:AlbumArt}<img src="{AlbumArtURL}" class="album"width="56" >{/block:AlbumArt}</div>
  380. <div class="trackid">
  381. <span class="rs"><c>Faixa:</c> {block:TrackName}{TrackName}{/block:TrackName}</span></div>
  382. <div class="trackid"><c>Artista:</c> {block:Artist}{Artist}{/block:Artist}</div>
  383. <div class="trackid"><c>Executado:</c> ({PlayCount}) Vezes</div>
  384. <div class="clear"></div>
  385. </div>
  386. </div>
  387. {/block:Audio}
  388.  
  389.  
  390.  
  391. {block:Video}
  392. <div class="caix">
  393. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  394. {/block:IndexPage}
  395. {block:IndexPage}<div class="video">{Video-250}</div>{/block:IndexPage}
  396. {block:PermalinkPage}{Video-250}{/block:PermalinkPage}
  397. </div></div>
  398. {/block:Video}
  399.  
  400.  
  401.  
  402. {block:Answer}
  403. <div class="caix">
  404. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  405. {/block:IndexPage}
  406. <div class="msanswer">
  407. {Question}
  408. </div>
  409. <img src="{AskerPortraitURL-24}" width="18px" class="msanswerimg">
  410. <div class="msanswerinfo">Ask por {Asker}</div>
  411. {Answer}
  412. </div>
  413. {/block:Answer}
  414.  
  415.  
  416. {block:PostNotes}
  417. <br>
  418. <div class="caixa">
  419. {block:Photoset}
  420. {block:Caption}<em>{Caption}</em>{/block:Caption}
  421. {/block:Photoset}
  422.  
  423. {block:Video}
  424. {block:Caption}{Caption}{/block:Caption}
  425. {/block:Video}
  426.  
  427. {block:Link}
  428. {block:Description}<em>{Description}</em>{/block:Description}
  429. {/block:Link}
  430.  
  431.  
  432. {PostNotes}
  433. </div>
  434.  
  435.  
  436.  
  437.  
  438.  
  439. {/block:PostNotes}
  440.  
  441. </div> <!-- fim -->
  442.  
  443. {/block:Posts}
  444. </div></div>
  445.  
  446. </div>
  447.  
  448.  
  449. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  450. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  451. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  452. <script type="text/javascript">
  453. $(window).load(function () {
  454. $('#posts').masonry(),
  455. $('.masonryWrap').infinitescroll({
  456. navSelector : "div#navigation",
  457. nextSelector : "div#navigation a#nextPage",
  458. itemSelector : ".yp",
  459. bufferPx : 10000,
  460. extraScrollPx: 11000,
  461. loadingImg : "http://static.tumblr.com/8yo5xxv/3Dem80mch/loading.gif",
  462. loadingText : "carregando",
  463. },
  464. // call masonry as a callback.
  465. function() { $('#posts').masonry({ appendedContent: $(this) }); }
  466. );
  467. });
  468. </script>
  469. {block:IndexPage}
  470. <div class="column navigation" id="navigation">
  471. {block:Pagination}
  472. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  473. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  474. </div>
  475. {/block:IndexPage}
  476.  
  477. <div style="position:fixed;bottom:20px;left:20px;"><a href="http://themesda-ca.tumblr.com/"><b>cacapsita ♔ </b></a></div>
  478.  
  479. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement