Eduarda

theme 04

Jan 21st, 2013
880
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.19 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.  
  167.  
  168.  
  169.  
  170. <!-- APPERENCE OMDG -->
  171. <meta name="image:background" content="http://static.tumblr.com/ec6b1c939265d99653fcc69e59452710/2bh9bxo/dhAmgwmnt/tumblr_static_blu.png" />
  172. <meta name="image:fotodr" content="http://static.tumblr.com/910d52c6714b3a8f3741afb3aead0323/2bh9bxo/t1Lmgwgjx/tumblr_static_tumblr_mfz3modh6x1qfa0zmo1_500.jpg" />
  173. <meta name="image:fundo" content="http://static.tumblr.com/fv3vbar/Tsmm4aeq7/adev3.jpg" />
  174.  
  175.  
  176. <meta name="text:frase2" content="Un amor imposible" />
  177.  
  178. <meta name="color:background" content="#494949" />
  179. <meta name="color:link" content="#fff" />
  180. <meta name="color:text" content="#fff" />
  181. <meta name="color:bghover" content="#FDB5CE" />
  182. <meta name="color:linkshover" content="#474646" />
  183. <meta name="color:links" content="#8B898989" />
  184. <meta name="color:text desc" content="#fff" />
  185. <meta name="color:borda" content="#474646" />
  186. <meta name="color:borda2" content="#FDB5CE" />
  187. <meta name="color:bordaimg" content="#474646" />
  188. <meta name="color:abc" content="#FDB5CE" />
  189. <meta name="color:italico" content="#8B8989" />
  190. <meta name="color:linhadopost" content="#5F5F5F" />
  191. <meta name="color:post" content="#494949" />
  192. <meta name="color:sidebar" content="#5F5F5F" />
  193. <meta name="color:scrollbar" content="#5F5F5F" />
  194. <meta name="color:frase" content="#fff" />
  195. <meta name="color:tags" content="#EE799F" />
  196. <meta name="color:sombra" content="#8B8989" />
  197. <meta name="color:bgask" content="#474646" />
  198. <meta name="color:pag" content="#8B8989" />
  199.  
  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: 485px; width: 700px; margin-top: 20px; }
  344.  
  345. .omdg {background:{color:post};{block:IndexPage}width: 290px;
  346. border: solid 5px {color:linhadopost};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: 295px; padding: 3px;
  357. border: 3px solid {Color:borda}}
  358.  
  359. .omdg:hover #baseduh2 {opacity: 1;}
  360.  
  361.  
  362. h1 {background:{color:background};font-family:Muli ;border-bottom: 1px dashed {color:borda2}; 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: 248px; border: 0px}
  366. .image img {max-width: 272px; margin-bottom: 2px }
  367.  
  368. .duggs {font-size: 18px; font-family: Rochester;
  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 {background: URL('{image:fundo}');font-size: 13px;-webkit-border-radius: 10px 10px 10px 10px;font-family: pacifico;margin-bottom: 8px; }
  378.  
  379. /*—-Chat por Duda.R [OMDG] exclusive por revolutionhtml—*/
  380.  
  381. .chat {font-family: calibri;background:{color:sidebar};
  382.  
  383. font-size:12px; }
  384.  
  385. .chat .RH { border: 1px solid {color:borda}; margin-bottom: 1px; background-color: {color:background};padding: 4px 5px 4px 5px;color:{color:text};}
  386.  
  387. .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;}
  388.  
  389. .player {background-color: #000; text-align: left; display:block;}
  390.  
  391.  
  392. .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;}
  393.  
  394. .questionarrow {font-size:30px;color:{color:bgask};vertical-align:middle;margin-left:-5px!important;}
  395.  
  396.  
  397. .asker {width:280px; text-align:right; text-transform:lowercase; color:{color:text};}
  398. .asker a {color:{color:text};}
  399. .asker img {float:left; margin-left:400px; vertical-align:top; margin-right:3px; max-height:15px;}
  400.  
  401. .asking {text-align:center; color:{color:text}; font:9px verdana; text-transform:none;}
  402. .asking a{color:{color:text};}
  403. .asking img {width:58px; vertical-align:middle; background-color:{color:background}; padding:3px;}
  404.  
  405. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  406.  
  407.  
  408. .answer {color:{color:answer};}
  409.  
  410. /**------------------BASE DUH 3 E 2 [NOTES E SOUCE]-------?---*****/
  411.  
  412. .baseduh3 {opacity:; -webkit-transition: all 0.6s ease-out;
  413. -moz-transition: all 0.6s ease-out;
  414. border-top: solid 1px {color:linhadopost};
  415. border-bottom: solid 0px {color:text};letter-spacing: 1px}
  416. .baseduh3:hover {opacity: 0.9;
  417. -webkit-transition: all 0.9s ease-out;
  418. -moz-transition: all 0.9s ease-out;letter-spacing: 1px}
  419.  
  420. #baseduh2 {text-align: left; margin-top:6px;
  421. font-size: 11px; font-family: Ubuntu Mono;
  422. z-index: 11;background:{color:background};}
  423. #baseduh2 a {font-size: 10px; color:{color:link};}
  424.  
  425. #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;}
  426. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};}
  427.  
  428. #cap {width: 280px; margin-top: -2px;}
  429. .source {display: none;}
  430.  
  431. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  432. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  433. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  434. .notes img{display: none; border:0px}
  435.  
  436. #duggs2 {position: fixed; margin: 0px 0px 0px -500px;}
  437.  
  438.  
  439.  
  440. /***--- SCROLLBAR---?----***/
  441.  
  442. ::-webkit-scrollbar-thumb:vertical {background-color:{color:borda2};height:50px; border:5px solid {color:scrollbar};}
  443.  
  444. ::-webkit-scrollbar-button:vertical {height:8px;display: block; background:{color:borda2};}
  445.  
  446.  
  447. ::-webkit-scrollbar {height:0px;width:12px;background-color:{color:scrollbar};}
  448.  
  449. /****----------------EFEITINHO--------------?------*****/
  450. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  451. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  452. 3
  453.  
  454. /***-----------NEGRITO ITALICO E SUBLINHADO-----?---***/
  455. b, strong, bold {color:{color:abc};}
  456.  
  457. u,underline {color:{color:text}; border-bottom: 1px dotted {color:italico}; text-decoration:none; }
  458.  
  459. i, em{color:{color:text};}
  460.  
  461.  
  462.  
  463.  
  464.  
  465. /*----Efeito imagem por Duda.R exclusive por revolutionhtml--?--*/
  466.  
  467. .duhimag3 {position: absolute;width:230px;height:250px;margin-left:200px;
  468. margin-top: 120px;position:fixed;border:10px solid {color:bordaimg}; -webkit-transform: rotate(10deg); }
  469. .duhimag3 img {position:fixed; -webkit-transition: all 1s ease-in-out;
  470. -moz-transition: all 1s ease-in-out;-o-transition: all 1s ease-in-out;
  471. -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out;
  472. display: block;height:250px;width: 230px;padding:0px;margin-left:0px;
  473. margin-top:0px;-webkit-transition-duration: 0.8s; -webkit-transform: rotate(0deg);}
  474. .duhimag3 img:hover {}
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481. /***----------- A PARTE DA SID---------?------***/
  482.  
  483. #estela1 {position: fixed; margin-left: 112px; 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};}
  484.  
  485.  
  486. /***-------------TITULOS---------------?---------***/
  487. #duka {margin-left:-7px;margin-top: 140px; height:20px; line-height:22px;float:left; position:fixed; width:218px; font-family: 'Butterfly Kids'; font-size:29px; text-align: center;
  488. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none;-webkit-border-radius: 5px 5px 0px 0px;border-bottom: 2px dashed {color:borda2};}
  489.  
  490.  
  491. @font-face { font-family: "sunshine"; src: url('http://static.tumblr.com/5fd89aw/U3vli7rvs/sunshine_in_my_soul.ttf'); }
  492.  
  493.  
  494.  
  495. /******----------------DESCRIÇÃO--------?--------******/
  496. #notinholaduda {margin-left: 6px; margin-top: 259px; width:161px; font-size: 11px; height: 48px; 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;
  497. -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};background: URL('{image:fundo}');-webkit-border-radius: 10px 10px 10px 10px;}
  498.  
  499.  
  500.  
  501.  
  502. /***-------------BORDAS -------------?-----***/
  503.  
  504. #barra {position: fixed; margin-left: 29px; width:329px; height: 340px; background-color:{color:borda};margin-top: 85px; -webkit-transform: rotate(0deg);background: {color:sidebar};border: 5px solid {color:linhadopost};}
  505.  
  506. #barra1 {position: fixed; margin-left: 305px; width:57px; height: 154px; margin-top: 175px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(0deg);background:{color:borda2};-webkit-border-radius: 15px 0px 0px 15px; border-left: 1px dashed #1c1c1c;}
  507.  
  508. #barra2 {position: fixed; margin-left: -19px; width:299px; height: 70px; background-color:{color:borda2};margin-top: 254px; -webkit-transform: rotate(0deg);-webkit-transform: rotate(180deg);-webkit-border-radius: 20px 20px 20px 20px;}
  509.  
  510.  
  511. /***LINKS BY DUDA.R***/
  512.  
  513. #nossadudex {font-family: tinytots; background-color:{color:linkshover}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 30px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 5px 5px 5px 5px; margin-top: 258px; margin-left: 369px; z-index: 1; position: fixed; text-align: center; height: 21px; border:1px dashed {color:borda2} ; text-transform: none;}/*links o-mundo-de-uma-garota*/
  514. #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*/
  515. #nossadudex1 {font-family: tinytots; background-color: {color:linkshover}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 30px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 5px 5px 5px 5px; margin-top: 294px; margin-left: 369px; z-index: 1; position: fixed; text-align: center; height: 21px; border: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. #nossadudex2 {font-family: tinytots; background-color: {color:linkshover}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 30px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 5px 5px 5px 5px; margin-top: 328px; margin-left: 369px; z-index: 1; position: fixed; text-align: center; height: 21px; border: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.  
  520.  
  521.  
  522.  
  523.  
  524. #faixa2 {margin-top: 195px; margin-left: -9px; position: fixed; background-color:{color:sidebar}; height: 10px; width:222px;}/***detalhes by o-mundo-de-uma-garota***/
  525. #faixa3 {margin-top: -26px; margin-left: 255px; position: fixed; background-color:#omdg; height: 225px; width:54px;}/***detalhes by o-mundo-de-uma-garota***/
  526.  
  527. #faixa4 {margin-top: 474px; margin-left: 315px; position: fixed; background-color:#omdg; height: 49px; width:95px;-webkit-border-radius: 150px 150px 150px 150px; -webkit-transform: rotate(190deg);}/***detalhes by o-mundo-de-uma-garota***/
  528.  
  529.  
  530.  
  531. /**** SELECAO COLORIDA - MADLYLUV.com ****/
  532. ::-moz-selection{background:{color:borda2};text-shadow:0px 1px 1px {color:sombra}; }
  533. ::selection{background: {color:borda2}; color: {color:text};text-shadow:0px 1px 1px {color:sombra}; }
  534.  
  535.  
  536.  
  537.  
  538. /***--------TUMBLR CONTROLS---------?------***/
  539.  
  540. #tumblr_controls{position: fixed!important}
  541.  
  542. #tumblr_controls{position: fixed!important}
  543.  
  544. #tumblr_controls{position: fixed!important}
  545.  
  546. #tumblr_controls{position: fixed!important}
  547.  
  548.  
  549.  
  550.  
  551. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  552. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:#1c1c1c;{color:sidebar};color: {color:pag};opacity:1; -webkit-border-radius: 20px 20px 0px 0px;}
  553. #paginal a:hover {background: {color:sidebar}; color: {color:text};}
  554. #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: 20px 20px 0px 0px;}
  555. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 252px; margin-top: 414px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 20px 20px 0px 0px; }
  556.  
  557.  
  558. #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;
  559. color:#000;#b4b2b2 ; letter-spacing:-1px; z-index:11; text-transform: none; }
  560. #duka:hover{-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  561.  
  562.  
  563. #dj2 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 198px; margin-top: 95px; color:{color:bordaimg}; font-size: 32px; -webkit-transform: rotate(-25deg); z-index: 1000;}
  564.  
  565. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 95px; margin-top: 228px; color:{color:borda2}; font-size: 29px; -webkit-transform: rotate(42deg); z-index: 1000;}
  566.  
  567. #menu { float: left; margin-top: 178px; padding: 3px; text-align: center;margin-left:22px; 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; } /**--OMDG---♥---**/
  568. /**--OMDG---♥---**/
  569. #menu a {float: left; margin-right: 0px; display: block; width: 33px; letter-spacing: 0px; font-family: Rancho; font-size: 17px; text-align: center; margin-bottom: 1px; background-color: {color:linkshover}; color: {color:links}; text-decoration: none; height:19px;line-height:15px; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-top:1px; text-shadow: 2px 4px 10px {color:sombra}; -webkit-border-radius: 15px 15px 15px 0px;border: 1px solid {color:linhadopost}; border-left: 2px dashed {color:borda2};}
  570. /**--OMDG---♥---**/
  571. #menu a:hover{ color:{;color:links hover};;-webkit-animation: duds 2000ms alternate infinite linear;-moz-animation: duds 1200ms alternate infinite linear;-ms-animation: duds 1300ms alternate infinite linear;
  572. }
  573. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  574. @-webkit-keyframes duds {
  575. 0% { -webkit-transform: translate(4px, 2px) rotate(5deg); -webkit-box-shadow: inset -24px 5px 30px 10px {color:borda2}; }
  576. 10% { -webkit-transform: translate(-4px, -2px) rotate(-2deg); }
  577. 20% { -webkit-transform: translate(2px, 4px) rotate(3deg);-webkit-border-radius: 10px 10px 10px 10px; }
  578. 30% { border-left: 2px dashed {color:borda};border-right: 2px dashed {color:borda};-webkit-transform: translate(0px, 2px) rotate(0deg); }
  579. 40% { -webkit-transform: translate(4px, -5px) rotate(1deg); }
  580. 50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
  581. 60% { -webkit-transform: translate(-3px, 1px) rotate(5deg); }
  582. 70% { background:{color:borda};-webkit-transform: translate(2px, 1px) rotate(-1deg); }
  583. 80% { -webkit-transform: translate(-3px, -1px) rotate(1deg); }
  584. 90% { -webkit-transform: translate(2px, 2px) rotate(-1deg); }
  585. 100% { -webkit-transform: translate(3px, -2px) rotate(2deg); }
  586. }
  587.  
  588. #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;
  589. color:#000;#b4b2b2 ; letter-spacing:-1px; z-index:11; text-transform: none; }
  590. #duka:hover{-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  591.  
  592.  
  593.  
  594. .caixinha{font-family: 'Cursive standard', sans-serif;height:25px;line-height:25px;font-size:22px; padding:2px; color: #000; background: #FF82AB; text-align:center; display:block;margin-bottom: 1px; text-shadow: 0px 1px 1px transparent; font-style: none; text-decoration: none; }
  595.  
  596.  
  597.  
  598. ::-moz-selection {
  599. color: #fff;
  600. background: #000;
  601. }
  602. ::selection {
  603. color: #fff;
  604. background: #000;
  605. }
  606.  
  607.  
  608. /**** SELECAO COLORIDA - MADLYLUV.com ****/
  609. ::-moz-selection{background: #FF69B4;text-shadow:0px 1px 1px #1c1c1c; }
  610. ::selection{background: #FF69B4; color: #000;text-shadow:0px 1px 1px #fff; }
  611.  
  612.  
  613.  
  614.  
  615. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  616.  
  617. </style>
  618. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  619.  
  620. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  621. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  622. <script type="text/javascript">
  623. $(window).load(function () {
  624. $('#baseduh').masonry(),
  625. $('.masonryWrap').infinitescroll({
  626. navSelector : ".omdg",
  627. nextSelector : "#page a#p",
  628. itemSelector : ".omdg",
  629. bufferPx : 10000,
  630. extraScrollPx: 10000,
  631. loadingImg : "",
  632. loadingText : "",
  633. },
  634. function() { $('#baseduh').masonry({ appendedContent: $(this) }); }
  635. );
  636. });
  637. </script>
  638.  
  639.  
  640.  
  641. <body>
  642.  
  643.  
  644. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  645. <!--------------------play aqui embaixo---♥------------>
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658. <div id="barra1"></div>
  659. <div id="barra2"></div>
  660.  
  661. <div id="faixa2"></div>
  662. <div id="faixa3"></div>
  663.  
  664.  
  665. <div class="duhimag3" class="hover">
  666.  
  667. <img class="duh" src="{image:fotodr}" title="baby im sure duh"></div></div>
  668. </div></div>
  669.  
  670. <div id="dj3">◤</div>
  671.  
  672. <div id="duka">{text:frase2}</div>
  673.  
  674.  
  675. <div id="notinholaduda">{Description}</div>
  676.  
  677.  
  678.  
  679.  
  680.  
  681. <div id="menu">
  682. <a href="{text:Link4}">{text:Link4 Title}</a>
  683. <a href="{text:Link5}">{text:Link5 Title}</a>
  684. <a href="{text:Link6}">{text:Link6 Title}</a>
  685. <a href="{text:Link7}">{text:Link7 Title}</a>
  686. </a></div>
  687.  
  688. </div>
  689. </div>
  690.  
  691. <div id="nossadudex" title="{text:Link1 Title} "><a href="{text:Link1}"><img height="24"src="http://static.tumblr.com/tx5g7yp/k3Smbfvn0/home.png" width="21"class="home"title="{text:Link1 Title} "></div>
  692.  
  693.  
  694. <div id="nossadudex1" title="{text:Link2 Title} "><a href="{text:Link2}"><img height="24"src="http://static.tumblr.com/tx5g7yp/onYmbfvny/askme.png" width="18"class="ask"title="{text:Link2 Title} "></div>
  695.  
  696.  
  697. <div id="nossadudex2" title="{text:Link3 Title} "><a href="{text:Link3}"><img height="24"src="http://static.tumblr.com/tx5g7yp/h0ymbfvq0/love.png" width="20"class="amor"title="{text:Link3 Title}"></div>
  698.  
  699.  
  700.  
  701. <!-------------PAGINATION-----------♥---------->
  702.  
  703. <div class="ps"><div id="paginal">
  704. {block:JumpPagination length="3"}
  705. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  706. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  707. {/block:JumpPagination}
  708. </div></div>
  709.  
  710.  
  711. <!-------------CRÉDITOS-----------------♥------------->
  712. <div style="margin-left:52px;-webkit-border-radius: 5px 5px 5px 5px;-webkit-transform: rotate(0deg); width:80px;background:{color:sidebar};font-family:tahoma;font-size:11px; margin-top: 505px; 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>OMDG </small></a>
  713. <font color="{color:tags}">©</font> </a></div>
  714.  
  715.  
  716. <!--------------BASE DUH-------------------♥---------->
  717.  
  718. <div id="baseduh">
  719.  
  720. {block:Posts}
  721. <div class="omdg">
  722.  
  723.  
  724.  
  725.  
  726. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  727.  
  728. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  729.  
  730. {block:Photoset}{Photoset-250}{/block:Photoset}
  731.  
  732. {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}
  733. {/block:Quote}
  734.  
  735. {block:Link}
  736. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  737. {block:Description}{Description}{/block:Description}
  738. {/block:Link}
  739.  
  740.  
  741. <!———————-CHAT—♥————————>
  742.  
  743. {block:Chat}<div class="caixa">
  744.  
  745. {block:Lines}
  746.  
  747. <div class="chat">
  748.  
  749. <div class="RH">{block:Label}
  750.  
  751. <span>{Label}</span>
  752.  
  753. {/block:Label}
  754.  
  755. {Line}</div></div>
  756.  
  757. {/block:Lines}
  758.  
  759. {block:IndexPage}
  760.  
  761. <center><div class="OMDG">
  762.  
  763. </div></center>
  764.  
  765. {/block:IndexPage}
  766.  
  767. </div>{block:Chat}
  768.  
  769.  
  770. {block:Audio}
  771. <div class="player">{AudioPlayerBlack}</div>
  772. {block:Caption}{Caption}{/block:Caption}
  773. {/block:Audio}
  774.  
  775. {block:Video}{Video-500}{/block:Video}
  776.  
  777.  
  778. {block:Answer}
  779. <table width="250px" cellspacing="0" cellpadding="0">
  780. <tr>
  781. <td width="355px" class="question">{Question}</td>
  782. <td width="30px"><span class="questionarrow"></span></td>
  783. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  784. </tr>
  785. </table>
  786. <div class="answer">{Answer}</div>
  787. {/block:answer}
  788.  
  789.  
  790.  
  791. <!-----------BASE DUH 2 E 3 ----------♥------------>
  792.  
  793. <div id="cap">
  794. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  795. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  796. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  797.  
  798. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  799. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  800. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  801. {/block:ContentSource}</div></div>
  802. <br>
  803.  
  804. <div class="baseduh3">
  805. {block:Date}<div id="baseduh2">
  806. <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>
  807. </div>
  808.  
  809.  
  810. {/block:Posts}
  811. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  812.  
  813.  
  814.  
  815.  
  816.  
  817.  
  818.  
  819.  
  820. </div>
  821. </div>
  822. </div>
  823. </div>
  824. </div>
  825. </div>
  826. </div>
  827. </div>
  828. </div>
  829.  
  830. </div>
  831. </div>
  832. </div>
  833. </div>
  834.  
  835.  
  836.  
  837.  
  838. </body>
  839.  
  840. </html>
Advertisement
Add Comment
Please, Sign In to add comment