Eduarda

Theme 90

Dec 12th, 2012
2,969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.64 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 se eu pegar algo tiro da minha página de themes.
  8. AJUDAS NECESSÁRIAS POR HTMLUV , ILOVETHEMES,QUEEN-EXTRAS 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="" />
  168. <meta name="image:fotodr" content="http://static.tumblr.com/2bh9bxo/3L8mey9e4/tumblr_me1yuigfsd1rit10do1_500.jpg" />
  169. <meta name="image:fundo" content="http://static.tumblr.com/2bh9bxo/cwTmexke7/tumblr_m524nz3toe1qkzf0fback.png" />
  170. <meta name="image:bordinha" content="http://static.tumblr.com/2bh9bxo/2Ommemkto/fundinhoduh.png" />
  171.  
  172.  
  173. <meta name="text:frase1" content="Hi Barbie" />
  174. <meta name="text:frase2" content="Menina dos olhos de Deus" />
  175.  
  176. <meta name="color:background" content="#1C1C1C" />
  177. <meta name="color:link" content="#CDC9C9" />
  178. <meta name="color:text" content="#CDC9C9" />
  179. <meta name="color:bghover" content="#FFC0CB" />
  180. <meta name="color:linkshover" content="#000" />
  181. <meta name="color:links" content="#fff" />
  182. <meta name="color:text desc" content="#CDC9C9" />
  183. <meta name="color:borda" content="#000" />
  184. <meta name="color:borda2" content="#FFC0CB" />
  185. <meta name="color:bordaimg" content="#000" />
  186. <meta name="color:abc" content="#FFC0CB" />
  187. <meta name="color:italico" content="#CDC9C9" />
  188. <meta name="color:linhadopost" content="#CDC9C9" />
  189. <meta name="color:post" content="#000" />
  190. <meta name="color:sidebar" content="#000" />
  191. <meta name="color:scrollbar" content="#000" />
  192. <meta name="color:frase" content="#CDC9C9" />
  193. <meta name="color:tags" content="#FFC0CB" />
  194. <meta name="color:sombra" content="#000" />
  195. <meta name="color:coracao1" content="#FFC0CB" />
  196. <meta name="color:coracao2" content="#1c1c1c" />
  197. <meta name="color:bgask" content="#000" />
  198. <meta name="color:pag" content="#CDC9C9" />
  199. <meta name="color:aspa" content="#FFC0CB" />
  200.  
  201. <meta name="if:Show tags" content="1"/>
  202.  
  203. <meta name="text:Link1" content="/" />
  204. <meta name="text:Link1 Title" content="home" />
  205. <meta name="text:Link2" content="/" />
  206. <meta name="text:Link2 Title" content="askbox" />
  207. <meta name="text:Link3" content="/" />
  208. <meta name="text:Link3 Title" content="link" />
  209. <meta name="text:Link4" content="/" />
  210. <meta name="text:Link4 Title" content="link4" />
  211. <meta name="text:Link5" content="/" />
  212. <meta name="text:Link5 Title" content="link5" />
  213. <meta name="text:Link6" content="/" />
  214. <meta name="text:Link6 Title" content="link6" />
  215. <meta name="text:Link7" content="/" />
  216. <meta name="text:Link7 Title" content="link7" />
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224. <title>{Title}</title>
  225. <link rel="shortcut icon" href="{Favicon}">
  226. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  227. {block:Description}
  228. <meta name="description" content="{MetaDescription}" />
  229. {/block:Description}
  230.  
  231.  
  232.  
  233.  
  234. <!----------------FONTES-------?-------->
  235. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  236. <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'>
  237. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  238.  
  239. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  240.  
  241. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  242. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  243. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  244.  
  245. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  246.  
  247.  
  248. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  249.  
  250. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  251.  
  252. <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'>
  253.  
  254. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  255. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  256. <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'>
  257.  
  258. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  259. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  260.  
  261.  
  262.  
  263. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  264. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  265. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  266. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  267.  
  268. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  269. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  270. <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'>
  271. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  272. <!------------------eita duh--------------------->
  273. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  274.  
  275. <script type="text/javascript">
  276. // <![CDATA[
  277. var speed=100; //
  278. var height=3; //
  279. var alink="/"; // page to link text to (set to ="" for no link)
  280.  
  281. /****************************
  282. ****************************/
  283. var wobtxt, wobble, wobcnt=0;
  284. window.onload=function() { if (document.getElementById) {
  285. var i, wobli;
  286. wobble=document.getElementById("wobble");
  287. wobtxt=wobble.firstChild.nodeValue;
  288. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  289. for (i=0; i<wobtxt.length; i++) {
  290. wobli=document.createElement("span");
  291. wobli.setAttribute("id", "wobb"+i);
  292. wobli.style.position="relative";
  293. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  294. if (alink) {
  295. wobli.style.cursor="pointer";
  296. wobli.onclick=function() { top.location.href=alink; }
  297. }
  298. wobble.appendChild(wobli);
  299. }
  300. setInterval("wobbler()", speed);
  301. }}
  302.  
  303. function wobbler() {
  304. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  305. wobcnt++;
  306. }
  307. // ]]>
  308. </script>
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316. <style type="text/css">
  317.  
  318. 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; }
  319.  
  320.  
  321.  
  322. a {color: {color:link}; text-decoration: none; text-transform: none;}
  323. a:hover {color: {color:lhover}; background-color: transparent; text-decoration: none;}
  324.  
  325.  
  326. p {margin: 6px 0 0 0}
  327.  
  328. blockquote {margin: 5px 5px 5px 5px; border-left: 1px solid {color:background}; padding-left: 5px; }
  329. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background};}
  330. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background}; }
  331. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  332.  
  333.  
  334. blockquote img{max-width: 470px!important}
  335. blockquote blockquote img{max-width: 450px!important}
  336. blockquote blockquote blockquote img{max-width: 430px!important}
  337. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  338.  
  339.  
  340. #container {background-color: ; width: 1000px; margin: 0 auto 10px auto; background: {color:background}}
  341.  
  342. /**-------------BASE DUH------------♥---------------**/
  343. #baseduh {margin-left: 412px; width: 700px; margin-top: 20px; }
  344.  
  345. .omdg {{block:IndexPage}width: 280px;
  346. background-color:{color:post} ; text-align: justify;
  347. padding: 9px; float: left;
  348. margin: 4px 0 0 4px;{/block:IndexPage}{block:PermalinkPage}
  349. padding:10px; width:300px; margin-top: 8px; height:auto;
  350. background-color: {color:post};
  351. text-align: left; margin-left:7px;
  352. {/block:PermalinkPage}}
  353.  
  354. #baseduh:hover{-webkit-transition: all .7s ease-out;
  355. -moz-transition: all .7s ease-out;opacity:1}
  356. .omdg img{width: 278px; padding: 3px;
  357. border: 1px solid {Color:background}}
  358.  
  359. .omdg:hover #baseduh2 {opacity: 1;}
  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. .duggs {font-size: 12px; font-family: cambria;
  369. letter-spacing: 0px; line-height: 13px;
  370. text-transform: none;text-align: center;
  371. font-style: none; margin-top:-65px;
  372. margin-bottom: 2px;color:{color:text}}
  373. .queroaspas{ position:relative; top: -20px;
  374. font-size: 60px; opacity:0.2;
  375. filter: alpha(opacity = 10); color: #fff;}
  376.  
  377. .dolls {margin-bottom: 8px; }
  378.  
  379. /* Chat por Anna (livelikeasuicide) *********/
  380. .chat {background:{color:posts}; margin: 0; font-size:
  381.  
  382. 10px; font-family: trebuchet ms;}
  383. .chat .chat1 {margin-left: 0px;font-size:
  384. 8px; }
  385. .chat .chat1 .chat2 {font-weight: bold; background:{color:posts}; color:{color:text};font-size: 10px; border:1px solid {color:background};
  386. margin-bottom: 1px; padding: 4px 5px 4px 5px; font-family: trebuchet ms;} /* Primeira linha */
  387. .chat .chat1 .chat2.even {background:{color:background};
  388. color:{color:text};font-size:
  389. 9px;font-weight: bold; } /* Segunda linha */
  390. .chat .chat1 .chat2 span{font-weight: bold; }
  391.  
  392.  
  393.  
  394. .chat {line-height: 13px; list-style: none }
  395. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  396. .person1 {color: {color:text}; padding: 2px; }
  397. .person1 .label {font-weight: bold; color:{color:text}}
  398. .person2 {color: {color:text}; padding: 2px; }
  399. .person2 .label {font-weight: bold; color:{color:text}}
  400.  
  401. .player {background-color: #000; text-align: left; display:block;}
  402.  
  403.  
  404. .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;}
  405.  
  406. .questionarrow {font-size:30px;color:{color:bgask};vertical-align:middle;margin-left:-5px!important;}
  407.  
  408.  
  409. .asker {width:280px; text-align:right; text-transform:lowercase; color:{color:text};}
  410. .asker a {color:{color:text};}
  411. .asker img {float:left; margin-left:400px; vertical-align:top; margin-right:3px; max-height:15px;}
  412.  
  413. .asking {text-align:center; color:{color:text}; font:9px verdana; text-transform:none;}
  414. .asking a{color:{color:text};}
  415. .asking img {width:58px; vertical-align:middle; background-color:{color:background}; padding:3px;}
  416.  
  417. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  418.  
  419.  
  420. .answer {color:{color:answer};}
  421.  
  422. /**------------------BASE DUH 3 E 2 [NOTES E SOUCE]-------♥---*****/
  423.  
  424. .baseduh3 {opacity:; -webkit-transition: all 0.6s ease-out;
  425. -moz-transition: all 0.6s ease-out;
  426. border-top: solid 1px {color:linhadopost};
  427. border-bottom: solid 0px {color:text};letter-spacing: 1px}
  428. .baseduh3:hover {opacity: 0.9;
  429. -webkit-transition: all 0.9s ease-out;
  430. -moz-transition: all 0.9s ease-out;letter-spacing: 1px}
  431.  
  432. #baseduh2 {text-align: left; margin-top:6px;
  433. font-size: 11px; font-family: Ubuntu Mono;
  434. z-index: 11;}
  435. #baseduh2 a {font-size: 10px; color:{color:link};}
  436.  
  437. #tags {color: {color:text}; font-size: 9px; font-family: calibri; display: inline; list-style: none; text-transform: none; color:{color:text};}
  438. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};}
  439.  
  440. #cap {width: 280px; margin-top: -2px;}
  441. .source {display: none;}
  442.  
  443. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  444. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  445. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  446. .notes img{display: none; border:0px}
  447.  
  448. #duggs2 {position: fixed; margin: 0px 0px 0px -500px;}
  449.  
  450.  
  451.  
  452. /***--- SCROLLBAR---♥----***/
  453.  
  454. ::-webkit-scrollbar-thumb:vertical {background-color:{color:borda2};height:50px; border:5px solid {color:scrollbar};}
  455.  
  456. ::-webkit-scrollbar-button:vertical {height:8px;display: block; background:{color:borda2};}
  457.  
  458.  
  459. ::-webkit-scrollbar {height:0px;width:12px;background-color:{color:scrollbar};}
  460.  
  461. /****----------------EFEITINHO--------------♥------*****/
  462. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  463. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  464. 3
  465.  
  466. /***-----------NEGRITO ITALICO E SUBLINHADO-----♥---***/
  467. b, strong, bold {color:{color:abc};}
  468.  
  469. u,underline {color:{color:text}; border-bottom: 1px dotted {color:italico}; text-decoration:none; }
  470.  
  471. i, em{color:{color:text};}
  472.  
  473. /***------------- DUH IMAGEM-------------♥---------***/
  474.  
  475. #duhimg {margin-left: 111px;
  476. margin-top: 85px;
  477. position:fixed;
  478. overflow:hidden;
  479. opacity: 0.9;}
  480.  
  481. #duhimg img{ border:5px solid {color:bordaimg};
  482. opacity: 1;padding:5px;
  483. width: 263px;
  484. height:255px;-webkit-transition: all 0.4s ease-out;
  485. -moz-transition: all 0.4s ease-out;}
  486. #duhimg img:hover {-webkit-transition: all 0.4s ease-out;
  487. -moz-transition: all 0.4s ease-out;margin-bottom: 2px;-webkit-transition: all 0.9s ease-out;-moz-transition: all 0.9s ease-out; opacity: 10; filter:alpha (opacity=50);-webkit-border-radius: 160px 0px 160px 0px;background:{color:bordaimg};-webkit-transition-duration: 1.9s; -moz-transition-duration:1.9s;text-transform:uppercase; border:2px dotted {color:borda2}; -webkit-transition: all 0.8s ease-out;-webkit-transition-duration: .59s;opacity:0.7; #pattern opacity:0.7;-moz-transition: all 1s ease-in-out;-o-transition: all 1s ease-in-out;-ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out}
  488.  
  489. /***----------- A PARTE DA SID---------♥------***/
  490.  
  491. #estela1 {position: fixed; margin-left: 102px; width:299px; height: 398px; background-color:{color:sidebar}; margin-top: 39px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px; -webkit-transform: rotate(0deg);box-shadow: 3px 3px 9px {color:sombra};background: URL('{image:fundo}');}
  492.  
  493. /***—-Menu por o-mundo-de-uma-garota—-exclusive do revolutionhtml♥—***/
  494.  
  495. #menu { float: left; margin-top: 46px; padding: 3px; text-align: center;margin-left:129px; 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;}
  496.  
  497. #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};}
  498.  
  499. #menu a:hover{width: 40px;height:10px;line-height:7px;-webkit-transition: all 0.10s ease-out; -moz-transition: all 0.10s ease-out;text-align: center;color:{color:bghover}; box-shadow: inset 0px 0px -4px 5px rgba(255,255,255,0.3), 0 0px 0px rgba(0,0,0,0.4);
  500.  
  501. opacity:0.5;
  502.  
  503. border: 8px solid {color:links};border: 2px dotted {color:borda2};
  504.  
  505. transition-duration: 30s; -webkit-transition-duration: .30s;
  506.  
  507. }
  508.  
  509. /***-------------TITULOS---------------♥---------***/
  510. #duka {background-color:#;margin-left:125px;margin-top: 368px; height:24px; line-height:20px;float:left; position:fixed; width:230px; font-family: 'Wire One'; font-size:28px; text-align: left;
  511. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none;text-shadow: 3px 3px 9px {color:sombra};}
  512. .dukah1 {font-family:'Dancing Script'; font-size: 15px; font-style: none;
  513. height: 10px;color: {color:frase}; margin-left:261px;margin-top:385px; text-transform: none; letter-spacing: 0px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:174px;z-index:8000000000000000;line-height:17px;}
  514.  
  515. /***----------CORAÇÃOZINHO OWNT [OMDG]--------♥-----***/
  516. #duca {margin-top:405px;
  517. line-height:2px;
  518. background-color:duggs;
  519. margin-left: 339px;
  520. overflow: hidden;
  521. position: fixed;
  522. color: {color:coracao1};
  523. padding: 10px;
  524. background-attachment: fixed;
  525. width:1px;
  526. height: 0px;
  527. -webkit-transition: all .5s ease-out;
  528. -moz-transition: all .5s ease-out;
  529. text-transform: uppercase;
  530. -webkit-transform: rotate(-16deg); z-index: 8000000;}
  531.  
  532. #duca1 {font-size: 15px;
  533. font-family:sofia ;
  534. letter-spacing: -1px;
  535. text-transform: none;
  536. line-height: 3px;}
  537.  
  538.  
  539. #duca2 { margin-top:400px;
  540. line-height:2px;
  541. background-color:duggs;
  542. margin-left: 345px;
  543. overflow: hidden;
  544. position: fixed;
  545. color:{color:coracao2};
  546. padding: 10px;
  547. background-attachment: fixed;
  548. width:12px; height: 0px;
  549. -webkit-transition: all .5s ease-out;
  550. -moz-transition: all .5s ease-out;
  551. text-transform: uppercase;
  552. -webkit-transform: rotate(24deg); z-index: 8000000;
  553. }
  554.  
  555. #duca3 {font-size: 17px;
  556. font-family:sofia ;
  557. letter-spacing: -1px;
  558. text-transform: none;
  559. line-height: 3px;}
  560.  
  561.  
  562. /******----------------DESCRIÇÃO--------♥--------******/
  563. #notinholaduda {margin-left: 105px; margin-top: 384px; width:198px; font-size: 12px; height: 38px; text-align: center; transparent; font-family:Ubuntu Mono; color: {color:text desc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  564. -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};}
  565.  
  566. /*** ASPINHA***/
  567. #aspa {font-size:59px;
  568. font-style: normal;
  569. text-transform:none;
  570. text-align:center;
  571. font-family:Ruge Boogie;
  572. background-color: #omdg;
  573. color: {color:aspa};
  574. font-style:none;
  575. line-height:8px;
  576. text-transform:none;
  577. padding: 5px;
  578. width:217px;
  579. height: 5px;
  580. line-height: 3px;
  581. padding-top: 7px;
  582. letter-spacing:0px;
  583. margin-top:434px;
  584. text-transform:none;
  585. position:fixed;
  586. margin-left:130px;
  587. background-color: omdg;
  588. border-bottom: 0px dotted {color:text};
  589. -webkit-transform: rotate(0deg);}
  590.  
  591. #aspa1 {font-size:62px;
  592. font-style: normal;
  593. text-transform:none;
  594. text-align:center;
  595. font-family:Ruge Boogie;
  596. background-color: #omdg;
  597. color: {color:aspa};
  598. font-style:none;
  599. line-height:8px;
  600. text-transform:none;
  601. padding: 5px;
  602. width:217px;
  603. height: 5px;
  604. line-height: 3px;
  605. padding-top: 7px;
  606. letter-spacing:0px;
  607. margin-top:365px;
  608. text-transform:none;
  609. position:fixed;
  610. margin-left:4px;
  611. background-color: omdg;
  612. border-bottom: 0px dotted {color:text};
  613. -webkit-transform: rotate(190deg);}
  614.  
  615. /***-------------LINKS BY DUDA.R-----------♥--------***/
  616.  
  617. #nossadudex {font-family: tinytots; background-color:{color:linkshover}; color: ; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px ;-webkit-border-radius: 0px 0px 0px 0px; margin-top: 172px; margin-left: 65px; z-index: 1; position: fixed; text-align: center; height: 20px; border:0px solid ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  618. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: ; }/*links o-mundo-de-uma-garota*/
  619. #nossadudex1 {font-family: tinytots; background-color:{color:linkshover} ; color: ; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px ;-webkit-border-radius: 0px 0px 0px 0px; margin-top: 199px; margin-left: 64px; z-index: 1; position: fixed; text-align: center; height: 20px; border:0px solid ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  620. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: ; }/*links o-mundo-de-uma-garota*/
  621. #nossadudex2 {font-family: tinytots; background-color:{color:linkshover}; color: ; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px ;-webkit-border-radius: 0px 0px 0px 0px; margin-top: 226px; margin-left: 64px; z-index: 1; position: fixed; text-align: center; height: 23px; border:0px solid ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  622. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: ; }/*links o-mundo-de-uma-garota*/
  623.  
  624. /***-------------BORDAS -------------♥-----***/
  625.  
  626. #barra {position: fixed; margin-left: 100px; width:7px; height: 396px; background-color:{color:borda};margin-top: 40px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background: URL('{image:bordinha}');}
  627.  
  628. #barra1 {position: fixed; margin-left: 397px; width:7px; height: 396px; background-color:{color:borda};margin-top: 40px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background: URL('{image:bordinha}');}
  629.  
  630. #barra2 {position: fixed; margin-left: 100px; width:305px; height: 7px; background-color:{color:borda};margin-top: 39px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background: URL('{image:bordinha}');}
  631.  
  632. #barra3 {position: fixed; margin-left: 100px; width:305px; height: 7px; background-color:{color:borda};margin-top: 430px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background: URL('{image:bordinha}');}
  633.  
  634. #barra4 {position: fixed; margin-left: 55px; width:47px; height: 99px; background-color:{color:borda};margin-top: 165px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background: URL('{image:bordinha}');-webkit-border-radius: 0px 20px 20px 0px;}
  635.  
  636. #faixa2 {margin-top: 75px; margin-left: 105px; position: fixed; background-color: {color:borda}; height: 4px; width:295px;}/***detalhes by o-mundo-de-uma-garota***/
  637. #faixa3 {margin-top: 74px; margin-left: 105px; position: fixed; background-color:{color:borda2}; height: 2px; width:295px;}/***detalhes by o-mundo-de-uma-garota***/
  638.  
  639. #faixa4 {margin-top: 374px; margin-left: 315px; position: fixed; background-color:{color:borda}; height: 49px; width:75px;-webkit-border-radius: 150px 150px 150px 150px; -webkit-transform: rotate(190deg);}/***detalhes by o-mundo-de-uma-garota***/
  640.  
  641.  
  642.  
  643. /**** SELECAO COLORIDA - MADLYLUV.com ****/
  644. ::-moz-selection{background:{color:borda2};text-shadow:0px 1px 1px #1c1c1c; }
  645. ::selection{background: {color:borda2}; color: {color:text};text-shadow:0px 1px 1px {color:sombra}; }
  646.  
  647.  
  648.  
  649.  
  650. /***--------TUMBLR CONTROLS---------♥------***/
  651.  
  652. #tumblr_controls{position: fixed!important}
  653.  
  654. #tumblr_controls{position: fixed!important}
  655.  
  656. #tumblr_controls{position: fixed!important}
  657.  
  658. #tumblr_controls{position: fixed!important}
  659.  
  660.  
  661.  
  662.  
  663. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  664. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:{color:sidebar};color: {color:pag};opacity:1; -webkit-border-radius: 0px 0px 20px 20px;}
  665. #paginal a:hover {background: {color:sidebar}; color: {color:text};}
  666. #paginal span.pagina_atual {background: {color:sidebar}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 0px 0px 20px 20px;}
  667. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 282px; margin-top: 430px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 0px 0px 20px 20px; }
  668.  
  669.  
  670. #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;
  671. color:#000;#b4b2b2 ; letter-spacing:-1px; z-index:11; text-transform: none; }
  672. #duka:hover{-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  673.  
  674.  
  675.  
  676. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 319px; margin-top: 348px; color:{color:borda}; font-size: 25px; -webkit-transform: rotate(50deg); z-index: 1000;}
  677.  
  678.  
  679.  
  680.  
  681. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  682.  
  683.  
  684.  
  685. </style>
  686. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  687.  
  688. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  689. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  690. <script type="text/javascript">
  691. $(window).load(function () {
  692. $('#baseduh').masonry(),
  693. $('.masonryWrap').infinitescroll({
  694. navSelector : ".omdg",
  695. nextSelector : "#page a#p",
  696. itemSelector : ".omdg",
  697. bufferPx : 10000,
  698. extraScrollPx: 10000,
  699. loadingImg : "",
  700. loadingText : "",
  701. },
  702. function() { $('#baseduh').masonry({ appendedContent: $(this) }); }
  703. );
  704. });
  705. </script>
  706.  
  707.  
  708.  
  709. <body>
  710.  
  711.  
  712. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  713. <!--------------------play aqui embaixo---♥------------>
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722. <div id="estela1"></div>
  723. <div id="duca"><div id="duca1">♥</div></div></div></div></div>
  724. <div id="duca2"><div id="duca3">♥</div></div></div></div></div>
  725. <div id="barra"></div>
  726. <div id="barra1"></div>
  727. <div id="barra2"></div>
  728. <div id="barra3"></div>
  729. <div id="barra4"></div>
  730.  
  731. <div id="faixa2"></div>
  732. <div id="faixa3"></div>
  733. <div id="faixa4"></div>
  734. <div id="duhimg" ><img src="{image:fotodr}"></div>
  735.  
  736. </div></div>
  737.  
  738.  
  739. </div></div>
  740. </div></div></div></div>
  741.  
  742. </div></div>
  743. <div id="dj3">◤</div>
  744.  
  745. <div id="duka">{text:frase2}</font></div>
  746. <center><div class="dukah1">{text:frase1}</center></div></center>
  747.  
  748.  
  749. <div id="notinholaduda">{Description}</div>
  750.  
  751. <div id="aspa">"</a></div>
  752. <div id="aspa1">"</a></div>
  753.  
  754. <div id="menu">
  755.  
  756.  
  757. <a href="{text:Link4}">{text:Link4 Title}</a>
  758. <a href="{text:Link5}">{text:Link5 Title}</a>
  759. <a href="{text:Link6}">{text:Link6 Title}</a>
  760. <a href="{text:Link7}">{text:Link7 Title}</a>
  761. </div class>
  762.  
  763. </div></div>
  764.  
  765. </div>
  766.  
  767. </div>
  768.  
  769. </div>
  770.  
  771. <div id="nossadudex" title="{text:Link1 Title}"><a href="{text:Link1}"><img height="25"src="http://static.tumblr.com/tx5g7yp/k3Smbfvn0/home.png" width="29"class="home"title="{text:Link1 Title} "></div>
  772.  
  773.  
  774. <div id="nossadudex1" title="{text:Link2 Title} "><a href="{text:Link2}"><img height="25"src="http://static.tumblr.com/tx5g7yp/onYmbfvny/askme.png" width="29"class="ask"title="{text:Link2 Title}"></div>
  775.  
  776.  
  777. <div id="nossadudex2" title="{text:Link3 Title}"><a href="{text:Link3}"><img height="25"src="http://static.tumblr.com/tx5g7yp/h0ymbfvq0/love.png" width="29"class="amor"title="{text:Link3 Title}"></div>
  778.  
  779.  
  780. <!-------------PAGINATION-----------♥---------->
  781.  
  782. <div class="ps"><div id="paginal">
  783. {block:JumpPagination length="3"}
  784. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  785. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  786. {/block:JumpPagination}
  787. </div></div>
  788.  
  789.  
  790. <!-------------CRÉDITOS-----------------♥------------->
  791. <div style="margin-left:42px;-webkit-border-radius: 20px 0px 20px 0px;-webkit-transform: rotate(0deg); width:80px;background:{color:sidebar};font-family:tahoma;font-size:11px; margin-top: 5px; height:18px;position:fixed; "><a href="http://o-mundo-de-uma-garota.tumblr.com/"title="Theme by: o-mundo-de-uma-garota not copie"><small>THEME </small></a>
  792. <font color="{color:tags}">©</font> </a></div>
  793.  
  794.  
  795. <!--------------BASE DUH-------------------♥---------->
  796.  
  797. <div id="baseduh">
  798.  
  799. {block:Posts}
  800. <div class="omdg">
  801.  
  802. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  803.  
  804. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  805.  
  806. {block:Photoset}{Photoset-250}{/block:Photoset}
  807.  
  808. {block:Quote}<span class="queroaspas">&#10077;</span><div class="duggs">{Quote}</div> <center><font color="{color:tags}"><div class="dolls">~ {Source}</div></center></font>{/block:Quote}
  809. {/block:Quote}
  810.  
  811. {block:Link}
  812. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  813. {block:Description}{Description}{/block:Description}
  814. {/block:Link}
  815.  
  816.  
  817. {block:Chat}
  818. <div class="chat">
  819. <div class="chat1">
  820. {block:Lines}
  821. <div class="chat2 {Alt}">
  822. {block:Label}
  823. <span>{Label}</span>
  824. {/block:Label}
  825. {Line}</div>
  826. {/block:Lines}
  827. </div>
  828. </div>
  829. {/block:Chat}
  830.  
  831.  
  832. {block:Audio}
  833. <div class="player">{AudioPlayerBlack}</div>
  834. {block:Caption}{Caption}{/block:Caption}
  835. {/block:Audio}
  836.  
  837. {block:Video}{Video-500}{/block:Video}
  838.  
  839.  
  840. {block:Answer}
  841. <table width="250px" cellspacing="0" cellpadding="0">
  842. <tr>
  843. <td width="355px" class="question">{Question}</td>
  844. <td width="30px"><span class="questionarrow"></span></td>
  845. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  846. </tr>
  847. </table>
  848. <div class="answer">{Answer}</div>
  849. {/block:answer}
  850.  
  851.  
  852.  
  853. <!-----------BASE DUH 2 E 3 ----------♥------------>
  854.  
  855. <div id="cap">
  856. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  857. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  858. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  859.  
  860. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  861. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  862. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  863. {/block:ContentSource}</div></div>
  864. <br>
  865.  
  866. <div class="baseduh3">
  867. {block:Date}<div id="baseduh2">
  868. <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>
  869. </div>
  870.  
  871.  
  872. {/block:Posts}
  873. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880.  
  881.  
  882. </div>
  883. </div>
  884. </div>
  885. </div>
  886. </div>
  887. </div>
  888. </div>
  889. </div>
  890. </div>
  891.  
  892. </div>
  893. </div>
  894. </div>
  895. </div>
  896.  
  897.  
  898.  
  899.  
  900.  
  901. </body>
  902.  
  903. </html>
Advertisement
Add Comment
Please, Sign In to add comment