Eduarda

Theme 115

Feb 14th, 2013
2,648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.53 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/5b89a6c14710c494b75c1cfd3e14fbed/2bh9bxo/hXDmi7xe2/tumblr_static_pretofloral.png" />
  172. <meta name="image:fotodr" content="http://static.tumblr.com/395f5ea323b257c110dba54539ffcf91/2bh9bxo/ghUmi7xg8/tumblr_static_tumblr_mezk8v4tit1r3r46po1_500.jpg" />
  173. <meta name="image:barra" content="http://static.tumblr.com/fzbupk7/kr2mgw918/tumblr_mfchd2hzps1rs1jz6o8_250.png" />
  174. <meta name="image:faixa" content="http://static.tumblr.com/a29b555b8eb7a66c625eeb0bc1f2cec2/2bh9bxo/bfvmgq34j/tumblr_static_fundinhoduh.png" />
  175.  
  176.  
  177. <meta name="text:frase2" content="Duda Bitch" />
  178. <meta name="text:frase" content="Mô Mô" />
  179.  
  180. <meta name="color:background" content="#1c1c1c" />
  181. <meta name="color:link" content="#8B8989" />
  182. <meta name="color:text" content="#8B8989" />
  183. <meta name="color:bghover" content="#EE799F" />
  184. <meta name="color:linkshover" content="#000" />
  185. <meta name="color:links" content="#8B8989" />
  186. <meta name="color:text desc" content="#8B8989" />
  187. <meta name="color:borda" content="#1c1c1c" />
  188. <meta name="color:borda2" content="#EE799F" />
  189. <meta name="color:bordaimg" content="#000" />
  190. <meta name="color:abc" content="#EE799F" />
  191. <meta name="color:italico" content="#8B8989" />
  192. <meta name="color:linhadopost" content="#1c1c1c" />
  193. <meta name="color:post" content="#000" />
  194. <meta name="color:sidebar" content="#000" />
  195. <meta name="color:scrollbar" content="#000" />
  196. <meta name="color:frase" content="#8B8989" />
  197. <meta name="color:tags" content="#EE799F" />
  198. <meta name="color:sombra" content="#8B8989" />
  199. <meta name="color:bgask" content="#1c1c1c" />
  200. <meta name="color:pag" content="#8B8989" />
  201. <meta name="color:faixa1" content="#0c0c0c" />
  202. <meta name="color:faixa2" content="#faafbd" />
  203.  
  204. <meta name="if:Show tags" content="1"/>
  205.  
  206. <meta name="text:Link1" content="/" />
  207. <meta name="text:Link1 Title" content="home" />
  208. <meta name="text:Link2" content="/" />
  209. <meta name="text:Link2 Title" content="askbox" />
  210. <meta name="text:Link3" content="/" />
  211. <meta name="text:Link3 Title" content="link" />
  212. <meta name="text:Link4" content="/" />
  213. <meta name="text:Link4 Title" content="link4" />
  214. <meta name="text:Link5" content="/" />
  215. <meta name="text:Link5 Title" content="link5" />
  216. <meta name="text:Link6" content="/" />
  217. <meta name="text:Link6 Title" content="link6" />
  218. <meta name="text:Link7" content="/" />
  219. <meta name="text:Link7 Title" content="link7" />
  220. <meta name="text:Link8" content="/" />
  221. <meta name="text:Link8 Title" content="link8" />
  222.  
  223.  
  224.  
  225.  
  226.  
  227. <title>{Title}</title> <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.  
  237. <!----------------FONTES-------?-------->
  238. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  239. <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'>
  240. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  241.  
  242. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  243.  
  244. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  245. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  246. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  247.  
  248. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  249.  
  250.  
  251. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  252.  
  253. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  254.  
  255. <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'>
  256.  
  257. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  258. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  259. <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'>
  260.  
  261. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  262. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  263.  
  264.  
  265. <link href='http://fonts.googleapis.com/css?family=Akronim' rel='stylesheet' type='text/css'>
  266.  
  267. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  268. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  269. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  270. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  271. <link href='http://fonts.googleapis.com/css?family=Stalemate' rel='stylesheet' type='text/css'>
  272. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  273. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  274. <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'>
  275. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  276. <!------------------eita duh--------------------->
  277. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  278.  
  279. <script type="text/javascript">
  280. // <![CDATA[
  281. var speed=100; //
  282. var height=3; //
  283. var alink="/"; // page to link text to (set to ="" for no link)
  284.  
  285. /****************************
  286. ****************************/
  287. var wobtxt, wobble, wobcnt=0;
  288. window.onload=function() { if (document.getElementById) {
  289. var i, wobli;
  290. wobble=document.getElementById("wobble");
  291. wobtxt=wobble.firstChild.nodeValue;
  292. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  293. for (i=0; i<wobtxt.length; i++) {
  294. wobli=document.createElement("span");
  295. wobli.setAttribute("id", "wobb"+i);
  296. wobli.style.position="relative";
  297. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  298. if (alink) {
  299. wobli.style.cursor="pointer";
  300. wobli.onclick=function() { top.location.href=alink; }
  301. }
  302. wobble.appendChild(wobli);
  303. }
  304. setInterval("wobbler()", speed);
  305. }}
  306.  
  307. function wobbler() {
  308. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  309. wobcnt++;
  310. }
  311. // ]]>
  312. </script>
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320. <style type="text/css">
  321.  
  322. body {background-color: {color:background}; font-family: Century Gothic; color: {color:text}; text-align: justify; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  323.  
  324.  
  325.  
  326. a {color: {color:link}; text-decoration: none; text-transform: none;}
  327. a:hover {color: {color:lhover}; background-color: transparent; text-decoration: none;}
  328.  
  329.  
  330. p {margin: 6px 0 0 0}
  331.  
  332. blockquote {margin: 5px 5px 5px 5px; border-left: 1px solid {color:background}; padding-left: 5px; }
  333. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background};}
  334. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background}; }
  335. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  336.  
  337.  
  338. blockquote img{max-width: 270px!important}
  339. blockquote blockquote img{max-width: 250px!important}
  340. blockquote blockquote blockquote img{max-width: 230px!important}
  341. blockquote blockquote blockquote blockquote img{max-width: 210px!important}
  342.  
  343.  
  344. #container {background-color: ; width: 900px; margin: 0 auto 10px auto; background: {color:background}}
  345.  
  346. /**-------------BASE DUH------------?---------------**/
  347. #baseduh {margin-left: 483px; width: 500px; margin-top: 45px; }
  348.  
  349. .omdg {background:{color:post};{block:IndexPage}width: 450px;
  350. border: dashed 1px {color:linhadopost};text-align: justify;
  351. padding: 9px; float: left;
  352. margin: 4px 0 0 4px;{/block:IndexPage}{block:PermalinkPage}
  353. padding:10px; width:450px; margin-top: 8px; height:auto;
  354. background-color: {color:post};
  355. text-align: left; margin-left:7px;
  356. {/block:PermalinkPage}}
  357.  
  358. #baseduh:hover{-webkit-transition: all .7s ease-out;
  359. -moz-transition: all .7s ease-out;opacity:1}
  360. .omdg img{width: 442px; padding: 3px;
  361. border: 1px solid {Color:background}}
  362.  
  363. .omdg:hover #baseduh2 {opacity: 1;}
  364.  
  365.  
  366. h1 {font-family:Muli ; border-bottom: 1px dashed {color:borda2};text-align: center; font-size: 14px; color: {color:text}; font-weight: normal; line-height: 14px;}
  367. h1 a {text-align: center; font-size: 13px;color: {color:text}; font-weight: normal; line-height: 14px;}
  368. h1 a:hover {text-align: center; font-size: 13px; color: {color:text}; font-weight: normal; line-height: 14px;}
  369. .image {text-align: center; width: 448px; border: 0px}
  370. .image img {max-width: 442px; margin-bottom: 2px }
  371.  
  372. .duggs {font-size: 18px; font-family: Rochester;
  373. letter-spacing: 0px; line-height: 13px;
  374. text-transform: none;text-align: center;
  375. font-style: none; margin-top:-65px;
  376. margin-bottom: 2px;color:{color:text}}
  377. .queroaspas{ position:relative; top: -20px;
  378. font-size: 60px; opacity:0.2;
  379. filter: alpha(opacity = 10); color: #fff;}
  380.  
  381. .dolls {background: URL('http://static.tumblr.com/fv3vbar/Tsmm4aeq7/adev3.jpg');font-size: 13px;-webkit-border-radius: 10px 10px 10px 10px;font-family: pacifico;margin-bottom: 8px; }
  382.  
  383. /*—-Chat por Duda.R [OMDG] exclusive por revolutionhtml—*/
  384.  
  385. .chat {font-family: calibri;background:{color:sidebar};
  386.  
  387. font-size:12px; }
  388.  
  389. .chat .RH { border: 1px solid {color:borda}; margin-bottom: 1px; background-color: {color:background};padding: 4px 5px 4px 5px;color:{color:text};}
  390.  
  391. .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;}
  392.  
  393. .player {background-color: #000; text-align: left; display:block;}
  394.  
  395. /* asker */
  396.  
  397. .asker {background: {color:bgask}; color: {color:text}; padding: 2px; line-weight: 7px; opacity:0.85;-moz-opacity: 0.85; filter: alpha(opacity=85); }
  398. .asker img {width:30px; height:30px; margin:3px; padding: 4px; background: {color:bgask2}; opacity:0.99;-moz-opacity: 0.99; filter: alpha(opacity=99); }
  399. .asker a {color:{color:text};}
  400.  
  401.  
  402. .quote:first-letter{font-family: Rochester; font-size: 24px;color:{color:borda2};}
  403. .quote {font-family: Muli; text-align: center; font-size: 12px; line-height: 15px; padding: 3px; margin-top: 6px;}
  404. .taysource {-webkit-transform: rotate(-3deg);font-family:'candara'; font-style:italic; font-size: 12px; text-transform: none; margin-bottom: 5px; margin-top:4px; padding-left:10px; background: #1c1c1c; padding:0px 10px 0px 0px; line-height:20px; height:22; border-top: 1px dashed {color:borda2}; font-weight:bold; text-align: right;}
  405. }
  406. .taysource a, a:hover{text-transform: none;}
  407.  
  408. /**------------------BASE DUH 3 E 2 [NOTES E SOUCE]-------?---*****/
  409.  
  410. .baseduh3 { -webkit-transition: all 0.6s ease-out;
  411. -moz-transition: all 0.6s ease-out;
  412. border-top: solid 1px {color:linhadopost};border-bottom: dashed 1px {color:borda2};
  413. border-bottom: solid 0px {color:text};letter-spacing: 1px}
  414. .baseduh3:hover {opacity: 0.2;
  415. -webkit-transition: all 0.9s ease-out;
  416. -moz-transition: all 0.9s ease-out;letter-spacing: 1px}
  417.  
  418. #baseduh2 {text-align: left; margin-top:6px;
  419. font-size: 11px; font-family: Pacifico;
  420. z-index: 11;background:{color:background};}
  421. #baseduh2 a {font-size: 10px; color:{color:link};}
  422.  
  423. #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;}
  424. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};}
  425.  
  426. #cap {width: 280px; margin-top: -2px;}
  427. .source {display: none;}
  428.  
  429. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  430. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  431. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  432. .notes img{display: none; border:0px}
  433.  
  434. #duggs2 {position: fixed; margin: 0px 0px 0px -500px;}
  435.  
  436.  
  437.  
  438. /***--- SCROLLBAR---?----***/
  439.  
  440. ::-webkit-scrollbar-thumb:vertical {background-color:{color:borda2};height:50px; border:5px solid {color:scrollbar};}
  441.  
  442. ::-webkit-scrollbar-button:vertical {height:8px;display: block; background:{color:borda2};}
  443.  
  444.  
  445. ::-webkit-scrollbar {height:0px;width:12px;background-color:{color:scrollbar};}
  446.  
  447. /****----------------EFEITINHO--------------?------*****/
  448. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  449. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  450. 3
  451.  
  452. b {color: {color:abc};text-decoration: none;}
  453.  
  454. i {color: {color:italico};text-decoration: none;}
  455.  
  456. u {color: {color:borda2}; text-decoration: none; border-bottom: 1px dashed {color:faixa1}; DO SUBLINHADO;}
  457.  
  458. /*----Efeito imagem por Duda.R exclusive por revolutionhtml--♥--*/
  459.  
  460. .duhimag3 {position: absolute;width:225px;height:230px;margin-left:220px;
  461. margin-top: 195px;position:fixed;border:10px solid {color:bordaimg};-webkit-transform: rotate(10deg); }
  462. .duhimag3 img {position:fixed; -webkit-transition: all 1s ease-in-out;
  463. -moz-transition: all 1s ease-in-out;-o-transition: all 1s ease-in-out;
  464. -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out;
  465. display: block;height:230px;width: 225px;padding:0px;margin-left:0px;
  466. margin-top:0px;opacity:0.8;-webkit-transition-duration: 0.8s;opacity: 9.0;}
  467. .duhimag3 img:hover {}
  468.  
  469. #bitch4 { margin-left:-10px; margin-top:-45px; width: 500%; font-size: 20px; height:5px; text-align: justify; background-color:#000;{color:faixa1}; line-height: 5px; color:transparent; position: fixed;z-index:100;}
  470. #bitch5 { margin-left:-10px; margin-top: -41px; width: 500%; font-size: 20px; height:9px; text-align: justify; background-color:#000;{color:faixa2}; line-height: 5px; color:transparent; position: fixed;z-index:100;}
  471.  
  472. #duka {margin-left:-16px;margin-top:196px; height:30px; line-height:28px;float:left; position:fixed; width:256px; font-family: 'Stalemate',cursive; font-size:38px; text-align: center;;
  473. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none;-webkit-border-radius: 5px 15px 15px 5px;border: 0px dashed {color:borda2};-webkit-transform: rotate(0deg);}
  474.  
  475.  
  476. @font-face { font-family: "sunshine"; src: url('http://static.tumblr.com/5fd89aw/U3vli7rvs/sunshine_in_my_soul.ttf'); }
  477.  
  478. /***----------- A PARTE DA SID---------♥------***/
  479.  
  480. #estela1 {position: fixed; margin-left: -12px; width:1444px; height: 798px; background-color:{color:sidebar}; margin-top: 360px; -webkit-transform: rotate(0deg);-webkit-border-radius: 10px 10px 10px 10px;border: 0px dashed {color:faixa2};background-image: url('{image:barra}');}
  481.  
  482. #menu1 { float: left; margin-top: 365px; padding: 3px; text-align: center;margin-left:55px; 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(0deg); }
  483.  
  484. #menu1 a {float: left; margin-right: 0px; display: block; width: 72px; letter-spacing: 0px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; background-color:{color:faixa1}; color: #000; text-decoration: none; height:19px;line-height:18px; 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: 10px 10px 10px 10px; border: 2px dashed {color:borda2};opacity:0.7;}
  485. #menu1 a:hover{-webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;text-align: center; background:{color:faixa1}; 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);
  486. }
  487.  
  488. #menutt { float: left; margin-top: 123px; padding: 3px; text-align: center;margin-left:350px; position: fixed; height:35px;background-color: transparent; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index:1000;width: 85px; -webkit-transform: rotate(13deg);border: 2px solid #000;{color:faixa1}; -webkit-border-radius: 10px 10px 10px 10px;}
  489.  
  490. #menutt a {float: left; margin-right: 0px; display: block; width: 72px; letter-spacing: 0px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; background-color:{color:faixa2}; color: {color:links}; text-decoration: none; height:20px;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: 10px 10px 10px 10px; border: 2px dashed {color:faixa1};}
  491. #menutt 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);
  492. }
  493.  
  494.  
  495. /******----------------DESCRIÇÃO--------♥--------******/
  496. .notinholaduda {margin-left: 30px; margin-top: 276px; width:155px; font-size: 11px; height: 58px; 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:;-webkit-border-radius: 0px 0px 0px 0px;border-top: 1px dashed {color:faixa1};-webkit-transform: rotate(0deg);}
  498.  
  499. #barbie- {margin-left:60px;margin-top: 524px; height:24px; line-height:34px;float:left; position:fixed; width:120px; font-family: 'Akronim'; font-size:52px; text-align: center; text-shadow: 3px 3px 5px 4px {color:sombra};
  500. color:#000;{color:borda2}; letter-spacing:-1px; z-index:11; text-transform: none; text-shadow: 3px 3px 5px 4px {color:sombra};-webkit-border-radius: 0px 0px 10px 10px;}
  501.  
  502. #dj2 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 60px; margin-top: 344px; color:{color:faixa1}; font-size: 28px; -webkit-transform: rotate(45deg); z-index: 1000;opacity:0.7;}
  503.  
  504. #dj3 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: -26px; margin-top: 121px; color:{color:faixa2}; font-size: 48px; -webkit-transform: rotate(135deg); z-index: 1000;}
  505.  
  506. #dj4 {width: 29px; position: fixed; padding: 8px; background-color: transparent; margin-left: 346px; margin-top: 136px; color:#000;{color:faixa1}; font-size: 28px; -webkit-transform: rotate(239deg); z-index: 1000;}
  507.  
  508.  
  509.  
  510. #menu { float: left; margin-top: 441px; padding: 3px; text-align: center;margin-left:198px; 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---♥---**/
  511. /**--OMDG---♥---**/
  512. #menu a {float: left; margin-right: 0px; display: block; width: 52px; 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:21px;line-height:18px; 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: 0px 0px 0px 0px;border: 1px solid {color:faixa1}; border-left: 2px dashed {color:borda2};}
  513. /**--OMDG---♥---**/
  514. #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;
  515. }
  516. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  517. @-webkit-keyframes duds {
  518. 0% { -webkit-transform: translate(4px, 2px) rotate(5deg); -webkit-box-shadow: inset -24px 5px 30px 10px {color:borda2}; }
  519. 10% { -webkit-transform: translate(-4px, -2px) rotate(-2deg); }
  520. 20% { -webkit-transform: translate(2px, 4px) rotate(3deg);-webkit-border-radius: 10px 10px 10px 10px; }
  521. 30% { border-left: 2px dashed {color:borda};border-right: 2px dashed {color:borda};-webkit-transform: translate(0px, 2px) rotate(0deg); }
  522. 40% { -webkit-transform: translate(4px, -5px) rotate(1deg); }
  523. 50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
  524. 60% { -webkit-transform: translate(-3px, 1px) rotate(5deg); }
  525. 70% { background:{color:borda};-webkit-transform: translate(2px, 1px) rotate(-1deg); }
  526. 80% { -webkit-transform: translate(-3px, -1px) rotate(1deg); }
  527. 90% { -webkit-transform: translate(2px, 2px) rotate(-1deg); }
  528. 100% { -webkit-transform: translate(3px, -2px) rotate(2deg); }
  529. }
  530.  
  531. #menu2 { float: left; margin-top: 442px; padding: 3px; text-align: center;margin-left:262px; 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---♥---**/
  532. /**--OMDG---♥---**/
  533. #menu2 a {float: left; margin-right: 0px; display: block; width: 50px; 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:21px;line-height:18px; 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: 0px 0px 0px 0px;border: 1px solid $1c1c1c;{color:faixa1}; border-left: 2px dashed {color:borda2};}
  534. /**--OMDG---♥---**/
  535. #menu2 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;
  536. }
  537. /**--OMDG---♥---**/ /**--OMDG---♥---**/ /**--OMDG---♥---**/
  538. @-webkit-keyframes duds {
  539. 0% { -webkit-transform: translate(4px, 2px) rotate(5deg); -webkit-box-shadow: inset -24px 5px 30px 10px {color:borda2}; }
  540. 10% { -webkit-transform: translate(-4px, -2px) rotate(-2deg); }
  541. 20% { -webkit-transform: translate(2px, 4px) rotate(3deg);-webkit-border-radius: 10px 10px 10px 10px; }
  542. 30% { border-left: 2px dashed {color:borda};border-right: 2px dashed {color:borda};-webkit-transform: translate(0px, 2px) rotate(0deg); }
  543. 40% { -webkit-transform: translate(4px, -5px) rotate(1deg); }
  544. 50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
  545. 60% { -webkit-transform: translate(-3px, 1px) rotate(5deg); }
  546. 70% { background:{color:borda};-webkit-transform: translate(2px, 1px) rotate(-1deg); }
  547. 80% { -webkit-transform: translate(-3px, -1px) rotate(1deg); }
  548. 90% { -webkit-transform: translate(2px, 2px) rotate(-1deg); }
  549. 100% { -webkit-transform: translate(3px, -2px) rotate(2deg); }
  550. }
  551.  
  552.  
  553.  
  554. /****************** LINKS POR PR-INCESO ******************/
  555. #links {width: 70px;line-height:15px; margin-top: 239px; text-align: right;; position: fixed; margin-left:21px;z-index:0; color:{color:linktext};border-radius:3px;opacity:.8;-webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out}
  556. #links a {font-family:"muli"; font-size:8px; opacity:1;z-index:0;; -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:linktext};margin-bottom:1px;}
  557. #links a:hover {text-decoration:underline;color:{color:linktextbg};}
  558.  
  559. #links img {width:30px; height:30px; background-color:transparent;border-radius:50%; box-shadow:0px 0px 4px {color:sombra do link};-webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out;z-index:0}
  560. #links img:hover{box-shadow:0px 0px 11px {color:sombra do link};}
  561.  
  562.  
  563. #links2 {width: 70px;line-height:15px; margin-top: 239px; text-align: center;; position: fixed; margin-left:79px;z-index:0; color:{color:linktext};border-radius:3px;opacity:.8;-webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out}
  564. #links2 a {font-family:"muli"; font-size:8px; opacity:1;z-index:0;; -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:linktext};margin-bottom:1px;}
  565. #links2 a:hover {text-decoration:underline;color:{color:linktextbg};}
  566. #links2 img {width:30px; height:30px; background-color:transparent;border-radius:50%; box-shadow:0px 0px 4px {color:sombra do link};-webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out;z-index:0}
  567. #links2 img:hover{box-shadow:0px 0px 11px {color:sombra do link};}
  568.  
  569.  
  570. #linksx {width: 70px;line-height:15px; margin-top: 239px; text-align: left; position: fixed; margin-left:140px;z-index:0; color:{color:linktext};background-color:;border-radius:3px;opacity:.8;-webkit-transition: all 2.3s ease-out; -moz-transition: all 2.3s ease-out}
  571. #linksx a {font-family:"muli"; font-size:8px; opacity:1;z-index:;; -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:{color:linktext};margin-bottom:1px;}
  572. #linksx a:hover {text-decoration:underline;color:{color:linktextbg};}
  573.  
  574. #linksx img {width:30px; height:30px; background-color:transparent;border-radius:50%; box-shadow:0px 0px 4px {color:sombra do link};-webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out;z-index:0}
  575. #linksx img:hover{box-shadow:0px 0px 11px {color:sombra do link};}
  576.  
  577.  
  578.  
  579.  
  580.  
  581. a.dcontexto{
  582. position:relative;
  583. font:12px arial;
  584. padding:0;
  585. color:#fff;
  586. text-decoration:none;
  587. z-index:99999999999999999999999999999999999;
  588. }
  589. a.dcontexto:hover{
  590. background:transparent;
  591. color:#fff;
  592. z-index:999999999999999999999999;
  593. }
  594. a.dcontexto span{display: none;}
  595. a.dcontexto:hover span{
  596. display:block;
  597. position:absolute;opacity:0.7;
  598. width:35px;
  599. top:-6em;
  600. text-align:center;
  601. left:0;
  602. font: 13px Rochester;
  603. padding:5px 10px;border: 2px dashed {color:faixa1};
  604. background:{color:faixa2};
  605. color:{color:links};
  606. border-radius:5px; z-index:9999999999999999999999;
  607. }
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615. /**** SELECAO COLORIDA - MADLYLUV.com ****/
  616. ::-moz-selection{background:{color:borda2};text-shadow:0px 1px 1px ; }
  617. ::selection{background: {color:borda2}; color: {color:text};text-shadow:0px 1px 1px {color:sombra}; }
  618.  
  619.  
  620.  
  621.  
  622. /***--------TUMBLR CONTROLS---------?------***/
  623.  
  624. #tumblr_controls{position: fixed!important}
  625.  
  626. #tumblr_controls{position: fixed!important}
  627.  
  628. #tumblr_controls{position: fixed!important}
  629.  
  630. #tumblr_controls{position: fixed!important}
  631.  
  632.  
  633.  
  634. /**---Stilo Mod (2) por Duda.R ----{OMDG}----- Exclusive por {Revolutionhtml}-----♥----**/
  635. .duhfa {background:#000;text-align: center; margin-top:10px; margin-left: 68px; overflow: hidden; font-size: 32px; font-family:basket; position: fixed; color:{color:frase}; padding: 0px; width:165px; -moz-transition: all 2s ease-out; height: 135px; letter-spacing: 0px; line-height: 175px;z-index:800000000000000000000000000000000000000000000000;text-transform: uppercase;opacity:0.0;}
  636.  
  637. .duhfa:hover {-webkit-transform: rotate(360deg);margin-left:68px;margin-top:10px;-webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; opacity: 0.4;z-index:100;border: 1px dashed #fff;}
  638. @font-face {font-family:basket; src: url('http://static.tumblr.com/ejm8w78/aollviadu/destrukt.ttf');}
  639.  
  640. .duhfa:hover #tt{text-transform:none;margin-left:20px;text-shadow: 5px 5px 9px #000;;height:60px;font-size:12px;font-family:Rochester;color:#000;line-height:15px;margin-top:-46px;background:#fff;-webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out; opacity: 0.4;z-index:100; margin-bottom: 2px;border-top: 1px solid #FF69B4;
  641.  
  642. -webkit-transition: all 0.9s ease-out;
  643.  
  644. -moz-transition: all 0.9s ease-out; opacity: 10; filter:alpha (opacity=50);-webkit-border-radius: 160px 160px 160px 160px;-webkit-transition-duration: 1.9s; -moz-transition-duration:1.9s;-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.5s ease-out;-moz-transform: rotate(350deg);-webkit-transform: rotate(360deg);-o-transform: rotate(350deg);-ms-transform: rotate(360deg);transform: rotate(360deg);opacity:0.8; -webkit-transform:scale(1.8);
  645.  
  646. -moz-transform:scale(1.8);
  647.  
  648. -o-transform:scale(1.7);
  649.  
  650. opacity:0.2;
  651.  
  652. -webkit-transition-duration: .99s;opacity:0.7; #pattern opacity:0.7;-webkit-transition-duration: 0.8s;}
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659. #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;
  660. color:#000;#b4b2b2 ; letter-spacing:-1px; z-index:11; text-transform: none; }
  661. #duka:hover{-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  662.  
  663.  
  664.  
  665. .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; }
  666.  
  667.  
  668.  
  669. ::-moz-selection {
  670. color: #fff;
  671. background: #000;
  672. }
  673. ::selection {
  674. color: #fff;
  675. background: #000;
  676. }
  677.  
  678. .box2 {width: 758px;height:160px; position:fixed;background:{color:sidebar};float: left; }
  679. #sidebar {width:240px;padding:0px!important;margin-left:-70px; position:fixed; float:right; top:9px; z-index:0;}
  680.  
  681.  
  682.  
  683.  
  684. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  685. #paginal a { margin: 0 1px 0 0; padding: 2px 4px; background:{color:borda};color: {color:pag};opacity:1; -webkit-border-radius: 5px 5px 5px 5px;}
  686. #paginal a:hover {background: {color:borda}; color: {color:text};}
  687. #paginal span.pagina_atual {background: {color:borda}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 5px 5px 5px 5px;}
  688. .ps {position: fixed; padding: 2px; width: 148px; margin-left: 980px; margin-top: 390px; height: auto; color: {color:text};opacity:1;-webkit-border-radius: 5px 5px 5px 5px; }
  689.  
  690. #estela2 {position: fixed; margin-left: -12px; width:1444px; height: 798px; background-color:{color:sidebar}; margin-top: 340px; -webkit-transform: rotate(0deg);-webkit-border-radius: 10px 10px 10px 10px;border: 1px dashed {color:faixa2};background-image: url('{image:faixa}');}
  691.  
  692. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  693.  
  694. </style>
  695. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  696.  
  697. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  698. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  699. <script type="text/javascript">
  700. $(window).load(function () {
  701. $('#baseduh').masonry(),
  702. $('.masonryWrap').infinitescroll({
  703. navSelector : ".omdg",
  704. nextSelector : "#page a#p",
  705. itemSelector : ".omdg",
  706. bufferPx : 10000,
  707. extraScrollPx: 10000,
  708. loadingImg : "",
  709. loadingText : "",
  710. },
  711. function() { $('#baseduh').masonry({ appendedContent: $(this) }); }
  712. );
  713. });
  714. </script>
  715.  
  716.  
  717.  
  718. <body>
  719.  
  720.  
  721. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  722. <!--------------------play aqui embaixo---♥------------>
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729. <div id="bitch4"></div>
  730. <div id="bitch5"></div><div id="estela2"></div>
  731. <div id="estela1"></div> </div><div id="barbie-"><div id="wobble">{text:frase2}</div></div></div><div id="dj2"></div> <div id="dj4">◤</div>
  732. <div class="duhimag3" class="hover">
  733.  
  734. <img class="duh" src="{image:fotodr}" title="baby im sure duh"></div></div>
  735. </div></div>
  736. <div id="duka">{text:frase}</font></div>
  737. <div class="notinholaduda">{Description}</div>
  738.  
  739.  
  740.  
  741. <div id="menutt">
  742.  
  743. <a href="{text:link8}">{text:link8 title}</a>
  744.  
  745.  
  746. </div>
  747.  
  748. </div>
  749. </div>
  750.  
  751. <div id="links">
  752. <a href="{text:Link1}" title=""class="dcontexto"><img src="http://static.tumblr.com/yhfuno6/Pnimeh2pu/in__cio.png"><span>{text:Link1 Title}</span></div></a>
  753.  
  754. <div id="links2">
  755. <a href="{text:Link2}" title="" class="dcontexto"><img src="http://static.tumblr.com/yhfuno6/Vfumeh2xa/message2.png"><span>{text:Link2 Title}</span></div></a>
  756.  
  757.  
  758. <div id="linksx">
  759. <a href="{text:link3}"class="dcontexto"><img src="http://static.tumblr.com/yhfuno6/kmfmeh71p/heart2.png"><span>{text:link3 title}</span></div></a>
  760.  
  761. <div id="menu">
  762. <a href="{text:link4}">{text:link4 title}</a>
  763.  
  764.  
  765.  
  766. </a></div>
  767.  
  768. </div>
  769. </div>
  770.  
  771. <div id="menu2">
  772. <a href="{text:link5}">{text:link5 title}</a>
  773. <a href="{text:link6}">{text:link6 title}</a>
  774. <a href="{text:link7}">{text:link7 title}</a>
  775.  
  776. </a></div>
  777.  
  778. </div>
  779. </div>
  780.  
  781. <!-------------PAGINATION-----------♥---------->
  782.  
  783. <div class="ps"><div id="paginal">
  784. {block:JumpPagination length="5"}
  785. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  786. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  787. {/block:JumpPagination}
  788. </div></div>
  789.  
  790.  
  791. <!-------------CRÉDITOS-----------------♥------------->
  792. <div style="margin-left:52px;-webkit-border-radius: 5px 5px 5px 5px;-webkit-transform: rotate(0deg); width:120px;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 + dtlhs por superar-r and vasculhos not copie"><small>All Themes by OMDG </small></a>
  793. <font color="{color:tags}">©</font> </a></div>
  794.  
  795.  
  796. <!--------------BASE DUH-------------------♥---------->
  797.  
  798. <div id="baseduh">
  799.  
  800. {block:Posts}
  801. <div class="omdg">
  802.  
  803.  
  804.  
  805.  
  806. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  807.  
  808. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  809.  
  810. {block:Photoset}{Photoset-250}{/block:Photoset}
  811.  
  812.  
  813. {block:Quote}
  814. <div class="quote">“{Quote}”</div>
  815. {block:Source}<div class="taysource"> — {Source}</div>
  816. {/block:Source}
  817. {/block:Quote}
  818.  
  819. {block:Link}
  820. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  821. {block:Description}{Description}{/block:Description}
  822. {/block:Link}
  823.  
  824.  
  825. <!———————-CHAT—♥————————>
  826.  
  827. {block:Chat}<div class="caixa">
  828.  
  829. {block:Lines}
  830.  
  831. <div class="chat">
  832.  
  833. <div class="RH">{block:Label}
  834.  
  835. <span>{Label}</span>
  836.  
  837. {/block:Label}
  838.  
  839. {Line}</div></div>
  840.  
  841. {/block:Lines}
  842.  
  843. {block:IndexPage}
  844.  
  845. <center><div class="OMDG">
  846.  
  847. </div></center>
  848.  
  849. {/block:IndexPage}
  850.  
  851. </div>{block:Chat}
  852.  
  853.  
  854. {block:Audio}
  855. <div class="player">{AudioPlayerBlack}</div>
  856. {block:Caption}{Caption}{/block:Caption}
  857. {/block:Audio}
  858.  
  859. {block:Video}{Video-500}{/block:Video}
  860.  
  861.  
  862. {block:Answer}
  863.  
  864. <div style="padding: 4px;">
  865.  
  866. <div class="asker">{asker} sussurrou: <div align="left"><img src="{AskerPortraitURL-48}" align="left" />{Question}<br/></div></div> <div align="left"> {Answer}</div>
  867. </div>
  868.  
  869. {/block:Answer}
  870.  
  871.  
  872. <!-----------BASE DUH 2 E 3 ----------♥------------>
  873.  
  874. <div id="cap">
  875. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  876. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  877. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  878.  
  879. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  880. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  881. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  882. {/block:ContentSource}</div></div>
  883. <br>
  884.  
  885. <div class="baseduh3">
  886. {block:Date}<div id="baseduh2">
  887. <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>
  888. </div>
  889.  
  890.  
  891. {/block:Posts}
  892. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901. </div>
  902. </div>
  903. </div>
  904. </div>
  905. </div>
  906. </div>
  907. </div>
  908. </div>
  909. </div>
  910.  
  911. </div>
  912. </div>
  913. </div>
  914. </div>
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921. </body>
  922.  
  923. </html>
Advertisement
Add Comment
Please, Sign In to add comment