Eduarda

Theme 83

Nov 22nd, 2012
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.83 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 se eu pegar algo tiro da minha página de themes.
  8.  
  9. Tutoriais por TTHF + MG estilo de notes por hugm-e detalhes de links por f-frenetico créditar a eles por favor.
  10. - - - - - - - - - - - - - -
  11. - THEME FEITO POR DUDA.R -
  12. - - - - - - - - - - - - - - ------------♥ ---->
  13.  
  14. <script type="text/javascript">
  15. //desabilita menu de opcoes ao clicar no botao direito
  16. function desabilitaMenu(e)
  17. {
  18. if (window.Event)
  19. {
  20. if (e.which == 2 || e.which == 3)
  21. return false;
  22. }
  23. else
  24. {
  25. event.cancelBubble = true
  26. event.returnValue = false;
  27. return false;
  28. }
  29. }
  30.  
  31. //desabilita botao direito
  32. function desabilitaBotaoDireito(e)
  33. {
  34. if (window.Event)
  35. {
  36. if (e.which == 2 || e.which == 3)
  37. return false;
  38. }
  39. else
  40. if (event.button == 2 || event.button == 3)
  41. {
  42. event.cancelBubble = true
  43. event.returnValue = false;
  44. return false;
  45. }
  46. }
  47.  
  48. //desabilita botao direito do mouse
  49. if ( window.Event )
  50. document.captureEvents(Event.MOUSEUP);
  51. if ( document.layers )
  52. document.captureEvents(Event.MOUSEDOWN);
  53.  
  54. document.oncontextmenu = desabilitaMenu;
  55. document.onmousedown = desabilitaBotaoDireito;
  56. document.onmouseup = desabilitaBotaoDireito;
  57. </script>
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65. <script type="text/javascript">
  66.  
  67.  
  68. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  69.  
  70.  
  71.  
  72.  
  73. function tb8_makeArray(n){
  74.  
  75.  
  76. this.length = n;
  77.  
  78.  
  79. return this.length;
  80.  
  81.  
  82. }
  83.  
  84.  
  85.  
  86.  
  87. tb8_messages = new tb8_makeArray(1);
  88.  
  89.  
  90.  
  91.  
  92. tb8_messages[0] = "{Title}";
  93.  
  94.  
  95.  
  96.  
  97. tb8_rptType = 'infinite';
  98.  
  99.  
  100.  
  101.  
  102. tb8_rptNbr = 5;
  103.  
  104.  
  105.  
  106.  
  107. tb8_speed = 100;
  108.  
  109.  
  110.  
  111.  
  112. tb8_delay = 2000;
  113.  
  114.  
  115.  
  116.  
  117. var tb8_counter=1;
  118.  
  119.  
  120.  
  121.  
  122. var tb8_currMsg=0;
  123.  
  124.  
  125.  
  126.  
  127. var tb8_tekst ="";
  128.  
  129.  
  130.  
  131.  
  132. var tb8_i=0;
  133.  
  134.  
  135.  
  136.  
  137. var tb8_TID = null;
  138.  
  139.  
  140.  
  141.  
  142. function tb8_pisi(){
  143.  
  144.  
  145.  
  146.  
  147. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  148.  
  149.  
  150.  
  151.  
  152. document.title = tb8_tekst;
  153.  
  154.  
  155.  
  156.  
  157. tb8_sp=tb8_speed;
  158.  
  159.  
  160.  
  161.  
  162. tb8_i++;
  163.  
  164.  
  165.  
  166.  
  167. if (tb8_i==tb8_messages[tb8_currMsg].length){
  168.  
  169.  
  170.  
  171.  
  172. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  173.  
  174.  
  175.  
  176.  
  177. }
  178.  
  179.  
  180.  
  181.  
  182. if (tb8_currMsg == tb8_messages.length){
  183.  
  184.  
  185.  
  186.  
  187. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  188.  
  189.  
  190.  
  191.  
  192. clearTimeout(tb8_TID);
  193.  
  194.  
  195.  
  196.  
  197. return;
  198.  
  199.  
  200.  
  201.  
  202. }
  203.  
  204.  
  205.  
  206.  
  207. tb8_counter++;
  208.  
  209.  
  210.  
  211.  
  212. tb8_currMsg = 0;
  213.  
  214.  
  215. }
  216.  
  217.  
  218.  
  219.  
  220. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  221.  
  222.  
  223.  
  224.  
  225. }
  226.  
  227.  
  228.  
  229.  
  230. tb8_pisi()
  231.  
  232.  
  233.  
  234.  
  235. </script>
  236.  
  237.  
  238. <script>
  239.  
  240.  
  241.  
  242. $(document).ready(function() {
  243.  
  244. //
  245.  
  246.  
  247.  
  248. //When you click on a link with class of poplight and the href starts with a #
  249.  
  250. $('a.poplight[href^=#]').click(function() {
  251.  
  252. var popID = $(this).attr('rel'); //Get Popup Name
  253.  
  254. var popURL = $(this).attr('href'); //Get Popup href to define size
  255.  
  256.  
  257.  
  258. //Pull Query & Variables from href URL
  259.  
  260. var query= popURL.split('?');
  261.  
  262. var dim= query[1].split('&');
  263.  
  264. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  265.  
  266.  
  267.  
  268. //Fade in the Popup and add close button
  269.  
  270. $('#' + 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="theme by [omdg]" alt="Close" /></a>');
  271.  
  272.  
  273. //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
  274.  
  275. var popMargTop = ($('#' + popID).height() + 80) / 2;
  276.  
  277. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  278.  
  279.  
  280.  
  281. //Apply Margin to Popup
  282.  
  283. $('#' + popID).css({
  284.  
  285. 'margin-top' : -popMargTop,
  286.  
  287. 'margin-left' : -popMargLeft
  288.  
  289. });
  290.  
  291.  
  292.  
  293. //Fade in Background
  294.  
  295. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  296.  
  297. $('#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
  298.  
  299.  
  300.  
  301. return false;
  302.  
  303. });
  304.  
  305.  
  306.  
  307. //Close Popups and Fade Layer
  308.  
  309. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  310.  
  311. $('#fade , .popup_block').fadeOut(function() {
  312.  
  313. $('#fade, a.close').remove(); //fade them both out
  314.  
  315. });
  316.  
  317. return false;
  318.  
  319. });
  320.  
  321.  
  322.  
  323.  
  324.  
  325. });
  326.  
  327. </script>
  328.  
  329.  
  330.  
  331.  
  332. <head>
  333.  
  334.  
  335.  
  336. <!-- APPERENCE OMDG -->
  337. <meta name="image:background" content="http://static.tumblr.com/2bh9bxo/BaImdv219/background-duda.png" />
  338. <meta name="image:fotodr" content="http://static.tumblr.com/2bh9bxo/Gzomdv2nc/tumblr_mdsyn0kzrp1rnj43qo1_500.jpg" />
  339. <meta name="text:frase1" content="Sou sua pequena" />
  340. <meta name="text:frase2" content="sua pequena menina" />
  341.  
  342. <meta name="color:background" content="#F5F5F5" />
  343. <meta name="color:link" content="#CDC9C9" />
  344. <meta name="color:text" content="#CDC9C9" />
  345. <meta name="color:bghover" content="#fff" />
  346. <meta name="color:linkshover" content="#FFC0CB" />
  347. <meta name="color:links" content="#fff" />
  348. <meta name="color:text desc" content="#CDC9C9" />
  349. <meta name="color:borda" content="#CDC9C9" />
  350. <meta name="color:borda2" content="#FFC0CB" />
  351. <meta name="color:bordaimg" content="#CDC9C9" />
  352. <meta name="color:abc" content="#FFC0CB" />
  353. <meta name="color:italico" content="#CDC9C9" />
  354. <meta name="color:linhadopost" content="#CDC9C9" />
  355. <meta name="color:post" content="#fff" />
  356. <meta name="color:sidebar" content="#fff" />
  357. <meta name="color:scrollbar" content="#fff" />
  358. <meta name="color:frase" content="#CDC9C9" />
  359. <meta name="color:tags" content="#FFC0CB" />
  360. <meta name="color:sombra" content="#8B8989" />
  361. <meta name="color:coracao1" content="#FFC0CB" />
  362. <meta name="color:coracao2" content="#EE82EE" />
  363. <meta name="color:bgask" content="#F5F5F5" />
  364. <meta name="if:Show tags" content="1"/>
  365.  
  366. <meta name="text:Link1" content="/" />
  367. <meta name="text:Link1 Title" content="Home" />
  368. <meta name="text:Link2" content="/ask" />
  369. <meta name="text:Link2 Title" content="ask" />
  370. <meta name="text:Link3" content="/" />
  371. <meta name="text:Link3 Title" content="link3" />
  372. <meta name="text:Link4" content="/" />
  373. <meta name="text:Link4 Title" content="link4" />
  374. <meta name="text:Link5" content="/" />
  375. <meta name="text:Link5 Title" content="link5" />
  376. <meta name="text:Link6" content="/" />
  377. <meta name="text:Link6 Title" content="link6" />
  378. <meta name="text:Link7" content="/" />
  379. <meta name="text:Link7 Title" content="link7" />
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387. <title>{Title}</title>
  388. <link rel="shortcut icon" href="{Favicon}">
  389. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  390. {block:Description}
  391. <meta name="description" content="{MetaDescription}" />
  392. {/block:Description}
  393.  
  394.  
  395.  
  396.  
  397. <!----------------FONTES-------♥-------->
  398. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  399. <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'>
  400. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  401.  
  402. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  403.  
  404. <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
  405. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  406. <link href="http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,400,700t" rel="stylesheet" type="text/css">
  407.  
  408. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  409.  
  410.  
  411. <link href='http://fonts.googleapis.com/css?family=Ruge+Boogie' rel='stylesheet' type='text/css'>
  412.  
  413. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  414.  
  415. <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'>
  416.  
  417. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  418. <link href='http://fonts.googleapis.com/css?family=Raleway+Dots' rel='stylesheet' type='text/css'>
  419. <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'>
  420.  
  421. <link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic' rel='stylesheet' type='text/css'>
  422. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  423.  
  424. <style type="text/css">
  425.  
  426.  
  427.  
  428. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 10px; background-image:url('{image:background}'); background-attachment: fixed; }
  429.  
  430. a {color: {color:link}; text-decoration: none; text-transform: none;}
  431. a:hover {color: {color:lhover}; background-color: transparent; text-decoration: none;}
  432.  
  433.  
  434. p {margin: 6px 0 0 0}
  435.  
  436. blockquote {margin: 5px 5px 5px 5px; border-left: 1px solid {color:background}; padding-left: 5px; }
  437. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background};}
  438. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 1px solid {color:background}; }
  439. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  440.  
  441.  
  442. blockquote img{max-width: 470px!important}
  443. blockquote blockquote img{max-width: 450px!important}
  444. blockquote blockquote blockquote img{max-width: 430px!important}
  445. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  446.  
  447.  
  448. #container {background-color: ; width: 1000px; margin: 0 auto 10px auto; background: {color:background}}
  449.  
  450. /***********-------------BASE DUH------------♥************************/
  451. #baseduh {margin-left: 392px; width: 700px; margin-top: 0px}
  452.  
  453. .omdg {{block:IndexPage}width: 280px;
  454. background-color:{color:post} ; text-align: justify;
  455. padding: 9px; float: left;
  456. margin: 4px 0 0 4px;{/block:IndexPage}{block:PermalinkPage}
  457. padding:10px; width:300px; margin-top: 8px; height:auto;
  458. background-color: {color:post};
  459. text-align: left; margin-left:7px;
  460. {/block:PermalinkPage}}
  461.  
  462. .omdg img{width: 278px; padding: 3px;
  463. border: 1px solid {Color:background}}
  464.  
  465. .omdg:hover #baseduh2 {opacity: 1;}
  466.  
  467.  
  468. h1 {font-family:Delius Swash Caps; text-align: center; font-size: 14px; color: {color:text}; font-weight: normal; line-height: 14px;}
  469. h1 a {text-align: center; font-size: 13px;color: {color:text}; font-weight: normal; line-height: 14px;}
  470. h1 a:hover {text-align: center; font-size: 13px; color: {color:text}; font-weight: normal; line-height: 14px;}
  471. .image {text-align: center; width: 272px; border: 0px}
  472. .image img {max-width: 272px; margin-bottom: 2px }
  473.  
  474. .duggs {font-size: 12px; font-family: cambria; letter-spacing: 0px; line-height: 13px; text-transform: none;text-align: center; font-style: none; margin-top:-65px; margin-bottom: 2px;color:{color:text}}
  475. .queroaspas{ position:relative; top: -20px; font-size: 60px; opacity:0.2; filter: alpha(opacity = 10); color: #fff;}
  476.  
  477. .dolls {margin-bottom: 8px; }
  478.  
  479. /* Chat por Anna (livelikeasuicide) *********/
  480. .chat {background:{color:posts}; margin: 0; font-size:
  481.  
  482. 10px; font-family: trebuchet ms;}
  483. .chat .chat1 {margin-left: 0px;font-size:
  484. 8px; }
  485. .chat .chat1 .chat2 {font-weight: bold; background:{color:posts}; color:{color:text};font-size: 10px; border:1px solid {color:background};
  486. margin-bottom: 1px; padding: 4px 5px 4px 5px; font-family: trebuchet ms;} /* Primeira linha */
  487. .chat .chat1 .chat2.even {background:{color:background};
  488. color:{color:text};font-size:
  489. 9px;font-weight: bold; } /* Segunda linha */
  490. .chat .chat1 .chat2 span{font-weight: bold; }
  491.  
  492.  
  493.  
  494. .chat {line-height: 13px; list-style: none }
  495. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  496. .person1 {color: {color:text}; padding: 2px; }
  497. .person1 .label {font-weight: bold; color:{color:text}}
  498. .person2 {color: {color:text}; padding: 2px; }
  499. .person2 .label {font-weight: bold; color:{color:text}}
  500.  
  501. .player {background-color: #000; text-align: left; display:block;}
  502.  
  503.  
  504. .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;}
  505.  
  506. .questionarrow {font-size:30px;color:{color:bgask};vertical-align:middle;margin-left:-5px!important;}
  507.  
  508.  
  509. .asker {width:280px; text-align:right; text-transform:lowercase; color:{color:text};}
  510. .asker a {color:{color:text};}
  511. .asker img {float:left; margin-left:400px; vertical-align:top; margin-right:3px; max-height:15px;}
  512.  
  513. .asking {text-align:center; color:{color:text}; font:9px verdana; text-transform:none;}
  514. .asking a{color:{color:text};}
  515. .asking img {width:58px; vertical-align:middle; background-color:{color:background}; padding:3px;}
  516.  
  517. .arrow {padding-top:11px; color:{color:question background}; font-size:30px;}
  518.  
  519.  
  520. .answer {color:{color:answer};}
  521.  
  522. /***********BASE DUH 3 E 2 [NOTES E SOUCE]-------♥*****/
  523.  
  524. .baseduh3 {opacity:; -webkit-transition: all 0.6s ease-out;
  525. -moz-transition: all 0.6s ease-out;
  526. border-top: solid 1px {color:linhadopost};
  527. border-bottom: solid 0px {color:text};letter-spacing: 1px}
  528. .baseduh3:hover {opacity: 0.9;
  529. -webkit-transition: all 0.9s ease-out;
  530. -moz-transition: all 0.9s ease-out;letter-spacing: 1px}
  531.  
  532. #baseduh2 {text-align: left; margin-top:6px;
  533. font-size: 11px; font-family: Ubuntu Mono;
  534. z-index: 11;}
  535. #baseduh2 a {font-size: 10px; color:{color:link};}
  536.  
  537. #tags {color: {color:text}; font-size: 9px; font-family: calibri; display: inline; list-style: none; text-transform: none; color:{color:text};}
  538. #tags a {font-size: 10px; font-family: Ubuntu Mono; display: inline; list-style: none; text-transform: none; color:{color:text};}
  539.  
  540. #cap {width: 280px; margin-top: -2px;}
  541. .source {display: none;}
  542.  
  543. .notes {width: 250px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: center}
  544. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  545. ol.notes li {background-color: {color:post}; margin-bottom: 2px; padding: 5px; }
  546. .notes img{display: none; border:0px}
  547.  
  548. #duggs2 {position: fixed; margin: 0px 0px 0px -500px;}
  549.  
  550. /***--------------SELEÇÃO COLORIDA---------♥---------***/
  551. ::selection{background: {color:linha2}; color: {color:borda}da fonte;}
  552. ::-moz-selection{background: {color:linha2}; color:{color:borda} da fonte;}
  553.  
  554. /***--- SCROLLBAR---♥----***/
  555.  
  556. ::-webkit-scrollbar-thumb:vertical {background-color:{color:borda2};height:50px; border:5px solid {color:scrollbar};}
  557.  
  558. ::-webkit-scrollbar-button:vertical {height:8px;display: block; background:{color:borda2};}
  559.  
  560.  
  561. ::-webkit-scrollbar {height:0px;width:12px;background-color:{color:scrollbar};}
  562.  
  563. /****----------------EFEITINHO--------------♥------*****/
  564. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  565. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  566. 3
  567.  
  568. /***-----------NEGRITO ITALICO E SUBLINHADO-----♥---***/
  569. b, strong, bold {color:{color:abc};}
  570.  
  571. u,underline {color:{color:text}; border-bottom: 1px dotted {color:italico}; text-decoration:none; }
  572.  
  573. i, em{color:{color:text};}
  574.  
  575. /***------------- DUH IMAGEM-------------♥---------***/
  576.  
  577. #duhimg {margin-left: 113px;
  578. margin-top: 95px;
  579. position:fixed;
  580. overflow:hidden;
  581. opacity: 0.9;}
  582.  
  583. #duhimg img{ border:2px solid {color:bordaimg};
  584. opacity: 1;padding:5px;
  585. width: 241px;
  586. height:245px;-webkit-transition: all 0.4s ease-out;
  587. -moz-transition: all 0.4s ease-out;}
  588. #duhimg img:hover { margin-bottom: 2px;
  589. -webkit-transition: all 0.4s ease-out;
  590. -moz-transition: all 0.4s ease-out; opacity: 10; filter:alpha (opacity=50);-webkit-border-radius: 20px 0px 20px 0px;background:{color:borda2}; }
  591.  
  592.  
  593. /***----------- A PARTE DA SID---------♥------***/
  594.  
  595. #estela1 {position: fixed; margin-left: 102px; width:276px; height: 380px; background-color:{color:sidebar}; margin-top: 60px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px; -webkit-transform: rotate(0deg);}
  596.  
  597.  
  598.  
  599. /***-------------TITULOS---------------♥---------***/
  600. #duka {background-color:#;margin-left:120px;margin-top: 64px; height:24px; line-height:25px;float:left; position:fixed; width:230px; font-family: 'Rochester'; font-size:24px; text-align: left;
  601. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none;text-shadow: 3px 3px 9px {color:sombra};}
  602. .dukah1 {font-family:'Dancing Script'; font-size: 15px; font-style: none;
  603. height: 10px;color: {color:frase}; margin-left:161px;margin-top:385px; text-transform: none; letter-spacing: 0px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:174px;z-index:8000000000000000;line-height:17px;}
  604.  
  605. /***----------CORAÇÃOZINHO OWNT [OMDG]--------♥-----***/
  606. #duca {margin-top:66px;
  607. line-height:2px;
  608. background-color:duggs;
  609. margin-left: 338px;
  610. overflow: hidden;
  611. position: fixed;
  612. color: {color:coracao1};
  613. padding: 10px;
  614. background-attachment: fixed;
  615. width:1px;
  616. height: 0px;
  617. -webkit-transition: all .5s ease-out;
  618. -moz-transition: all .5s ease-out;
  619. text-transform: uppercase;
  620. -webkit-transform: rotate(-16deg); z-index: 8000000;}
  621.  
  622. #duca1 {font-size: 17px;
  623. font-family:sofia ;
  624. letter-spacing: -1px;
  625. text-transform: none;
  626. line-height: 3px;}
  627.  
  628.  
  629. #duca2 { margin-top:61px;
  630. line-height:2px;
  631. background-color:duggs;
  632. margin-left: 345px;
  633. overflow: hidden;
  634. position: fixed;
  635. color:{color:coracao2};
  636. padding: 10px;
  637. background-attachment: fixed;
  638. width:12px; height: 0px;
  639. -webkit-transition: all .5s ease-out;
  640. -moz-transition: all .5s ease-out;
  641. text-transform: uppercase;
  642. -webkit-transform: rotate(24deg); z-index: 8000000;
  643. }
  644.  
  645. #duca3 {font-size: 20px;
  646. font-family:sofia ;
  647. letter-spacing: -1px;
  648. text-transform: none;
  649. line-height: 3px;}
  650.  
  651.  
  652. /******----------------DESCRIÇÃO--------♥--------******/
  653. #notinholaduda {margin-left: 140px; margin-top: 395px; width:190px; font-size: 11px; height: 28px; text-align: center; transparent; font-family:Ubuntu Mono; color: {color:text desc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  654. -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};}
  655.  
  656. /***-------LINK'S [OMDG]--------------♥--------***/
  657.  
  658. #dugg1 {width: 24px; position: fixed; font-size: 9px; font-family: tahoma; padding: 5px; height: 22px; line-height: 10px; margin-left: 125px; z-index: 1; margin-top:360px; z-index: 1; opacity:0.8;-webkit-border-radius: 0px 0px 0px 0px;border-bottom: 1px solid {color:borda};border-top: 1px solid {color:borda};}
  659.  
  660. #dugg2 {width: 24px; position: fixed; font-size: 9px; font-family: tahoma; padding: 5px; height: 22px; line-height: 10px; margin-left: 325px; z-index: 1; margin-top:360px; z-index: 1; opacity:0.8;-webkit-border-radius: 0px 0px 0px 0px;border-bottom: 1px solid {color:borda};border-top: 1px solid {color:borda};}
  661.  
  662. #pqpduh {width:78px; height: 35px; float: left; margin-left:165px; margin-top: 365px; padding: 0px; text-align: center; position: fixed; z-index:80000000;}
  663. #pqpduh a {display: inline-block;float: left; margin-left: 1px; font-family: calibri; font-size: 9px;letter-spacing:0px; text-align: center; margin-top: 2px; height: 16px; width: 150px; color:{color:links}; line-height: 15px; text-transform: uppercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color: {color:linkshover}; border-bottom: 1px solid {color:borda};border-top: 1px solid {color:borda};}
  664.  
  665. #pqpduh a:hover{color:{color:link};opacity: 0.8; -webkit-transition-duration: 1.5s; -moz-transition-duration:1.5s;text-transform:uppercase; }
  666.  
  667. /***------LINK'S AQUI POR F-FRENETICO FAVOR CRÉDITAR A ELE----♥***/
  668. #lipinho{position:fixed;
  669. width:100px;
  670. padding:5px;
  671. top:190px;
  672. left:95px;
  673. letter-spacing:0px;
  674. -webkit-transition: opacity 0.7s linear;opacity: 0.7s; -webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;transition: all 0.6s ease-out; border:3px solid {color:sidebar};background:#omdg;height:80px;}
  675.  
  676. #lipinho:hover{
  677. position:fixed;
  678. padding:5px;
  679. left:25px;
  680. letter-spacing:0px;
  681. -webkit-transition: opacity 0.7s linear;opacity: 0.7s;-webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;transition: all 0.6s ease-out;background:{color:sidebar};border:2px dotted {color:borda2};-webkit-border-radius: 500px 0px 0px 500px;}
  682.  
  683. #lipe {}
  684.  
  685. #lipe a {display: inline-block; color:{color:link}; width:60px;
  686. background-color:#no; font-family:calibri; font-size:9px; text-transform:uppercase;;text-align:center;;border:1px no {color:borda2};height:10px;}
  687.  
  688. #lipe a:hover {color:{color:link}; border-right:2px solid {color:borda2}; border-left:2px solid {color:borda2}; -webkit-transition: opacity 0.3s linear;opacity: 0.3s;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out; font-style:normal; background-color:{color:bghover};color:{color:borda2};}
  689.  
  690.  
  691. /***--------TUMBLR CONTROLS---------♥------***/
  692.  
  693. #tumblr_controls{position: fixed!important}
  694.  
  695. #tumblr_controls{position: fixed!important}
  696.  
  697. #tumblr_controls{position: fixed!important}
  698.  
  699. #tumblr_controls{position: fixed!important}
  700.  
  701.  
  702. #page {position: fixed; margin-left:277px; margin-top: 449px; font-size: 30px; font-family: verdana; z-index:100; border-bottom:1px ;text-shadow: 1px 1px 1px #828282;font-style:none;z-index:100}
  703. #page a {color:{color:link}}
  704. #page a:hover {color:{color:linha2};}
  705.  
  706. #pag {position: fixed; margin-left: 235px; margin-top: 445px; font-size: 36px; font-family: verdana; z-index:100; border-bottom:1px ;text-shadow: 1px 1px 1px #828282;font-style:none;}
  707. #pag a {color:{color:link}}
  708. #pag a:hover {color:{color:linha2};}
  709.  
  710. </style>
  711. <script type='text/javascript' src='http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js'></script>
  712.  
  713. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  714. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  715. <script type="text/javascript">
  716. $(window).load(function () {
  717. $('#baseduh').masonry(),
  718. $('.masonryWrap').infinitescroll({
  719. navSelector : ".omdg",
  720. nextSelector : "#page a#p",
  721. itemSelector : ".omdg",
  722. bufferPx : 10000,
  723. extraScrollPx: 10000,
  724. loadingImg : "",
  725. loadingText : "",
  726. },
  727. function() { $('#baseduh').masonry({ appendedContent: $(this) }); }
  728. );
  729. });
  730. </script>
  731.  
  732.  
  733.  
  734. <body oncontextmenu="return false" onselectstart="return false" onmousedown="return false" onkeydown="return false">
  735.  
  736.  
  737. <!---------------------EPA NÃO MEXA AQUI----♥---------->
  738. <!--------------------play aqui embaixo---♥------------>
  739.  
  740. <div id="lipinho">
  741. <div id="lipe">
  742. <a href="{text:Link3}">{text:Link3 Title}</a>
  743. <a href="{text:Link4}">{text:Link4 Title}</a>
  744. <a href="{text:Link5}">{text:Link5 Title}</a>
  745.  
  746. <a href="{text:Link6}">{text:Link6 Title}</a>
  747. </div></div>
  748.  
  749.  
  750.  
  751. <div id="estela1"></div>
  752. <div id="duca"><div id="duca1">♥</div></div></div></div></div>
  753. <div id="duca2"><div id="duca3">♥</div></div></div></div></div>
  754.  
  755.  
  756.  
  757. <div id="duhimg" ><img src="{image:fotodr}"></div>
  758.  
  759. </div></div>
  760.  
  761.  
  762. </div></div>
  763. </div></div></div></div>
  764.  
  765. </div></div>
  766.  
  767. <div id="duka">{text:frase2}</div>
  768. <center><div class="dukah1">{text:frase1}</center></div></center>
  769.  
  770.  
  771. <div id="notinholaduda">{Description}</div>
  772.  
  773. <div id="pqpduh">
  774.  
  775.  
  776. <a href="{text:Link7}">{text:Link7 Title}</a>
  777.  
  778.  
  779. </div class>
  780. </div></div>
  781. </div>
  782. </div>
  783.  
  784.  
  785. <div id="dugg2">
  786. <a href="{text:Link2}"><img src="http://static.tumblr.com/ejm8w78/w3Qlz2pzs/email.png" width=15px">{text:Link2 Title}</a></div>
  787.  
  788. <div id="dugg1"><a href="{text:Link1}"><img src="http://static.tumblr.com/ejm8w78/lhflz2pxj/home.png" width=16px">{text:Link1 Title}</a></div>
  789.  
  790.  
  791. <!-------------PAGINATION-----------♥---------->
  792. <div id="pag">{block:NextPage}<a href="{NextPage}">+ </a>{/block:NextPage}</div>
  793.  
  794. <div id="page">{block:PreviousPage}<a href="{PreviousPage}">-</a>{/block:PreviousPage}</div></div>
  795. </div>
  796. </div>
  797.  
  798.  
  799. <!-------------CRÉDITOS-----------------♥------------->
  800. <div style="margin-left:42px;-webkit-border-radius: 20px 0px 20px 0px;-webkit-transform: rotate(0deg); width:80px;background:{color:sidebar};font-family:tahoma;font-size:11px;opacity:0.6; 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 + detalhes por f-frenetico,estilo de notes por hugm-e"><small>THEME </small></a>
  801. <font color="{color:tags}">©</font> </a></div>
  802.  
  803.  
  804. <!--------------BASE DUH-------------------♥---------->
  805.  
  806. <div id="baseduh">
  807.  
  808. {block:Posts}
  809. <div class="omdg">
  810.  
  811. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  812.  
  813. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  814.  
  815. {block:Photoset}{Photoset-250}{/block:Photoset}
  816.  
  817. {block:Quote}<span class="queroaspas">&#10077;</span><div class="duggs">{Quote}</div> <center><font color="{color:tags}"><div class="dolls">~ {Source}</div></center></font>{/block:Quote}
  818. {/block:Quote}
  819.  
  820. {block:Link}
  821. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  822. {block:Description}{Description}{/block:Description}
  823. {/block:Link}
  824.  
  825.  
  826. {block:Chat}
  827. <div class="chat">
  828. <div class="chat1">
  829. {block:Lines}
  830. <div class="chat2 {Alt}">
  831. {block:Label}
  832. <span>{Label}</span>
  833. {/block:Label}
  834. {Line}</div>
  835. {/block:Lines}
  836. </div>
  837. </div>
  838. {/block:Chat}
  839.  
  840.  
  841. {block:Audio}
  842. <div class="player">{AudioPlayerBlack}</div>
  843. {block:Caption}{Caption}{/block:Caption}
  844. {/block:Audio}
  845.  
  846. {block:Video}{Video-500}{/block:Video}
  847.  
  848.  
  849. {block:Answer}
  850. <table width="280px" cellspacing="0" cellpadding="0">
  851. <tr>
  852. <td width="415px" class="question">{Question}</td>
  853. <td width="30px"><span class="questionarrow">◤</span></td>
  854. <td width="64px" class="asking"><img src="{AskerPortraitURL-64}"><br>{Asker}</td>
  855. </tr>
  856. </table>
  857. <div class="answer">{Answer}</div>
  858. {/block:answer}
  859.  
  860.  
  861. <!-----------BASE DUH 2 E 3 ----------♥------------>
  862.  
  863. <div id="cap">
  864. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  865. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  866. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  867.  
  868. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  869. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  870. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  871. {/block:ContentSource}</div></div>
  872. <br>
  873.  
  874. <div class="baseduh3">
  875. {block:Date}<div id="baseduh2">
  876. <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>
  877. </div>
  878.  
  879.  
  880. {/block:Posts}
  881. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890. </div>
  891. </div>
  892. </div>
  893. </div>
  894. </div>
  895. </div>
  896. </div>
  897. </div>
  898. </div>
  899.  
  900. </div>
  901. </div>
  902. </div>
  903. </div>
  904. </body>
  905.  
  906. </html>
Advertisement
Add Comment
Please, Sign In to add comment