Eduarda

Theme 97

Dec 28th, 2012
1,947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.26 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. TUTOS: REVOLUTIONHTML and HTMLUV;
  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/655c4b3c9c7172e20b00e23c220efff9/2bh9bxo/rNLmfpr2u/tumblr_static_bgdenuvens.png" />
  168. <meta name="image:fotodr" content="http://static.tumblr.com/d57ff9aab391d683b2f237aaf3bfda60/2bh9bxo/jPRmfrp77/tumblr_static_tumblr_mezn1joudp1rnj43qo1_500.png" />
  169.  
  170.  
  171.  
  172. <meta name="text:frase2" content="Mô hoje te quero muuitão" />
  173.  
  174. <meta name="color:background" content="#F5F5F5" />
  175. <meta name="color:link" content="#8B8989" />
  176. <meta name="color:text" content="#8B8989" />
  177. <meta name="color:bghover" content="#EE799F" />
  178. <meta name="color:linkshover" content="#FFFFFF" />
  179. <meta name="color:links" content="#8B898989" />
  180. <meta name="color:text desc" content="#8B8989" />
  181. <meta name="color:borda" content="#fff" />
  182. <meta name="color:borda2" content="#EE799F" />
  183. <meta name="color:bordaimg" content="#fff" />
  184. <meta name="color:abc" content="#EE799F" />
  185. <meta name="color:italico" content="#8B8989" />
  186. <meta name="color:linhadopost" content="#fff" />
  187. <meta name="color:sidebar" content="#FFFFFF" />
  188. <meta name="color:scrollbar" content="#FFFFFF" />
  189. <meta name="color:frase" content="#8B8989" />
  190. <meta name="color:tags" content="#EE799F" />
  191. <meta name="color:sombra" content="#8B8989" />
  192. <meta name="color:bgask" content="#fff" />
  193. <meta name="color:pag" content="#8B8989" />
  194.  
  195.  
  196. <meta name="if:Show tags" content="1"/>
  197.  
  198. <meta name="text:Link1" content="/" />
  199. <meta name="text:Link1 Title" content="home" />
  200. <meta name="text:Link2" content="/" />
  201. <meta name="text:Link2 Title" content="askbox" />
  202. <meta name="text:Link3" content="/" />
  203. <meta name="text:Link3 Title" content="link" />
  204. <meta name="text:Link4" content="/" />
  205. <meta name="text:Link4 Title" content="link4" />
  206. <meta name="text:Link5" content="/" />
  207. <meta name="text:Link5 Title" content="link5" />
  208. <meta name="text:Link6" content="/" />
  209. <meta name="text:Link6 Title" content="link6" />
  210. <meta name="text:Link7" content="/" />
  211. <meta name="text:Link7 Title" content="link7" />
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219. <title>{Title}</title>
  220. <link rel="shortcut icon" href="{Favicon}">
  221. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  222. {block:Description}
  223. <meta name="description" content="{MetaDescription}" />
  224. {/block:Description}
  225.  
  226.  
  227.  
  228.  
  229. <!----------------FONTES-------?-------->
  230. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  231. <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'>
  232. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  233.  
  234. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  235.  
  236. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  237. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  238. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  239.  
  240. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  241.  
  242.  
  243. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  244.  
  245. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  246.  
  247. <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'>
  248.  
  249. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  250. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  251. <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'>
  252.  
  253. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  254. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  255.  
  256.  
  257.  
  258. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  259. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  260. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  261. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  262.  
  263. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  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'><link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
  266. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  267. <!------------------eita duh--------------------->
  268. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  269.  
  270. <script type="text/javascript">
  271. // <![CDATA[
  272. var speed=100; //
  273. var height=3; //
  274. var alink="/"; // page to link text to (set to ="" for no link)
  275.  
  276. /****************************
  277. ****************************/
  278. var wobtxt, wobble, wobcnt=0;
  279. window.onload=function() { if (document.getElementById) {
  280. var i, wobli;
  281. wobble=document.getElementById("wobble");
  282. wobtxt=wobble.firstChild.nodeValue;
  283. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  284. for (i=0; i<wobtxt.length; i++) {
  285. wobli=document.createElement("span");
  286. wobli.setAttribute("id", "wobb"+i);
  287. wobli.style.position="relative";
  288. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  289. if (alink) {
  290. wobli.style.cursor="pointer";
  291. wobli.onclick=function() { top.location.href=alink; }
  292. }
  293. wobble.appendChild(wobli);
  294. }
  295. setInterval("wobbler()", speed);
  296. }}
  297.  
  298. function wobbler() {
  299. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  300. wobcnt++;
  301. }
  302. // ]]>
  303. </script>
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311. <style type="text/css">
  312.  
  313. 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; }
  314.  
  315.  
  316.  
  317. a {color: {color:link}; text-decoration: none; text-transform: none;}
  318. a:hover {color: {color:lhover}; background-color: transparent; text-decoration: none;}
  319.  
  320.  
  321. p {margin: 6px 0 0 0}
  322.  
  323. blockquote {margin: 5px 5px 5px 5px; border-left: 1px solid {color:background}; padding-left: 5px; }
  324. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background};}
  325. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background}; }
  326. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  327.  
  328.  
  329. blockquote img{max-width: 470px!important}
  330. blockquote blockquote img{max-width: 450px!important}
  331. blockquote blockquote blockquote img{max-width: 430px!important}
  332. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  333.  
  334.  
  335. #container {background-color: ; width: 1000px; margin: 0 auto 10px auto; background: {color:background}}
  336.  
  337. /**-------------BASE DUH------------♥---------------**/
  338. #baseduh {margin-left: 495px; width: 700px; margin-top: 20px; }
  339.  
  340. .omdg {{block:IndexPage}width: 280px;
  341. background-color:transparent ; border: dashed 1px {color:linhadopost};text-align: justify;
  342. padding: 9px; float: left;
  343. margin: 4px 0 0 4px;{/block:IndexPage}{block:PermalinkPage}
  344. padding:10px; width:300px; margin-top: 8px; height:auto;
  345. background-color: {color:post};
  346. text-align: left; margin-left:7px;
  347. {/block:PermalinkPage}}
  348.  
  349. #baseduh:hover{-webkit-transition: all .7s ease-out;
  350. -moz-transition: all .7s ease-out;opacity:1}
  351. .omdg img{width: 278px; padding: 3px;
  352. border: 1px solid {Color:background}}
  353.  
  354. .omdg:hover #baseduh2 {opacity: 1;}
  355.  
  356.  
  357. h1 {font-family:Yanone Kaffeesatz ; text-align: center; font-size: 14px; color: {color:text}; font-weight: normal; line-height: 14px;}
  358. h1 a {text-align: center; font-size: 13px;color: {color:text}; font-weight: normal; line-height: 14px;}
  359. h1 a:hover {text-align: center; font-size: 13px; color: {color:text}; font-weight: normal; line-height: 14px;}
  360. .image {text-align: center; width: 272px; border: 0px}
  361. .image img {max-width: 272px; margin-bottom: 2px }
  362.  
  363. .duggs {font-size: 12px; font-family: cambria;
  364. letter-spacing: 0px; line-height: 13px;
  365. text-transform: none;text-align: center;
  366. font-style: none; margin-top:-65px;
  367. margin-bottom: 2px;color:{color:text}}
  368. .queroaspas{ position:relative; top: -20px;
  369. font-size: 60px; opacity:0.2;
  370. filter: alpha(opacity = 10); color: #fff;}
  371.  
  372. .dolls {margin-bottom: 8px; }
  373.  
  374. /*—-Chat por Duda.R [OMDG] exclusive por revolutionhtml—*/
  375.  
  376. .chat {font-family: calibri;background:{color:sidebar};
  377.  
  378. font-size:12px; }
  379.  
  380. .chat .RH { border: 1px solid {color:borda}; margin-bottom: 1px; background-color: {color:background};padding: 4px 5px 4px 5px;color:{color:text};}
  381.  
  382. .chat .RH span{margin-left:-4px;font-size:13px;border-right: 3px solid {color:borda2};background-color: {color:sidebar};padding: 4px 4px 4px 4px;-webkit-border-radius: 20px 0px 0px 20px;font-family:Courgette;}
  383.  
  384. .player {background-color: #000; text-align: left; display:block;}
  385.  
  386.  
  387. .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;}
  388.  
  389. .questionarrow {font-size:30px;color:{color:bgask};vertical-align:middle;margin-left:-5px!important;}
  390.  
  391.  
  392. .asker {width:280px; text-align:right; text-transform:lowercase; color:{color:text};}
  393. .asker a {color:{color:text};}
  394. .asker img {float:left; margin-left:400px; vertical-align:top; margin-right:3px; max-height:15px;}
  395.  
  396. .asking {text-align:center; color:{color:text}; font:9px verdana; text-transform:none;}
  397. .asking a{color:{color:text};}
  398. .asking img {width:58px; vertical-align:middle; background-color:{color:background}; padding:3px;}
  399.  
  400. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  401.  
  402.  
  403. .answer {color:{color:answer};}
  404.  
  405. /**------------------BASE DUH 3 E 2 [NOTES E SOUCE]-------♥---*****/
  406.  
  407. .baseduh3 {opacity:; -webkit-transition: all 0.6s ease-out;
  408. -moz-transition: all 0.6s ease-out;
  409. border-top: solid 1px {color:linhadopost};
  410. border-bottom: solid 0px {color:text};letter-spacing: 1px}
  411. .baseduh3:hover {opacity: 0.9;
  412. -webkit-transition: all 0.9s ease-out;
  413. -moz-transition: all 0.9s ease-out;letter-spacing: 1px}
  414.  
  415. #baseduh2 {text-align: left; margin-top:6px;
  416. font-size: 11px; font-family: Ubuntu Mono;
  417. z-index: 11;background:{color:background};}
  418. #baseduh2 a {font-size: 10px; color:{color:link};}
  419.  
  420. #tags {color: {color:text}; font-size: 9px; font-family: calibri; display: inline; list-style: none; text-transform: none; color:{color:text};background:{color:background};-webkit-border-radius: 0px 0px 20px 20px;}
  421. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};}
  422.  
  423. #cap {width: 280px; margin-top: -2px;}
  424. .source {display: none;}
  425.  
  426. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  427. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  428. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  429. .notes img{display: none; border:0px}
  430.  
  431. #duggs2 {position: fixed; margin: 0px 0px 0px -500px;}
  432.  
  433.  
  434.  
  435. /***--- SCROLLBAR---♥----***/
  436.  
  437. ::-webkit-scrollbar-thumb:vertical {background-color:{color:borda2};height:50px; border:5px solid {color:scrollbar};}
  438.  
  439. ::-webkit-scrollbar-button:vertical {height:8px;display: block; background:{color:borda2};}
  440.  
  441.  
  442. ::-webkit-scrollbar {height:0px;width:12px;background-color:{color:scrollbar};}
  443.  
  444. /****----------------EFEITINHO--------------♥------*****/
  445. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  446. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  447. 3
  448.  
  449. /***-----------NEGRITO ITALICO E SUBLINHADO-----♥---***/
  450. b, strong, bold {color:{color:abc};}
  451.  
  452. u,underline {color:{color:text}; border-bottom: 1px dotted {color:italico}; text-decoration:none; }
  453.  
  454. i, em{color:{color:text};}
  455.  
  456.  
  457.  
  458.  
  459.  
  460. /*----Efeito imagem por Duda.R exclusive por revolutionhtml--♥--*/
  461.  
  462. .duhimag3 {position: absolute;width:200px;height:200px;margin-left:70px;
  463. margin-top: 90px;position:fixed;border:5px solid {color:bordaimg}; }
  464. .duhimag3 img {position:fixed; -webkit-transition: all 1s ease-in-out;
  465. -moz-transition: all 1s ease-in-out;-o-transition: all 1s ease-in-out;
  466. -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out;
  467. display: block;height:200px;width: 200px;padding:0px;margin-left:0px;
  468. margin-top:0px;opacity:0.8;-webkit-transition-duration: 0.8s;opacity: 9.0}
  469. .duhimag3 img:hover {border:2px dashed {color:borda2}; margin-left:10px;width: 200px;height: -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;text-align: center; color:; background-color:transparent; opacity:1;-webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;color:transparent; position: fixed;-webkit-border-top-left-radius: 5px;
  470. -webkit-border-top-right-radius: 5px;
  471. -moz-border-radius-topleft: 5px;
  472. -moz-border-radius-topright: 5px;
  473. border-top-left-radius: 5px;
  474. border-top-right-radius: 5px;-webkit-animation: duds 4s alternate infinite linear;}
  475.  
  476. @-webkit-keyframes duds {
  477. 10% { -webkit-transform: rotate(5deg); }
  478. 50% {margin-left:19px;width:200px; margin-top:10px;height:200px; -webkit-transform: rotate(-5deg); }
  479. 100% { border-top-right-radius: 5px; width:200px;height:200px;margin-left:-10px; }
  480. }
  481.  
  482.  
  483.  
  484.  
  485. /***----------- A PARTE DA SID---------♥------***/
  486.  
  487. #estela1 {position: fixed; margin-left: 92px; width:314px; height: 398px; background-color:{color:sidebar}; margin-top: 29px; -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}');border: 1px dashed {color:borda};}
  488.  
  489.  
  490. /***-------------TITULOS---------------♥---------***/
  491. #duka {background-color:#;margin-left:255px;margin-top: 145px; height:24px; line-height:20px;float:left; position:fixed; width:230px; font-family: 'Rochester'; font-size:22px; text-align: center;
  492. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none;-webkit-border-radius: 0px 20px 20px 0px;}
  493.  
  494.  
  495.  
  496.  
  497. /******----------------DESCRIÇÃO--------♥--------******/
  498. #notinholaduda {margin-left: 274px; margin-top: 177px; width:200px; font-size: 11px; height:auto; text-align: center; transparent; font-family:Muli; color: {color:text desc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  499. -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};}
  500.  
  501.  
  502.  
  503.  
  504. /***-------------BORDAS -------------♥-----***/
  505.  
  506. #barra {position: fixed; margin-left: 69px; width:207px; height: 30px; background-color:{color:borda};margin-top: 305px; -webkit-transform: rotate(3deg);background: {color:sidebar};border: 1px dashed {color:borda2};}
  507.  
  508. #barra1 {position: fixed; margin-left: 1092px; width:19px; height: 24px; background-color:{color:borda};margin-top: 545px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background:{color:sidebar};-webkit-border-radius: 0px 20px 20px 0px;}
  509.  
  510. #barra2 {position: fixed; margin-left: 490px; width:19px; height: 24px; background-color:{color:borda};margin-top: 45px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);background:{color:sidebar};-webkit-border-radius: 20px 0px 0px 20px;}
  511.  
  512.  
  513. /***LINKS BY DUDA.R***/
  514.  
  515. #nossadudex {font-family: tinytots; background-color: {color:linkshover}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 20px 20px 0px 0px; margin-top: 68px; margin-left: 125px; z-index: 1; position: fixed; text-align: center; height: 18px; border-top:1px dashed {color:borda2} ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  516. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: {color:omdg}; }/*links o-mundo-de-uma-garota*/
  517. #nossadudex1 {font-family: tinytots; background-color: {color:linkshover}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 20px 20px 0px 0px; margin-top: 68px; margin-left: 163px; z-index: 1; position: fixed; text-align: center; height: 18px; border-top:1px dashed {color:borda2} ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  518. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: {color:omdg}; }/*links o-mundo-de-uma-garota*/
  519. #nossadudex2 {font-family: tinytots; background-color: {color:linkshover}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 20px 20px 0px 0px; margin-top: 68px; margin-left: 201px; z-index: 1; position: fixed; text-align: center; height: 18px; border-top:1px dashed {color:borda2}; text-transform: none; }/*links o-mundo-de-uma-garota*/
  520. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: {color:omdg}; }/*links o-mundo-de-uma-garota*/
  521.  
  522.  
  523.  
  524. #menu { float: left; margin-top: 308px; padding: 3px; text-align: center;margin-left:72px; 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; -webkit-transform: rotate(3deg); }
  525.  
  526. #menu a {float: left; margin-right: 0px; display: block; width: 39px; letter-spacing: 0px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; background-color: ; color: {color:links}; text-decoration: none; height:20px;line-height:20px; 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}; }
  527. #menu a:hover{-webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;text-align: center; background:{color:bghover}; color:{color:links}; box-shadow: inset 0 0 0 15px rgba(255,255,255,0.3), 0 0px 0px rgba(0,0,0,0.4);
  528. }
  529.  
  530.  
  531. #faixa2 {margin-top: 175px; margin-left: 187px; position: fixed; background-color: {color:sidebar}; height: 4px; width:292px;}/***detalhes by o-mundo-de-uma-garota***/
  532. #faixa3 {margin-top: 174px; margin-left: 185px; position: fixed; background-color:{color:borda2};border-top: 1px dashed {color:sidebar}; height: 2px; width:292px;}/***detalhes by o-mundo-de-uma-garota***/
  533.  
  534. #faixa4 {margin-top: 474px; margin-left: 315px; position: fixed; background-color:{color:sidebar}; height: 49px; width:75px;-webkit-border-radius: 150px 150px 150px 150px; -webkit-transform: rotate(190deg);}/***detalhes by o-mundo-de-uma-garota***/
  535.  
  536.  
  537.  
  538. /**** SELECAO COLORIDA - MADLYLUV.com ****/
  539. ::-moz-selection{background:{color:borda2};text-shadow:0px 1px 1px #1c1c1c; }
  540. ::selection{background: {color:borda2}; color: {color:text};text-shadow:0px 1px 1px {color:sombra}; }
  541.  
  542.  
  543.  
  544.  
  545. /***--------TUMBLR CONTROLS---------♥------***/
  546.  
  547. #tumblr_controls{position: fixed!important}
  548.  
  549. #tumblr_controls{position: fixed!important}
  550.  
  551. #tumblr_controls{position: fixed!important}
  552.  
  553. #tumblr_controls{position: fixed!important}
  554.  
  555.  
  556.  
  557.  
  558. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  559. #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;}
  560. #paginal a:hover {background: {color:sidebar}; color: {color:text};}
  561. #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;}
  562. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 302px; margin-top: 278px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 0px 0px 20px 20px; }
  563.  
  564.  
  565. #duka3 {background-color:#;margin-left:155px;margin-top: 627px; height:44px; line-height:25px;float:left; position:fixed; width:280px; font-family: 'Rochester'; font-size:43px; text-align: left;
  566. color:#000;#b4b2b2 ; letter-spacing:-1px; z-index:11; text-transform: none; }
  567. #duka:hover{-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  568.  
  569.  
  570.  
  571. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 355px; margin-top: 231px; color:{color:sidebar}; font-size: 25px; -webkit-transform: rotate(225deg); z-index: 1000;}
  572.  
  573.  
  574.  
  575.  
  576. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  577.  
  578.  
  579.  
  580. </style>
  581. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  582.  
  583. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  584. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  585. <script type="text/javascript">
  586. $(window).load(function () {
  587. $('#baseduh').masonry(),
  588. $('.masonryWrap').infinitescroll({
  589. navSelector : ".omdg",
  590. nextSelector : "#page a#p",
  591. itemSelector : ".omdg",
  592. bufferPx : 10000,
  593. extraScrollPx: 10000,
  594. loadingImg : "",
  595. loadingText : "",
  596. },
  597. function() { $('#baseduh').masonry({ appendedContent: $(this) }); }
  598. );
  599. });
  600. </script>
  601.  
  602.  
  603.  
  604. <body>
  605.  
  606.  
  607. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  608. <!--------------------play aqui embaixo---♥------------>
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619. <div id="barra"></div>
  620. <div id="barra1"></div>
  621. <div id="barra2"></div>
  622.  
  623. <div id="faixa2"></div>
  624. <div id="faixa3"></div>
  625.  
  626.  
  627. <div class="duhimag3" class="hover">
  628.  
  629. <img class="duh" src="{image:fotodr}" title="baby im sure duh"></div></div>
  630. </div></div>
  631. <div id="dj3">◤</div>
  632.  
  633.  
  634. <div id="duka">{text:frase2}</div>
  635.  
  636.  
  637. <div id="notinholaduda">{Description}</div>
  638.  
  639. <div id="menu">
  640. <a href="{text:Link4}">{text:Link4 Title}</a>
  641. <a href="{text:Link5}">{text:Link5 Title}</a>
  642. <a href="{text:Link6}">{text:Link6 Title}</a>
  643. <a href="{text:Link7}">{text:Link7 Title}</a>
  644. </a></div>
  645.  
  646. </div>
  647. </div>
  648.  
  649. <div id="nossadudex" title="{text:Link1 Title} "><a href="{text:Link1}"><img height="15"src="http://static.tumblr.com/bpaio6t/YwMm1exvz/msoi1.png" width="25"class="home"title="{text:Link1 Title} "></div>
  650.  
  651.  
  652. <div id="nossadudex1" title="{text:Link2 Title} "><a href="{text:Link2}"><img height="15"src="http://static.tumblr.com/bpaio6t/9jLm1ez5e/msoi4.png" width="20"class="ask"title="{text:Link2 Title}"></div>
  653.  
  654.  
  655. <div id="nossadudex2" title="{text:Link3 Title} "><a href="{text:Link3}"><img height="15"src="http://static.tumblr.com/bpaio6t/2q4m1ezcq/msoi3.png" width="20"class="amor"title="{text:Link3 Title}"></div>
  656.  
  657.  
  658.  
  659. <!-------------PAGINATION-----------♥---------->
  660.  
  661. <div class="ps"><div id="paginal">
  662. {block:JumpPagination length="3"}
  663. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  664. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  665. {/block:JumpPagination}
  666. </div></div>
  667.  
  668.  
  669. <!-------------CRÉDITOS-----------------♥------------->
  670. <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>
  671. <font color="{color:tags}">©</font> </a></div>
  672.  
  673.  
  674. <!--------------BASE DUH-------------------♥---------->
  675.  
  676. <div id="baseduh">
  677.  
  678. {block:Posts}
  679. <div class="omdg">
  680.  
  681.  
  682.  
  683.  
  684. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  685.  
  686. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  687.  
  688. {block:Photoset}{Photoset-250}{/block:Photoset}
  689.  
  690. {block:Quote}<span class="queroaspas"><font color="{color:tags}">&#10077</font></span><div class="duggs">{Quote}</div> <center><font color="{color:tags}"><div class="dolls">~ {Source}</div></center></font>{/block:Quote}
  691. {/block:Quote}
  692.  
  693. {block:Link}
  694. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  695. {block:Description}{Description}{/block:Description}
  696. {/block:Link}
  697.  
  698.  
  699. <!———————-CHAT—♥————————>
  700.  
  701. {block:Chat}<div class="caixa">
  702.  
  703. {block:Lines}
  704.  
  705. <div class="chat">
  706.  
  707. <div class="RH">{block:Label}
  708.  
  709. <span>{Label}</span>
  710.  
  711. {/block:Label}
  712.  
  713. {Line}</div></div>
  714.  
  715. {/block:Lines}
  716.  
  717. {block:IndexPage}
  718.  
  719. <center><div class="OMDG">
  720.  
  721. </div></center>
  722.  
  723. {/block:IndexPage}
  724.  
  725. </div>{block:Chat}
  726.  
  727.  
  728. {block:Audio}
  729. <div class="player">{AudioPlayerBlack}</div>
  730. {block:Caption}{Caption}{/block:Caption}
  731. {/block:Audio}
  732.  
  733. {block:Video}{Video-500}{/block:Video}
  734.  
  735.  
  736. {block:Answer}
  737. <table width="250px" cellspacing="0" cellpadding="0">
  738. <tr>
  739. <td width="355px" class="question">{Question}</td>
  740. <td width="30px"><span class="questionarrow"></span></td>
  741. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  742. </tr>
  743. </table>
  744. <div class="answer">{Answer}</div>
  745. {/block:answer}
  746.  
  747.  
  748.  
  749. <!-----------BASE DUH 2 E 3 ----------♥------------>
  750.  
  751. <div id="cap">
  752. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  753. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  754. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  755.  
  756. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  757. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  758. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  759. {/block:ContentSource}</div></div>
  760. <br>
  761.  
  762. <div class="baseduh3">
  763. {block:Date}<div id="baseduh2">
  764. <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>
  765. </div>
  766.  
  767.  
  768. {/block:Posts}
  769. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778. </div>
  779. </div>
  780. </div>
  781. </div>
  782. </div>
  783. </div>
  784. </div>
  785. </div>
  786. </div>
  787.  
  788. </div>
  789. </div>
  790. </div>
  791. </div>
  792.  
  793.  
  794.  
  795.  
  796.  
  797. </body>
  798.  
  799. </html>
Advertisement
Add Comment
Please, Sign In to add comment