Eduarda

theme 80

Nov 15th, 2012
577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.12 KB | None | 0 0
  1. <html>
  2.  
  3. <!----
  4. 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.
  5.  
  6. - - - - - - - - - - - - - -
  7. - THEME FEITO POR DUDA.R -
  8. - - - - - - - - - - - - - - ---->
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. <script type="text/javascript">
  19.  
  20.  
  21. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  22.  
  23.  
  24.  
  25.  
  26. function tb8_makeArray(n){
  27.  
  28.  
  29. this.length = n;
  30.  
  31.  
  32. return this.length;
  33.  
  34.  
  35. }
  36.  
  37.  
  38.  
  39.  
  40. tb8_messages = new tb8_makeArray(1);
  41.  
  42.  
  43.  
  44.  
  45. tb8_messages[0] = "{Title}";
  46.  
  47.  
  48.  
  49.  
  50. tb8_rptType = 'infinite';
  51.  
  52.  
  53.  
  54.  
  55. tb8_rptNbr = 5;
  56.  
  57.  
  58.  
  59.  
  60. tb8_speed = 100;
  61.  
  62.  
  63.  
  64.  
  65. tb8_delay = 2000;
  66.  
  67.  
  68.  
  69.  
  70. var tb8_counter=1;
  71.  
  72.  
  73.  
  74.  
  75. var tb8_currMsg=0;
  76.  
  77.  
  78.  
  79.  
  80. var tb8_tekst ="";
  81.  
  82.  
  83.  
  84.  
  85. var tb8_i=0;
  86.  
  87.  
  88.  
  89.  
  90. var tb8_TID = null;
  91.  
  92.  
  93.  
  94.  
  95. function tb8_pisi(){
  96.  
  97.  
  98.  
  99.  
  100. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  101.  
  102.  
  103.  
  104.  
  105. document.title = tb8_tekst;
  106.  
  107.  
  108.  
  109.  
  110. tb8_sp=tb8_speed;
  111.  
  112.  
  113.  
  114.  
  115. tb8_i++;
  116.  
  117.  
  118.  
  119.  
  120. if (tb8_i==tb8_messages[tb8_currMsg].length){
  121.  
  122.  
  123.  
  124.  
  125. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  126.  
  127.  
  128.  
  129.  
  130. }
  131.  
  132.  
  133.  
  134.  
  135. if (tb8_currMsg == tb8_messages.length){
  136.  
  137.  
  138.  
  139.  
  140. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  141.  
  142.  
  143.  
  144.  
  145. clearTimeout(tb8_TID);
  146.  
  147.  
  148.  
  149.  
  150. return;
  151.  
  152.  
  153.  
  154.  
  155. }
  156.  
  157.  
  158.  
  159.  
  160. tb8_counter++;
  161.  
  162.  
  163.  
  164.  
  165. tb8_currMsg = 0;
  166.  
  167.  
  168. }
  169.  
  170.  
  171.  
  172.  
  173. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  174.  
  175.  
  176.  
  177.  
  178. }
  179.  
  180.  
  181.  
  182.  
  183. tb8_pisi()
  184.  
  185.  
  186.  
  187.  
  188. </script>
  189.  
  190.  
  191.  
  192. <head>
  193.  
  194.  
  195. <script type="text/javascript"
  196. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  197.  
  198. <script>
  199.  
  200.  
  201.  
  202. $(document).ready(function() {
  203.  
  204. //
  205.  
  206.  
  207.  
  208. //When you click on a link with class of poplight and the href starts with a #
  209.  
  210. $('a.poplight[href^=#]').click(function() {
  211.  
  212. var popID = $(this).attr('rel'); //Get Popup Name
  213.  
  214. var popURL = $(this).attr('href'); //Get Popup href to define size
  215.  
  216.  
  217.  
  218. //Pull Query & Variables from href URL
  219.  
  220. var query= popURL.split('?');
  221.  
  222. var dim= query[1].split('&');
  223.  
  224. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  225.  
  226.  
  227.  
  228. //Fade in the Popup and add close button
  229.  
  230. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/2bh9bxo/lqzmc8a3h/ddd.gif" class="btn_close" title="theme e base por [omdg]" alt="Close" /></a>');
  231.  
  232.  
  233. //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
  234.  
  235. var popMargTop = ($('#' + popID).height() + 80) / 2;
  236.  
  237. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  238.  
  239.  
  240.  
  241. //Apply Margin to Popup
  242.  
  243. $('#' + popID).css({
  244.  
  245. 'margin-top' : -popMargTop,
  246.  
  247. 'margin-left' : -popMargLeft
  248.  
  249. });
  250.  
  251.  
  252.  
  253. //Fade in Background
  254.  
  255. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  256.  
  257. $('#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
  258.  
  259.  
  260.  
  261. return false;
  262.  
  263. });
  264.  
  265.  
  266.  
  267. //Close Popups and Fade Layer
  268.  
  269. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  270.  
  271. $('#fade , .popup_block').fadeOut(function() {
  272.  
  273. $('#fade, a.close').remove(); //fade them both out
  274.  
  275. });
  276.  
  277. return false;
  278.  
  279. });
  280.  
  281.  
  282.  
  283.  
  284.  
  285. });
  286.  
  287. </script>
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295. <!-- APPERENCE OMDG -->
  296. <meta name="image:fotod" content="http://static.tumblr.com/2bh9bxo/OaJmdie9x/tumblr_mdi2pahqs21rit10do1_500.jpg" />
  297.  
  298. <meta name="image:background" content="http://static.tumblr.com/2bh9bxo/tyhmdjvva/bgdaduda.jpg" />
  299. <meta name="image:fudinho" content="http://static.tumblr.com/2bh9bxo/uzLmdie8z/blu.png" />
  300. <meta name="image:desc" content="http://static.tumblr.com/2bh9bxo/PkImdied9/fundinhoduh.png" />
  301.  
  302. <meta name="color:background" content="#000" />
  303. <meta name="color:sidebar" content="#000000" />
  304. <meta name="color:link" content="#CDC9C9" />
  305. <meta name="color:link hover" content="#000000" />
  306. <meta name="color:bordaimg" content="#000000" />
  307. <meta name="color:text" content="#CDC9C9" />
  308. <meta name="color:tags" content="#FFC0CB" />
  309. <meta name="color:post" content="#1C1C1C" />
  310. <meta name="color:borda" content="#000" />
  311. <meta name="color:links" content="#CDC9C9" />
  312. <meta name="color:bghover" content="#FFC0CB" />
  313. <meta name="color:sombra" content="#1C1C1C" />
  314. <meta name="color:textdesc" content="#8B8989" />
  315. <meta name="color:frase" content="#FFC0CB" />
  316. <meta name="color:bgask" content="#1C1C1C" />
  317. <meta name="color:borda2" content="#FFC0CB" />
  318. <meta name="color:linha" content="#000000" />
  319. <meta name="color:linha1" content="#FFC0CB" />
  320. <meta name="color:abc" content="#FFC0CB" />
  321.  
  322.  
  323. <meta name="text:frase" content="Forever Barbie"/>
  324. <meta name="text:Link1" content="/" />
  325. <meta name="text:Link1 Title" content="link" />
  326. <meta name="text:Link2" content="/" />
  327. <meta name="text:Link2 Title" content="link " />
  328. <meta name="text:Link3" content="/" />
  329. <meta name="text:Link3 Title" content="link " />
  330. <meta name="text:Link4" content="/" />
  331. <meta name="text:Link4 Title" content="link" />
  332. <meta name="text:Link5" content="/" />
  333. <meta name="text:Link5 Title" content="link" />
  334. <meta name="text:Link6" content="/" />
  335. <meta name="text:Link6 Title" content="link" />
  336.  
  337.  
  338. <!--------------------------FONTES-------------->
  339. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  340. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  341. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  342. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  343.  
  344. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/themeomdg" media="screen"/>
  345.  
  346.  
  347. <title>{Title}</title>
  348. <link rel="shortcut icon" href="{Favicon}">
  349. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  350. {block:Description}
  351. <meta name="description" content="{MetaDescription}" />
  352. {/block:Description}
  353.  
  354. <style type="text/css">
  355. body {background-color:{color:background}; font-family:verdana;color:{color:text}; text-align:center; font-size:09px; background-image:url('{image:background}'); background-attachment:fixed; }
  356.  
  357. iframe#tumblr_controls {right:3px !important;
  358. position: fixed !important;
  359. -webkit-transition: opacity 0.7s linear;
  360. opacity: 0.2;
  361. -webkit-transition: all 0.8s ease-out;
  362. -moz-transition: all 0.8s ease-out;
  363. transition: all 0.8s ease-out;}
  364. iframe#tumblr_controls:hover{
  365. -webkit-transition: opacity 0.7s linear;
  366. opacity: 1;
  367. -webkit-transition: all 0.4s ease-out;
  368. -moz-transition: all 0.4s ease-out;
  369. transition: all 0.4s ease-out;}
  370.  
  371.  
  372. a {color: {color:link}; text-decoration: none; text-transform: none;}
  373. a:hover {color: {color:link hover}; background-color: transparent; text-decoration: none;}
  374. p {margin: 6px 0 0 0}
  375.  
  376. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:linha}; padding-left: 5px; }
  377. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}/* theme by omdg*/
  378. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  379. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  380. blockquote img{max-width: 400px!important}
  381. blockquote blockquote img{max-width: 400px!important}
  382. blockquote blockquote blockquote img{max-width: 400px!important}
  383. blockquote blockquote blockquote blockquote img{max-width: 400px!important}
  384. /*theme by omdg*/
  385.  
  386.  
  387.  
  388. /*--------NEGRITO ITALICO E SUBLINHADO----------*/
  389. b, strong, bold {color:{color:abc};}
  390.  
  391. u,underline {color:{color:text}; border-bottom: 1px dotted {color:abc}; text-decoration:none; }
  392.  
  393. i, em{color:{color:text};}
  394.  
  395.  
  396. #etc {text-align:center;width:480px;margin:20px auto 20px auto;z-index:1;}
  397.  
  398. /***---------------------BASE DA DUDA------------- ***/
  399.  
  400. .omdg {width:480px; background-color:{color:post};
  401. padding:6px;text-align:left;
  402. font-family:Trebuchet MS;font-size:11px; margin-top:2px;overflow: hidden;}
  403.  
  404. #baseduh {float:left;width:480px;
  405. margin-left:455px;margin-top:15px;z-index:-9;}
  406.  
  407. h1 {font-family:Trebuchet MS;text-align:center;font-size:14px;color:{color:text}; font-weight: normal; line-height: 14px;}
  408. h1 a {text-align:center;font-size:14px;color: {color:text};font-weight:normal; line-height:14px;}
  409. h1 a:hover {text-align:center;font-size:14px; color:{color:text}; font-weight:normal; line-height:14px;}
  410.  
  411. .image {text-align:center;border:0px;}
  412. .image img {max-width:460px;margin-bottom:-1px; -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  413. .image img:hover {-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;-webkit-filter: grayscale(0.3);border: 3px solid {color:linha1};}
  414.  
  415. /*******************BASE DUH, NÃO MUDA ESSA PORRA DEU TRABALHO****/
  416. .baseduh1 {text-align:justify; cambria;
  417. background:{color:background};font-size: 11px;
  418. line-height:15px; padding:3px;margin-left:02px;
  419. border-bottom:1px solid {color:background};
  420. margin-bottom:3px; margin-top:-66px;}
  421. .baseduh2 {text-align: center; text-transform: none;
  422. margin-bottom:5px; font-size: 09px; font-weight: bold}
  423. .baseduh2 a, a:hover{text-transform: none;}
  424.  
  425. /***--------------QUOTES TAGS BOX CHAT E NOTES---------------***/
  426.  
  427.  
  428. #quote {position:relative; top:-22px;left:-3px;font-size:60px;opacity:0.3;}
  429.  
  430. .tags {color: {color:text};font-size:9px; font-family:calibri; display: inline; list-style: none; text-transform: uppercase; text-align:center;}
  431. .tags a {font-size: 9px; color: calibri; display: inline; list-style: none; text-transform: uppercase; text-align:center;border-bottom: 1px solid {color:borda};}
  432.  
  433. /* Chat por Anna (livelikeasuicide) *********/
  434. .chat {background:{color:posts}; margin: 0; font-size:
  435.  
  436. 10px; font-family: trebuchet ms;}
  437. .chat .chat1 {margin-left: 0px;font-size:
  438. 8px; }/**theme by: o-mundo-de-uma-garota**/
  439. .chat .chat1 .chat2 {font-weight: bold; background:{color:posts}; color:{color:text};font-size: 10px; border:1px solid {color:background};
  440. margin-bottom: 1px; padding: 4px 5px 4px 5px; font-family: trebuchet ms;} /* Primeira linha */
  441. .chat .chat1 .chat2.even {background:{color:background};
  442. color:{color:text};font-size:
  443. 9px;font-weight: bold; } /* Segunda linha */
  444. .chat .chat1 .chat2 span{font-weight: bold; }
  445.  
  446. .player {background-color:#000; text-align: left;display:block;}
  447.  
  448.  
  449. .ask {width: 99%; background:{color:bgask}; font-weight:normal; padding:3px; margin-bottom: 1px; color:{color:text}; font-size: 11px; }
  450. .asker {width: 99%;height:18px; background:{color:background}; font-weight:normal; padding:3px; margin-bottom: 1px; color:{color:text}; font-size: 10px;text-align:left;line-height:20px;text-transform:uppercase;font-family: calibri;}
  451. .asker a{background:#; color:{color:text};}
  452. .askborder {width:38px;float: left; display: inline; margin-bottom: 2px;margin-left:-3px;border: 3px solid {color:borda};margin-top:-3px;}
  453. .resposta {background:{color:background}; font-weight:normal; padding:10px; margin-bottom:1px; text-shadow:0 0px 0px {color:sombra};color:{color:text}; font-size: 11px; }
  454.  
  455. #oidata {text-align:center; font-size:09px; font-family:calibri; text-transform: uppercase; z-index: 11; padding:2px; color: {color:ftxt}; border-top: 1px solid background-color:{color:background}; border-bottom: 1px solid background-color:{color:background}; -webkit-transition: all 0.2s ease-out; -moz-transition: all .4s ease-out;border-top: 1px solid {color:borda};border-bottom: 1px solid {color:borda};}
  456. #oidata a {font-size:10px;color:{color:text}; text-transform:uppercase;}
  457. #cap {width:500px; margin-top:-2px;}
  458. .source {display: none;}
  459.  
  460. .notes {width: 520px;padding:0px;margin-top:5px; margin-bottom: 10px; font-size: 9px; text-align:left; margin-left:0px;}
  461. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  462. ol.notes li {background-color:{color:post}; margin-bottom: 1px; padding: 5px; }
  463. .notes img{display:none; border:0px}
  464.  
  465. #tumblr_controls{position: fixed!important}
  466. #tumblr_controls{position: fixed!important}
  467. #tumblr_controls{position: fixed!important}
  468. #tumblr_controls{position: fixed!important}
  469.  
  470. /*** TITULOS ***/
  471.  
  472. .baby {text-align: center;
  473. font-family:customfont;
  474. font-size: 29px;
  475. font-style: none;
  476. height: 39px;
  477. color: {color:frase};
  478. margin-left:150px;
  479. margin-top:365px;
  480. text-transform: none;
  481. letter-spacing: 1px;
  482. position:fixed;
  483. -webkit-transition: all 0.4s ease-out;
  484. -moz-transition: all 0.4s ease-out;
  485. width:268px;z-index:8000000000000000;
  486. line-height:21px;
  487. background-color:#omdg;
  488. text-shadow: 2px 5px 9px {color:sombra};
  489. -webkit-transform: rotate(-10deg);}
  490.  
  491. .baby:hover{ -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; color:{color:borda2};-webkit-animation: smallToBig 300ms alternate infinite ease;-moz-animation: smallToBig 300ms alternate infinite ease;}
  492.  
  493.  
  494.  
  495. /*** FONTES***/
  496. @font-face { font-family: "folks"; src: url('http://static.tumblr.com/zvqacv0/lptm7vt4g/that__s_font_folks_.ttf'); }
  497.  
  498. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  499.  
  500.  
  501. @font-face { font-family: "craftygirls"; src: url('http://themes.googleusercontent.com/static/fonts/craftygirls/v0/0Sv8UWFFdhQmesHL32H8o3hCUOGz7vYGh680lGh-uXM.woff'); }
  502.  
  503. @font-face {font-family: "dawning";src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');}
  504. @font-face {font-family: "handy00";src: url('http://static.tumblr.com/8ls1oxv/AfJlyd5ev/handy00.ttf');}
  505.  
  506.  
  507. @font-face {font-family: "sweetly";src: url('http://static.tumblr.com/z5o2pr2/vpWm0rjxz/sweetly_broken.ttf');}
  508.  
  509.  
  510.  
  511. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  512.  
  513. @font-face {font-family: "buymore";src: url('http://static.tumblr.com/ygkexbz/mpZm51k9i/buy_more.ttf');}
  514.  
  515.  
  516. @font-face {font-family: customfont; src: url('http://static.tumblr.com/fxpo5zq/ad0m5vybr/quicksand_light.otf');
  517. }
  518.  
  519. @-webkit-keyframes smallToBig{from {-webkit-transform: scale(1);}to {-webkit-transform: scale(1.1);}}
  520. @-moz-keyframes smallToBig{from {-moz-transform: scale(1);}to {-moz-transform: scale(1.1);}}
  521.  
  522. /**********************************FIM***********/
  523.  
  524. /*IMAGEM DA DUDA*/
  525. .duhimag {position: absolute; width:268px;
  526. height:222px; margin-left:150px; margin-top: 110px;
  527. position:fixed;border:8px solid {color:sidebar} }
  528.  
  529. .duhimag img {position:fixed;
  530. -webkit-transition: all 1s ease-in-out;
  531. -webkit-border-radius: 0px 0px 0px 0px;
  532. -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; display: block; height:220px; width: 268px;
  533. background-color: {color:none}; padding:0px;
  534. margin-left:0px;
  535. margin-top:1px;}
  536.  
  537. .duhimag:hover #pqpduds #ya {margin-top:-50px; opacity:0.0;
  538. -webkit-transition: 0.9s ease-in;
  539. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; }
  540.  
  541. .duhimag img.top { opacity:1;}
  542. .duhimag:hover img.top, .cf4.hover_effect img.top {opacity:0;}
  543.  
  544. .duhimag:hover img.bottom, .cf4.hover_effect img.bottom {filter:gray}
  545.  
  546.  
  547.  
  548. #creditosaduda {margin-top: 56px; margin-left: 230px; position: fixed; background-color:{color:sidebar}; height: 361px; width:9px;opacity:0.7; }
  549.  
  550.  
  551.  
  552. #marion1 {position: fixed;
  553. margin-left: 140px;
  554. width:295px;
  555. height: 400px;
  556. background-color:{color:sidebar};
  557. margin-top: 15px;
  558. -webkit-transform: rotate(0deg);
  559. -webkit-border-radius: 0px 0px 0px 0px;
  560. -webkit-transform: rotate(0deg);
  561. border: double 5px {color:borda};
  562. background-image: url('{image:fudinho}');}
  563.  
  564.  
  565. /*************LINKS AQUI POR AMOR-COMPULSIVO, CREDITAR A ELA ****/
  566. #links {text-align: center; margin-left:145px; margin-top:32px; font-family: calibri; font-size: 11px; position: fixed; z-indez: 4; border-top: 1px solid {color:borda2};border-bottom: 1px solid {color:borda2}; width: 295px; height: 20px; text-transform: uppercase;}
  567. #links a {font-family: consolas; font-size: 11px; text-transform: uppercase;color: {color:links}; }
  568. #links a:hover {letter-spacing: 2px;}
  569.  
  570. #nav{margin-top: 5px; position: fixed; margin-left: auto; text-align: center; width: 280px;}
  571. #nav a:hover {text-shadow: 0px -6px {color:borda2}, 0px 1px 7px {color:bghover}}
  572.  
  573.  
  574.  
  575. /*** PAGINACAO***/
  576. #pagina{ margin-top: 396px; margin-left: 345px; width: 88px; float: right; background-color: transparent; position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:830 }
  577.  
  578. #paginacaoml {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; line-height: 24px;}
  579. #paginacaoml a {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: ; margin: 0 1px 0 0; padding: 2px 2px; color: {color:link}; text-decoration: none;}
  580. #paginacaoml a:hover {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: ; border: none;}
  581. #paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: {color:link}; text-decoration: none; font-weight: bold;}#paginacaoml span.info {background: {color:link}; margin: 0 1px 0 0; padding: 1px 2px; color: #cor da fonte; text-decoration: none;}
  582.  
  583. /*******************************SCROLLBAR OMDG*************/
  584. ::-webkit-scrollbar {width:19px;height:auto;background:transparent;}
  585. ::-webkit-scrollbar-corner {background:{color:text};}
  586. ::-webkit-scrollbar-button:vertical {height:8px; display: block; background:{color:text};}
  587. ::-webkit-scrollbar-thumb:vertical {background:{color:text};background-image: url('{image:fudinho}'); border-top: 3px double {color:borda}; border-bottom: 3px double {color:borda};}
  588. ::-webkit-scrollbar-track-piece {background:{color:post}; border-top: 1pt solid {color:borda}; border-bottom: 3px double {color:borda}; width:4pt;}
  589. -::moz-selection {color:{color:scroll}; background:{color:text};}
  590. ::selection {color:{color:post}; background:{color:text};}
  591.  
  592.  
  593. #dj {display: none; background: #000;position: fixed; left: 0; top: 0; width: 100%; height: 100%; opacity: .80; z-index: 9999;border: 3px solid #000;}
  594. .popup_block{display: none;font-family:"existance";border-bottom: 3px solid #000;background: #1c1c1c; padding: 20px; border: 20px double #000; float: left; font-size: 1.2em; position: fixed; top: 50%; left: 50%; z-index: 99999;-webkit-box-shadow: 0px 0px 20px #000; -moz-box-shadow: 0px 0px 20px #000; box-shadow: 0px 0px 20px #000; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 0px;}
  595. img.btn_close {float: right; margin: -55px -55px 0 0;}
  596. *html #fade {position: absolute;}
  597. *html .popup_block {position: absolute;}
  598. @font-face { font-family: "existance"; src: url('http://static.tumblr.com/u37ad6e/OCIm7s3av/existence-unicaselight.otf'); }
  599. @font-face { font-family: "craftygirls"; src: url('http://themes.googleusercontent.com/static/fonts/craftygirls/v0/0Sv8UWFFdhQmesHL32H8o3hCUOGz7vYGh680lGh-uXM.woff'); }
  600.  
  601.  
  602. /*** DESCRIÇÃO ***/
  603. #notinholaduda {margin-left: 145px; margin-top: 62px; width:285px; font-size: 11px; height: 28px; text-align: center; transparent; font-family:georgia;color: {color:textdesc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  604. -moz-transition: 1s ease-in; transition: 1s ease-in; overflow: hidden; opacity: 1; border-top: 3px dotted transparent;}
  605.  
  606. #marion2 {position: fixed; margin-left: 145px; width:295px; height: 39px; background-color:{color:sidebar}; margin-top: 63px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px; -webkit-transform: rotate(0deg);background-image: url('{image:desc}'); }
  607.  
  608. /*** FAIXINHAS***/
  609. #faixa2 {margin-top: 25px; margin-left: 145px; position: fixed; background-color: {color:linha}; height: 4px; width:295px;}/***detalhes by o-mundo-de-uma-garota***/
  610. #faixa3 {margin-top: 104px; margin-left: 145px; position: fixed; background-color: {color:linha}; height: 4px; width:295px;}/***detalhes by o-mundo-de-uma-garota***/
  611. #faixa6 {margin-top: 57px; margin-left: 145px; position: fixed; background-color: {color:linha}; height: 4px; width:295px; }/***detalhes by o-mundo-de-uma-garota***/
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618. </style>
  619. <body onkeydown="return false">
  620.  
  621.  
  622.  
  623.  
  624. <!-----------------NÃO MEX AQUI SUA PLAY AQUI EMBAIXO------------>
  625.  
  626.  
  627.  
  628.  
  629. <div id="marion1"></div>
  630.  
  631. <div id="marion2"></div>
  632.  
  633.  
  634. <div id="faixa2"></div>
  635. <div id="faixa3"></div>
  636. <div id="faixa6"></div>
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643. <div id="side">
  644.  
  645. <div class="duhimag" class="hover">
  646. <img class="bottom shadow" src="{image:fotod}"alt="" title="baby im sure"style="-webkit-filter: grayscale(100%);" >
  647. <img class="top shadow" src="{image:fotod}"alt="" title="baby im sure duh" /></div>
  648.  
  649.  
  650. </div>
  651. </div>
  652.  
  653. <div id="notinholaduda">{Description}</div>
  654.  
  655. <div id="links">
  656. <div id="nav">
  657. <a href="{text:Link1}">{text:Link1 Title}</a>
  658.  
  659. <a href="{text:Link2}">{text:Link2 Title}</a>
  660.  
  661. <a href="{text:Link3}">{text:Link3 Title}</a>
  662.  
  663. <a href="{text:Link4}">{text:Link4 Title}</a>
  664.  
  665. <a href="{text:Link5}">{text:Link5 Title}</a>
  666. <a href="{text:Link6}">{text:Link6 Title}</a>
  667.  
  668. </div>
  669. </div>
  670.  
  671. <!-------------------PAGINATION--------------->
  672.  
  673. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><font color="{color:source}">«</font></a>{/block:PreviousPage}{/block:Pagination}
  674. Page <b>{CurrentPage}</b> of <b>{TotalPages}</b>
  675. {block:JumpPagination length="0"}
  676. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  677. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  678. {/block:JumpPagination}
  679. {block:Pagination}{block:NextPage}<a href="{NextPage}"><font color="{color:source}">»</font></a>{/block:NextPage}{/block:Pagination}</div></div>
  680. </div></div>
  681.  
  682. <!-------------CRÉDITOS------------------------------>
  683. <div style="margin-left:40px;background:{color:sidebar};-webkit-border-radius: 20px 20px 0px 0px;-webkit-transform: rotate(-90deg); width:180px; font-family:tahoma;font-size:11px; margin-top: 215px; height:18px;position:fixed; "><a href="http://o-mundo-de-uma-garota.tumblr.com/"title="Theme by: o-mundo-de-uma-garota + detalhes por kah [amor-compulsivo]"><small>Theme by :o-mundo-de-uma-garota</small></a>
  684. <font color="{color:tags}">©</font> </a></div>
  685.  
  686.  
  687.  
  688. <center><div class="baby"><center>{text:frase}</center></div></center>
  689.  
  690.  
  691.  
  692.  
  693. <div id="paginacaoml"><span class="info" style="font-weight: normal;"> {block:Pagination}{/block:Pagination}
  694. {block:JumpPagination length="4"}
  695. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  696. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  697. {/block:JumpPagination}
  698. {block:Pagination}{/block:Pagination}
  699. </div>
  700.  
  701.  
  702. <!----------------------BASE DUH 1 (OMDG)-------------->
  703.  
  704. <div id="baseduh">
  705. {block:Posts}
  706. <div class="omdg">
  707.  
  708. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  709.  
  710. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  711.  
  712. {block:Photoset}{Photoset-500}{/block:Photoset}
  713.  
  714. <!--------------------BASE DUH 2 (OMDG)---------------->
  715. {block:Quote}
  716. <div id="quote">&#10077;</div><div class="baseduh1">{Quote}</div>
  717. {block:Source}<div class="baseduh2"> — {Source}</div>
  718. {/block:Source}
  719. {/block:Quote}
  720.  
  721. {block:Link}
  722. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  723. {block:Description}{Description}{/block:Description}
  724. {/block:Link}
  725.  
  726. {block:Chat}
  727. <div class="chat">
  728. <div class="chat1">
  729. {block:Lines}
  730. <div class="chat2 {Alt}">
  731. {block:Label}
  732. <span>{Label}</span>
  733. {/block:Label}
  734. {Line}</div>
  735. {/block:Lines}
  736. </div>
  737. </div>
  738. {/block:Chat}
  739.  
  740.  
  741. {block:Audio}
  742. <div class="player">{AudioPlayerBlack}</div>
  743. {block:Caption}{Caption}{/block:Caption}
  744. {/block:Audio}
  745.  
  746. {block:Video}{Video-400}{/block:Video}
  747.  
  748.  
  749. {block:Answer}
  750. <div class="asker"><img src="{AskerPortraitURL-64}"align="left" class="askborder"/>Pergunta feita por: {Asker}
  751. </div>
  752. <div class="ask">
  753. {Question} </div>
  754. <div class="resposta">{Answer}</div>
  755. {/block:Answer}
  756.  
  757. <div id="cap">
  758. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  759. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  760. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  761.  
  762. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  763. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  764. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  765. {/block:ContentSource}</div></div>
  766. <br>
  767.  
  768.  
  769. <div id="oidata">
  770. {block:Date}<a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} <font color="{color:tags}">·</font><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} <font color="{color:tags}">·</font> <a href="{ReblogUrl}" target="_blank">reblog baby!!</a>{/block:IndexPage}
  771. {block:RebloggedFrom} <font color="{color:tags}">·</font> (<a href="{ReblogParentURL}" title="{ReblogParentTitle}">via</a> <font color="{color:tags}">|</font><a href="{ReblogRootURL}" title="{ReblogRootTitle}">source</a>){/block:RebloggedFrom}
  772. </div>
  773. <div class="tags"><center>{block:HasTags}{block:Tags}<font color="{color:tags}">#</font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</center></div>
  774. </div>{/block:Date}
  775.  
  776. {/block:Posts}
  777. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  778.  
  779. </div>
  780. </div>
  781. </div>
  782. </div>
  783. </div>
  784.  
  785.  
  786.  
  787.  
  788. <!-------------all thmx by: o-mundo-de-uma-garota not copie paixão---->
  789.  
  790.  
  791. <body onkeydown="return false">
  792. </html>
Advertisement
Add Comment
Please, Sign In to add comment