Eduarda

theme 105

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