Eduarda

Theme 92

Dec 20th, 2012
1,162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.88 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5.  
  6. <!----
  7. Theme by: o-mundo-de-uma-garota|tumblr {NÃO USE COMO BASE} só adapte para o seu próprio uso e sem retirar os creditos, aliás não foi voce que fez né?! {NOT COPIE} plágio é crime !
  8. AJUDAS NECESSÁRIAS POR HTMLUV , ILOVETHEMES, REVOLUTIONHTML;
  9.  
  10. - - - - - - - - - - - - - -
  11. - THEME FEITO POR DUDA.R -
  12. - - - - - - - - - - - - - - ---->
  13.  
  14.  
  15. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
  16.  
  17. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  18.  
  19.  
  20.  
  21.  
  22. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  23.  
  24.  
  25. <link href='http://fonts.googleapis.com/css?family=Economica|Ubuntu+Condensed' rel='stylesheet' type='text/css'>
  26.  
  27. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  28.  
  29. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  30.  
  31. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  32.  
  33. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  34.  
  35. <script type="text/javascript">
  36. $(window).load(function(){
  37. var $wall = $('#box');
  38. $wall.imagesLoaded(function(){
  39. $wall.masonry({
  40. itemSelector: '.post',
  41. isAnimated : true
  42. });
  43. });
  44. $wall.infinitescroll({
  45. navSelector : "div#navigation",
  46. nextSelector : "div#navigation a#nextPage",
  47. itemSelector : '.post',
  48. loadingImg : "http://static.tumblr.com/kwz90l7/bIdlst7ub/transparent.png",
  49. loadingText : " ",
  50. donetext : " ",
  51. extraScrollPx : 9000,
  52. bufferPx : 10000,
  53. debug : false,
  54. errorCallback: function() {
  55. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  56. }},
  57. function( newElements ) {
  58. var $newElems = $( newElements );
  59. $newElems.hide();
  60. $newElems.imagesLoaded(function(){
  61. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 750, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  62. });
  63. }); $('#box').show(500);
  64. });
  65. </script>
  66.  
  67.  
  68. <head>
  69.  
  70.  
  71. <script>
  72.  
  73.  
  74.  
  75. $(document).ready(function() {
  76.  
  77. //
  78.  
  79.  
  80.  
  81. //When you click on a link with class of poplight and the href starts with a #
  82.  
  83. $('a.poplight[href^=#]').click(function() {
  84.  
  85. var popID = $(this).attr('rel'); //Get Popup Name
  86.  
  87. var popURL = $(this).attr('href'); //Get Popup href to define size
  88.  
  89.  
  90.  
  91. //Pull Query & Variables from href URL
  92.  
  93. var query= popURL.split('?');
  94.  
  95. var dim= query[1].split('&');
  96.  
  97. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  98.  
  99.  
  100.  
  101. //Fade in the Popup and add close button
  102.  
  103. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/2bh9bxo/iTXmdcocj/sbdb.gif" class="btn_close" title="Volte My boo" alt="Close" /></a>');
  104.  
  105.  
  106. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  107.  
  108. var popMargTop = ($('#' + popID).height() + 80) / 2;
  109.  
  110. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  111.  
  112.  
  113.  
  114. //Apply Margin to Popup
  115.  
  116. $('#' + popID).css({
  117.  
  118. 'margin-top' : -popMargTop,
  119.  
  120. 'margin-left' : -popMargLeft
  121.  
  122. });
  123.  
  124.  
  125.  
  126. //Fade in Background
  127.  
  128. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  129.  
  130. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  131.  
  132.  
  133.  
  134. return false;
  135.  
  136. });
  137.  
  138.  
  139.  
  140. //Close Popups and Fade Layer
  141.  
  142. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  143.  
  144. $('#fade , .popup_block').fadeOut(function() {
  145.  
  146. $('#fade, a.close').remove(); //fade them both out
  147.  
  148. });
  149.  
  150. return false;
  151.  
  152. });
  153.  
  154.  
  155.  
  156.  
  157.  
  158. });
  159.  
  160. </script>
  161.  
  162.  
  163.  
  164.  
  165.  
  166. <!-- APPERENCE OMDG -->
  167. <meta name="image:background" content="http://static.tumblr.com/524940703d944f35ba337822893e1f3e/2bh9bxo/4eEmf9k7a/tumblr_static_tumblr_m524nz3toe1qkzf0fback.png" />
  168. <meta name="image:fotodr" content="http://static.tumblr.com/cbb337c81a3b97f7480ce2d2af04ad9d/2bh9bxo/CtDmfd1ir/tumblr_static_tumblr_mbw1wan2jv1rgran4o1_500.jpg" />
  169. <meta name="image:fundo" content="http://static.tumblr.com/544ed1dc7f73a7d1ba730fe76bfa6818/2bh9bxo/khXmf9jor/tumblr_static_blu.png" />
  170.  
  171.  
  172.  
  173. <meta name="text:frase2" content="Menina dos olhos de Deus" />
  174.  
  175. <meta name="color:background" content="#1C1C1C" />
  176. <meta name="color:link" content="#CDC9C9" />
  177. <meta name="color:text" content="#CDC9C9" />
  178. <meta name="color:bghover" content="#FFC0CB" />
  179. <meta name="color:linkshover" content="#1C1C1C" />
  180. <meta name="color:links" content="#CDC9C9" />
  181. <meta name="color:text desc" content="#CDC9C9" />
  182. <meta name="color:borda" content="#1C1C1C" />
  183. <meta name="color:borda2" content="#000" />
  184. <meta name="color:bordaimg" content="#1C1C1C" />
  185. <meta name="color:abc" content="#FFC0CB" />
  186. <meta name="color:italico" content="#CDC9C9" />
  187. <meta name="color:linhadopost" content="#CDC9C9" />
  188. <meta name="color:post" content="#000" />
  189. <meta name="color:sidebar" content="#000" />
  190. <meta name="color:scrollbar" content="#000" />
  191. <meta name="color:frase" content="#CDC9C9" />
  192. <meta name="color:tags" content="#FFC0CB" />
  193. <meta name="color:sombra" content="#000" />
  194. <meta name="color:bgask" content="#1c1c1c" />
  195. <meta name="color:pag" content="#CDC9C9" />
  196.  
  197.  
  198. <meta name="if:Show tags" content="1"/>
  199.  
  200. <meta name="text:Link1" content="/" />
  201. <meta name="text:Link1 Title" content="home" />
  202. <meta name="text:Link2" content="/" />
  203. <meta name="text:Link2 Title" content="askbox" />
  204. <meta name="text:Link3" content="/" />
  205. <meta name="text:Link3 Title" content="link" />
  206. <meta name="text:Link4" content="/" />
  207. <meta name="text:Link4 Title" content="link4" />
  208. <meta name="text:Link5" content="/" />
  209. <meta name="text:Link5 Title" content="link5" />
  210. <meta name="text:Link6" content="/" />
  211. <meta name="text:Link6 Title" content="link6" />
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220. <title>{Title}</title>
  221. <link rel="shortcut icon" href="{Favicon}">
  222. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  223. {block:Description}
  224. <meta name="description" content="{MetaDescription}" />
  225. {/block:Description}
  226.  
  227.  
  228.  
  229.  
  230. <!----------------FONTES-------?-------->
  231. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  232. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  233. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  234.  
  235. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  236.  
  237. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  238. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  239. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  240.  
  241. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  242.  
  243.  
  244. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  245.  
  246. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  247.  
  248. <link href='http://fonts.googleapis.com/css?family=Snippet|Sue+Ellen+Francisco|Andika|Delius+Swash+Caps|Lobster|Redressed|Tangerine|Rancho|Rochester|Lobster+Two|Dancing+Script|Pacifico|Crafty+Girls' rel='stylesheet' type='text/css'>
  249.  
  250. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  251. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  252. <link href='http://fonts.googleapis.com/css?family=Emilys+Candy|Butterfly+Kids|Federo|Quicksand|Antic+Didone|Josefin+Slab|Raleway+Dots|Cedarville+Cursive|Damion|Dawning+of+a+New+Day|Rancho|Marvel' rel='stylesheet' type='text/css'>
  253.  
  254. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  255. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  256.  
  257.  
  258.  
  259. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  260. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  261. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  262. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  263.  
  264. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  265. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  266. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  267. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  268. <!------------------eita duh--------------------->
  269. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  270.  
  271. <script type="text/javascript">
  272. // <![CDATA[
  273. var speed=100; //
  274. var height=3; //
  275. var alink="/"; // page to link text to (set to ="" for no link)
  276.  
  277. /****************************
  278. ****************************/
  279. var wobtxt, wobble, wobcnt=0;
  280. window.onload=function() { if (document.getElementById) {
  281. var i, wobli;
  282. wobble=document.getElementById("wobble");
  283. wobtxt=wobble.firstChild.nodeValue;
  284. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  285. for (i=0; i<wobtxt.length; i++) {
  286. wobli=document.createElement("span");
  287. wobli.setAttribute("id", "wobb"+i);
  288. wobli.style.position="relative";
  289. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  290. if (alink) {
  291. wobli.style.cursor="pointer";
  292. wobli.onclick=function() { top.location.href=alink; }
  293. }
  294. wobble.appendChild(wobli);
  295. }
  296. setInterval("wobbler()", speed);
  297. }}
  298.  
  299. function wobbler() {
  300. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  301. wobcnt++;
  302. }
  303. // ]]>
  304. </script>
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312. <style type="text/css">
  313.  
  314. body {background-color: {color:background}; font-family: Century Gothic; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  315.  
  316.  
  317.  
  318. a {color: {color:link}; text-decoration: none; text-transform: none;}
  319. a:hover {color: {color:lhover}; background-color: transparent; text-decoration: none;}
  320.  
  321.  
  322. p {margin: 6px 0 0 0}
  323.  
  324. blockquote {margin: 5px 5px 5px 5px; border-left: 1px solid {color:background}; padding-left: 5px; }
  325. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background};}
  326. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background}; }
  327. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  328.  
  329.  
  330. blockquote img{max-width: 470px!important}
  331. blockquote blockquote img{max-width: 450px!important}
  332. blockquote blockquote blockquote img{max-width: 430px!important}
  333. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  334.  
  335.  
  336. #container {background-color: ; width: 1000px; margin: 0 auto 10px auto; background: {color:background}}
  337.  
  338. /**-------------BASE DUH------------♥---------------**/
  339. #baseduh {margin-left: 442px; width: 700px; margin-top: 20px; }
  340.  
  341. .omdg {{block:IndexPage}width: 280px;
  342. background-color:{color:post} ; text-align: justify;
  343. padding: 9px; float: left;
  344. margin: 4px 0 0 4px;{/block:IndexPage}{block:PermalinkPage}
  345. padding:10px; width:300px; margin-top: 8px; height:auto;
  346. background-color: {color:post};
  347. text-align: left; margin-left:7px;
  348. {/block:PermalinkPage}}
  349.  
  350. #baseduh:hover{-webkit-transition: all .7s ease-out;
  351. -moz-transition: all .7s ease-out;opacity:1}
  352. .omdg img{width: 278px; padding: 3px;
  353. border: 1px solid {Color:background}}
  354.  
  355. .omdg:hover #baseduh2 {opacity: 1;}
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362. h1 {font-family:Yanone Kaffeesatz ; text-align: center; font-size: 14px; color: {color:text}; font-weight: normal; line-height: 14px;}
  363. h1 a {text-align: center; font-size: 13px;color: {color:text}; font-weight: normal; line-height: 14px;}
  364. h1 a:hover {text-align: center; font-size: 13px; color: {color:text}; font-weight: normal; line-height: 14px;}
  365. .image {text-align: center; width: 272px; border: 0px}
  366. .image img {max-width: 272px; margin-bottom: 2px }
  367.  
  368. /* QUOTE cerejadosundae */
  369. .quote:first-letter{font-family: georgia; font-style:italic; font-size: 20px;}
  370. .quote {margin: 0; padding: 5px; font: normal 11px 'georgia'; text-align: justify;}
  371.  
  372. /* Chat por Anna (livelikeasuicide) *********/
  373. .chat {background:{color:posts}; margin: 0; font-size:
  374.  
  375. 10px; font-family: trebuchet ms;}
  376. .chat .chat1 {margin-left: 0px;font-size:
  377. 8px; }
  378. .chat .chat1 .chat2 {font-weight: bold; background:{color:posts}; color:{color:text};font-size: 10px; border:1px solid {color:background};
  379. margin-bottom: 1px; padding: 4px 5px 4px 5px; font-family: trebuchet ms;} /* Primeira linha */
  380. .chat .chat1 .chat2.even {background:{color:background};
  381. color:{color:text};font-size:
  382. 9px;font-weight: bold; } /* Segunda linha */
  383. .chat .chat1 .chat2 span{font-weight: bold; }
  384.  
  385.  
  386.  
  387. .chat {line-height: 13px; list-style: none }
  388. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  389. .person1 {color: {color:text}; padding: 2px; }
  390. .person1 .label {font-weight: bold; color:{color:text}}
  391. .person2 {color: {color:text}; padding: 2px; }
  392. .person2 .label {font-weight: bold; color:{color:text}}
  393.  
  394. .player {background-color: #000; text-align: left; display:block;}
  395.  
  396.  
  397. .question {color:{color:text};font-size: 11px;font-weight: normal;fon-family: verdana;line-height:95%;background: {color:bgask};position: relative;min-height:70px;padding:10px 15px;margin-bottom:2px;margin-right:-10px;}
  398.  
  399. .questionarrow {font-size:30px;color:{color:bgask};vertical-align:middle;margin-left:-5px!important;}
  400.  
  401.  
  402. .asker {width:280px; text-align:right; text-transform:lowercase; color:{color:text};}
  403. .asker a {color:{color:text};}
  404. .asker img {float:left; margin-left:400px; vertical-align:top; margin-right:3px; max-height:15px;}
  405.  
  406. .asking {text-align:center; color:{color:text}; font:9px verdana; text-transform:none;}
  407. .asking a{color:{color:text};}
  408. .asking img {width:58px; vertical-align:middle; background-color:{color:background}; padding:3px;}
  409.  
  410. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  411.  
  412.  
  413. .answer {color:{color:answer};}
  414.  
  415. /**------------------BASE DUH 3 E 2 [NOTES E SOUCE]-------♥---*****/
  416.  
  417. .baseduh3 {opacity:; background:{color:background};-webkit-transition: all 0.6s ease-out;
  418. -moz-transition: all 0.6s ease-out;
  419. border: 1px dashed {color:linhadopost};letter-spacing: 1px}
  420. .baseduh3:hover {opacity: 0.9;
  421. -webkit-transition: all 0.9s ease-out;
  422. -moz-transition: all 0.9s ease-out;letter-spacing: 1px}
  423.  
  424. #baseduh2 {background:{color:sidebar};text-align: left; margin-top:6px;
  425. font-size: 11px; font-family: Ubuntu Mono;
  426. z-index: 11;}
  427. #baseduh2 a {font-size: 10px; color:{color:link};}
  428.  
  429. #tags {color: {color:text}; font-size: 9px; font-family: calibri; display: inline; list-style: none; text-transform: none; color:{color:text};}
  430. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};}
  431.  
  432. #cap {width: 280px; margin-top: -2px;}
  433. .source {display: none;}
  434.  
  435. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  436. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  437. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  438. .notes img{display: none; border:0px}
  439.  
  440. #duggs2 {position: fixed; margin: 0px 0px 0px -500px;}
  441.  
  442.  
  443.  
  444. /***--- SCROLLBAR---♥----***/
  445.  
  446. ::-webkit-scrollbar-thumb:vertical {background-color:{color:borda2};height:50px; border:5px solid {color:scrollbar};}
  447.  
  448. ::-webkit-scrollbar-button:vertical {height:8px;display: block; background:{color:borda2};}
  449.  
  450.  
  451. ::-webkit-scrollbar {height:0px;width:12px;background-color:{color:scrollbar};}
  452.  
  453. /****----------------EFEITINHO--------------♥------*****/
  454. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  455. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  456. 3
  457.  
  458. /***-----------NEGRITO ITALICO E SUBLINHADO-----♥---***/
  459. b, strong, bold {color:{color:abc};}
  460.  
  461. u,underline {color:{color:text}; border-bottom: 1px dotted {color:italico}; text-decoration:none; }
  462.  
  463. i, em{color:{color:text};}
  464.  
  465. /***------------- DUH IMAGEM-------------♥---------***/
  466.  
  467. #duhimg {margin-left: 115px;
  468. margin-top: 85px;
  469. position:fixed;
  470. overflow:hidden;
  471. opacity: 0.9;}
  472.  
  473. #duhimg img{ border:5px solid {color:bordaimg};
  474. opacity: 1;padding:5px;
  475. width: 283px;
  476. height:255px;-webkit-transition: all 0.4s ease-out;
  477. -moz-transition: all 0.4s ease-out;}
  478. #duhimg img:hover {-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  479.  
  480. /***----------- A PARTE DA SID---------♥------***/
  481.  
  482. #estela1 {position: fixed; margin-left: 102px; width:319px; height: 428px; background-color:{color:sidebar}; margin-top: 10px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px; -webkit-transform: rotate(0deg);box-shadow: 3px 3px 9px {color:sombra};border: 5px double {color:borda};}
  483.  
  484. /***—-Menu por o-mundo-de-uma-garota—-exclusive do revolutionhtml♥—***/
  485.  
  486. #menu { float: left; margin-top: 16px; padding: 3px; text-align: center;margin-left:239px; position: fixed; height:25px;background-color: transparent; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index:1000;width: 385px;}
  487.  
  488. #menu a {float: left; margin-right: 1px; border: 0px solid {color:borda};display: block; width: 49px; letter-spacing: 0px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; color:{color:links}; background:{color:linkshover};text-decoration: none; height:15px;line-height:12px; padding: 4px;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-top:1px; text-shadow: 2px 4px 10px {color:sombra};-webkit-border-radius: 20px 20px 0px 0px;-webkit-transform: rotate(10deg); }
  489.  
  490. #menu a:hover{width: 40px;height:10px;line-height:7px;background:{color:bghover};}
  491.  
  492. /***-------------TITULOS---------------♥---------***/
  493. #duka {background-image: url('{image:fundo}');margin-left:115px;margin-top: 44px; height:24px; line-height:20px;float:left; position:fixed; width:305px; font-family: 'Wire One'; font-size:21px; text-align: center;
  494. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none;text-shadow: 3px 3px 9px {color:sombra};border: 1px dashed {color:borda2};-webkit-transform: rotate(5deg);}
  495.  
  496.  
  497.  
  498.  
  499.  
  500. /******----------------DESCRIÇÃO--------♥--------******/
  501. #notinholaduda {margin-left: 109px; margin-top: 360px; width:298px; font-size: 12px; height: 38px; text-align: right; transparent; font-family:Ubuntu Mono; color: {color:text desc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  502. -moz-transition: 1s ease-in; transition: 1s ease-in; overflow: hidden; opacity: 1; border-top: 3px dotted transparent;text-shadow: 3px 3px 9px {color:sombra};}
  503.  
  504.  
  505.  
  506. /***—-Menu perfect shadow por o-mundo-de-uma-garota—-♥—***/
  507.  
  508. #menu1{width:398px; height: 40px; float: left; margin-left:128px; margin-top: 410px; padding: 0px; text-align: center; position: fixed; z-index:9999;}
  509.  
  510. #menu1 a {display: inline-block;float: left; margin-left: 1px; font-family: calibri; font-size: 10px;letter-spacing:0px; text-align: center; margin-top: 2px; height: 25px; width: 59px; color:{color:links};-webkit-border-radius: 0px 0px 0px 0px;background:{color:linkshover}; line-height: 24px; text-transform: uppercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal;text-shadow: 5px 5px 9px {color:sombra}; }
  511.  
  512. #menu1 a:hover{text-shadow: 0px -5px {color:bghover};, 0px -5px {color:links}; border-radius: 25px 10px / 10px 25px;-moz-border-radius: 25px 10px / 10px 25px;background: {color:borda2};padding: 10px;-webkit-transform:scale(1.8);-moz-transform:scale(1.8);-o-transform:scale(1.7);opacity:0.2;-webkit-transition-duration: .59s;opacity:0.7; #pattern opacity:0.7;}
  513.  
  514. .efeito img.top { opacity:1;}
  515.  
  516. .efeito:hover img.top, .cf4.hover_effect img.top {opacity:0;}
  517.  
  518. .efeito:hover img.bottom, .cf4.hover_effect img.bottom {filter:gray;opacity:1.0;}
  519.  
  520.  
  521.  
  522. #faixa2 {margin-top: 39px; margin-left: 275px; position: fixed; background-color: {color:linkshover}; height: 10px; width:82px;-webkit-transform: rotate(5deg);}/***detalhes by o-mundo-de-uma-garota***/
  523.  
  524.  
  525. #faixa3 {margin-top: 38px; margin-left: 330px; position: fixed; background-color: {color:linkshover}; height: 17px; width:82px;-webkit-transform: rotate(5deg);}/***detalhes by o-mundo-de-uma-garota***/
  526.  
  527.  
  528.  
  529. /**** SELECAO COLORIDA - MADLYLUV.com ****/
  530. ::-moz-selection{background:{color:borda2};text-shadow:0px 1px 1px #1c1c1c; }
  531. ::selection{background: {color:borda2}; color: {color:text};text-shadow:0px 1px 1px {color:sombra}; }
  532.  
  533.  
  534.  
  535.  
  536. /***--------TUMBLR CONTROLS---------♥------***/
  537.  
  538. #tumblr_controls{position: fixed!important}
  539.  
  540. #tumblr_controls{position: fixed!important}
  541.  
  542. #tumblr_controls{position: fixed!important}
  543.  
  544. #tumblr_controls{position: fixed!important}
  545.  
  546.  
  547.  
  548.  
  549. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  550. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:{color:bordaimg};color: {color:pag};opacity:1; -webkit-border-radius: 20px 20px 20px 20px;}
  551. #paginal a:hover {background: {color:sidebar}; color: {color:text};}
  552. #paginal span.pagina_atual {background: {color:borda2}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 0px 20px 0px 20px;}
  553. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 285px; margin-top: 458px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 20px 20px 20px 20px; }
  554.  
  555.  
  556. #duka3 {background-color:#;margin-left:155px;margin-top: 627px; height:44px; line-height:25px;float:left; position:fixed; width:280px; font-family: 'Courgette'; font-size:43px; text-align: left;
  557. color:#000;#b4b2b2 ; letter-spacing:-1px; z-index:11; text-transform: none; }
  558. #duka:hover{}
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  567.  
  568.  
  569.  
  570. </style>
  571. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  572.  
  573. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  574. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  575. <script type="text/javascript">
  576. $(window).load(function () {
  577. $('#baseduh').masonry(),
  578. $('.masonryWrap').infinitescroll({
  579. navSelector : ".omdg",
  580. nextSelector : "#page a#p",
  581. itemSelector : ".omdg",
  582. bufferPx : 10000,
  583. extraScrollPx: 10000,
  584. loadingImg : "",
  585. loadingText : "",
  586. },
  587. function() { $('#baseduh').masonry({ appendedContent: $(this) }); }
  588. );
  589. });
  590. </script>
  591.  
  592.  
  593.  
  594. <body>
  595.  
  596.  
  597. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  598. <!--------------------play aqui embaixo---♥------------>
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607. <div id="estela1"></div>
  608.  
  609.  
  610.  
  611.  
  612. <div id="menu">
  613.  
  614.  
  615. <a href="{text:Link1}">{text:Link1 Title}</a>
  616. <a href="{text:Link2}">{text:Link2 Title}</a>
  617.  
  618. <a href="{text:Link3}">{text:Link3 Title}</a>
  619.  
  620. </div class>
  621.  
  622. </div></div>
  623.  
  624. </div>
  625.  
  626. </div>
  627.  
  628. </div>
  629.  
  630.  
  631.  
  632.  
  633.  
  634. <div id="duka">{text:frase2}</font></div>
  635.  
  636.  
  637.  
  638.  
  639. <div id="faixa2"></div>
  640. <div id="faixa3"></div>
  641.  
  642. <div id="duhimg" ><img src="{image:fotodr}"></div>
  643.  
  644. </div></div>
  645.  
  646.  
  647. </div></div>
  648. </div></div></div></div>
  649.  
  650. </div></div>
  651.  
  652.  
  653.  
  654.  
  655. <div id="notinholaduda">{Description}</div>
  656.  
  657.  
  658. <div id="menu1">
  659.  
  660. <a href="{text:Link4}">{text:Link4 Title}</a>
  661. <a href="{text:Link5}">{text:Link5 Title}</a>
  662.  
  663. <a href="{text:Link6}">{text:Link6 Title}</a>
  664.  
  665. </div class>
  666.  
  667. </div></div>
  668.  
  669. </div>
  670.  
  671. </div>
  672.  
  673. </div>
  674.  
  675.  
  676.  
  677. <!-------------PAGINATION-----------♥---------->
  678.  
  679. <div class="ps"><div id="paginal">
  680. {block:JumpPagination length="3"}
  681. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  682. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  683. {/block:JumpPagination}
  684. </div></div>
  685.  
  686.  
  687. <!-------------CRÉDITOS-----------------♥------------->
  688. <div style="margin-left:55px;-webkit-border-radius: 20px 20px 0px 0px;-webkit-transform: rotate(-90deg); width:80px;background:{color:sidebar};font-family:tahoma;font-size:11px; margin-top: 195px; height:18px;position:fixed; "><a href="http://o-mundo-de-uma-garota.tumblr.com/"title="Theme by: o-mundo-de-uma-garota + estilo de quote por: cerejadosundae not copie"><small>THEME </small></a>
  689. <font color="{color:tags}">©</font> </a></div>
  690.  
  691.  
  692. <!--------------BASE DUH-------------------♥---------->
  693.  
  694. <div id="baseduh">
  695.  
  696. {block:Posts}
  697. <div class="omdg">
  698.  
  699.  
  700.  
  701. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  702.  
  703. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  704.  
  705. {block:Photoset}{Photoset-250}{/block:Photoset}
  706.  
  707. {block:Quote}
  708. <div class="quote">{Quote}</div>
  709. {/block:Source}
  710. {/block:Quote}
  711.  
  712. {block:Link}
  713. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  714. {block:Description}{Description}{/block:Description}
  715. {/block:Link}
  716.  
  717.  
  718. {block:Chat}
  719. <div class="chat">
  720. <div class="chat1">
  721. {block:Lines}
  722. <div class="chat2 {Alt}">
  723. {block:Label}
  724. <span>{Label}</span>
  725. {/block:Label}
  726. {Line}</div>
  727. {/block:Lines}
  728. </div>
  729. </div>
  730. {/block:Chat}
  731.  
  732.  
  733. {block:Audio}
  734. <div class="player">{AudioPlayerBlack}</div>
  735. {block:Caption}{Caption}{/block:Caption}
  736. {/block:Audio}
  737.  
  738. {block:Video}{Video-500}{/block:Video}
  739.  
  740.  
  741. {block:Answer}
  742. <table width="250px" cellspacing="0" cellpadding="0">
  743. <tr>
  744. <td width="355px" class="question">{Question}</td>
  745. <td width="30px"><span class="questionarrow"></span></td>
  746. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  747. </tr>
  748. </table>
  749. <div class="answer">{Answer}</div>
  750. {/block:answer}
  751.  
  752.  
  753.  
  754. <!-----------BASE DUH 2 E 3 ----------♥------------>
  755.  
  756. <div id="cap">
  757. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  758. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  759. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  760.  
  761. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  762. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  763. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  764. {/block:ContentSource}</div></div>
  765. <br>
  766.  
  767. <div class="baseduh3">
  768. {block:Date}<div id="baseduh2">
  769. <center> <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} <font color="{color:tags}">•</font> <a href="{Permalink}" {block:NoteCount}{/block:NoteCount}</a>{NoteCountWithLabel}</a>{block:RebloggedFrom} <a href="{ReblogParentURL}">{/block:RebloggedFrom} {block:ContentSource} {/block:ContentSource} {block:IndexPage} <font color="{color:tags}">•</font> <a href="{ReblogUrl}" target="_blank">reblog<font color="{color:tags}">!</font></a>{/block:IndexPage}</center> </div>{block:IfShowTags}<center><div id="tags">{block:HasTags}{block:Tags} <font color="{color:tags}">#</font><a href="{TagUrl}">{Tag}</a>{/block:Tags}{/block:HasTags}</div></center>{block:RebloggedFrom}<br><font color="{color:tags}">Originally</font> <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{/block:IfShowTags}{/block:Date}</div>
  770. </div>
  771.  
  772.  
  773. {/block:Posts}
  774. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783. </div>
  784. </div>
  785. </div>
  786. </div>
  787. </div>
  788. </div>
  789. </div>
  790. </div>
  791. </div>
  792.  
  793. </div>
  794. </div>
  795. </div>
  796. </div>
  797.  
  798.  
  799.  
  800.  
  801.  
  802. </body>
  803.  
  804. </html>
Advertisement
Add Comment
Please, Sign In to add comment