Eduarda

Theme 91

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