Eduarda

Theme 75

Nov 7th, 2012
1,181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.96 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="Close Window" 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/byFmd5b6t/tumblr_mcxk2thepi1rnj43qo1_250.png" />
  297.  
  298. <meta name="image:background" content="http://static.tumblr.com/2bh9bxo/yuLmcxbxi/bgdaduda.jpg" />
  299. <meta name="image:fudinho" content="http://static.tumblr.com/2bh9bxo/Jwvmd56fh/tumblr_m524nz3toe1qkzf0fback.png" />
  300.  
  301. <meta name="color:background" content="#000" />
  302. <meta name="color:sidebar" content="#000000" />
  303. <meta name="color:link" content="#CDC9C9" />
  304. <meta name="color:link hover" content="#000000" />
  305. <meta name="color:bordaimg" content="#000000" />
  306. <meta name="color:text" content="#CDC9C9" />
  307. <meta name="color:tags" content="#FFC0CB" />
  308. <meta name="color:post" content="#1C1C1C" />
  309. <meta name="color:borda" content="#000" />
  310. <meta name="color:links" content="#CDC9C9" />
  311. <meta name="color:bghover" content="#FFC0CB" />
  312. <meta name="color:sombra" content="#1C1C1C" />
  313. <meta name="color:textdesc" content="#8B8989" />
  314. <meta name="color:frase" content="#CDC9C9" />
  315. <meta name="color:bgask" content="#1C1C1C" />
  316. <meta name="color:borda2" content="#1C1C1C" />
  317. <meta name="color:linha" content="#000000" />
  318. <meta name="color:linha1" content="#FFC0CB" />
  319. <meta name="color:abc" content="#FFC0CB" />
  320.  
  321.  
  322. <meta name="text:frase" content="Simples barbie"/>
  323. <meta name="text:frase2" content="que tinha o coração partido"/>
  324. <meta name="text:Link1" content="/" />
  325. <meta name="text:Link1 Title" content="H O M E" />
  326. <meta name="text:Link2" content="/" />
  327. <meta name="text:Link2 Title" content="A S K " />
  328. <meta name="text:Link3" content="/" />
  329. <meta name="text:Link3 Title" content="F A Q " />
  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. <meta name="text:Link7" content="/" />
  337. <meta name="text:Link7 Title" content="link" />
  338.  
  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/entrada.css" media="screen"/>
  345.  
  346. <title>{Title}</title>
  347. <link rel="shortcut icon" href="{Favicon}">
  348. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  349. {block:Description}
  350. <meta name="description" content="{MetaDescription}" />
  351. {/block:Description}
  352.  
  353. <style type="text/css">
  354. 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; }
  355.  
  356. iframe#tumblr_controls {right:3px !important;
  357. position: fixed !important;
  358. -webkit-transition: opacity 0.7s linear;
  359. opacity: 0.2;
  360. -webkit-transition: all 0.8s ease-out;
  361. -moz-transition: all 0.8s ease-out;
  362. transition: all 0.8s ease-out;}
  363. iframe#tumblr_controls:hover{
  364. -webkit-transition: opacity 0.7s linear;
  365. opacity: 1;
  366. -webkit-transition: all 0.4s ease-out;
  367. -moz-transition: all 0.4s ease-out;
  368. transition: all 0.4s ease-out;}
  369.  
  370.  
  371. a {color: {color:link}; text-decoration: none; text-transform: none;}
  372. a:hover {color: {color:link hover}; background-color: transparent; text-decoration: none;}
  373. p {margin: 6px 0 0 0}
  374.  
  375. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
  376. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}/* theme by omdg*/
  377. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  378. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  379. blockquote img{max-width: 400px!important}
  380. blockquote blockquote img{max-width: 400px!important}
  381. blockquote blockquote blockquote img{max-width: 400px!important}
  382. blockquote blockquote blockquote blockquote img{max-width: 400px!important}
  383. /*theme by omdg*/
  384.  
  385.  
  386.  
  387. /*NEGRITO ITALICO E SUBLINHADO*/
  388. b, strong, bold {color:{color:abc};}
  389.  
  390. u,underline {color:{color:text}; border-bottom: 1px dotted {color:abc}; text-decoration:none; }
  391.  
  392. i, em{color:{color:text};}
  393.  
  394.  
  395. #etc {text-align:center;width:450px;margin:20px auto 20px auto;z-index:1;}
  396.  
  397. /***BASE DA DUDA ***/
  398.  
  399. .omdg {width:450px; background-color:{color:post};
  400. padding:6px;text-align:left;
  401. font-family:Trebuchet MS;font-size:11px; margin-top:2px;overflow: hidden;border: 3px double {color:borda};}
  402.  
  403. #baseduh {float:left;width:450px;
  404. margin-left:455px;margin-top:15px;z-index:-9;}
  405.  
  406. h1 {font-family:Trebuchet MS;text-align:center;font-size:14px;color:{color:text}; font-weight: normal; line-height: 14px;}
  407. h1 a {text-align:center;font-size:14px;color: {color:text};font-weight:normal; line-height:14px;}
  408. h1 a:hover {text-align:center;font-size:14px; color:{color:text}; font-weight:normal; line-height:14px;}
  409.  
  410. .image {text-align:center;border:0px;}
  411. .image img {max-width:430px;margin-bottom:-1px; -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  412. .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};}
  413.  
  414. .baseduh1 {text-align:justify; cambria;
  415. background:{color:background};font-size: 11px;
  416. line-height:15px; padding:3px;margin-left:02px;
  417. border-bottom:1px solid {color:background};
  418. margin-bottom:3px; margin-top:-66px;}
  419. .baseduh2 {text-align: center; text-transform: none;
  420. margin-bottom:5px; font-size: 09px; font-weight: bold}
  421. .baseduh2 a, a:hover{text-transform: none;}
  422.  
  423. /***QUOTES TAGS BOX CHAT E NOTES***/
  424.  
  425.  
  426. #quote {position:relative; top:-22px;left:-3px;font-size:60px;opacity:0.3;}
  427.  
  428. .tags {color: {color:text};font-size:9px; font-family:calibri; display: inline; list-style: none; text-transform: uppercase; text-align:center;}
  429. .tags a {font-size: 9px; color: calibri; display: inline; list-style: none; text-transform: uppercase; text-align:center;}
  430.  
  431. /* Chat por Anna (livelikeasuicide) *********/
  432. .chat {background:{color:posts}; margin: 0; font-size:
  433.  
  434. 10px; font-family: trebuchet ms;}
  435. .chat .chat1 {margin-left: 0px;font-size:
  436. 8px; }/**theme by: o-mundo-de-uma-garota**/
  437. .chat .chat1 .chat2 {font-weight: bold; background:{color:posts}; color:{color:text};font-size: 10px; border:1px solid {color:background};
  438. margin-bottom: 1px; padding: 4px 5px 4px 5px; font-family: trebuchet ms;} /* Primeira linha */
  439. .chat .chat1 .chat2.even {background:{color:background};
  440. color:{color:text};font-size:
  441. 9px;font-weight: bold; } /* Segunda linha */
  442. .chat .chat1 .chat2 span{font-weight: bold; }
  443.  
  444. .player {background-color:#000; text-align: left;display:block;}
  445.  
  446.  
  447. .ask {width: 99%; background:{color:bgask}; font-weight:normal; padding:3px; margin-bottom: 1px; color:{color:text}; font-size: 11px; }
  448. .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;}
  449. .asker a{background:#; color:{color:text};}
  450. .askborder {width:38px;float: left; display: inline; margin-bottom: 2px;margin-left:-3px;border: 3px solid {color:borda};margin-top:-3px;}
  451. .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; }
  452.  
  453. #oidata {text-align:center; font-size:09px;background:{color:background}; 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;}
  454. #oidata a {font-size:10px;color:{color:text}; text-transform:uppercase;}
  455. #cap {width:500px; margin-top:-2px;}
  456. .source {display: none;}
  457.  
  458. .notes {width: 520px;padding:0px;margin-top:5px; margin-bottom: 10px; font-size: 9px; text-align:left; margin-left:0px;}
  459. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  460. ol.notes li {background-color:{color:post}; margin-bottom: 1px; padding: 5px; }
  461. .notes img{display:none; border:0px}
  462.  
  463. #tumblr_controls{position: fixed!important}
  464. #tumblr_controls{position: fixed!important}
  465. #tumblr_controls{position: fixed!important}
  466. #tumblr_controls{position: fixed!important}
  467.  
  468. /***TITULOS E LINKS***/
  469.  
  470. .frase {text-align: center;font-family:folks; font-size: 22px; font-style: none;height: 39px;color: {color:frase};background:{color:sidebar}; margin-left:180px;margin-top:70px; text-transform: none; letter-spacing: 1px;position:fixed;-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;width:168px;z-index:8000000000000000;line-height:21px; background-color:; text-shadow: 2px 5px 9px {color:sombra};}
  471.  
  472. .frase:hover{ -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; color:{color:borda2};}
  473.  
  474. .dukah {font-family:tinytots; font-size: 8px; font-style: none;
  475. height: 10px;color: {color:mytitle}; margin-left:180px;margin-top:89px; 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; text-transform:uppercase;}
  476. @font-face { font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  477.  
  478.  
  479. /*** FONTES***/
  480. @font-face { font-family: "folks"; src: url('http://static.tumblr.com/zvqacv0/lptm7vt4g/that__s_font_folks_.ttf'); }
  481.  
  482. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  483.  
  484.  
  485. @font-face { font-family: "craftygirls"; src: url('http://themes.googleusercontent.com/static/fonts/craftygirls/v0/0Sv8UWFFdhQmesHL32H8o3hCUOGz7vYGh680lGh-uXM.woff'); }
  486.  
  487. @font-face {font-family: "dawning";src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');}
  488. @font-face {font-family: "handy00";src: url('http://static.tumblr.com/8ls1oxv/AfJlyd5ev/handy00.ttf');}
  489.  
  490.  
  491. @font-face {font-family: "sweetly";src: url('http://static.tumblr.com/z5o2pr2/vpWm0rjxz/sweetly_broken.ttf');}
  492.  
  493.  
  494.  
  495. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  496.  
  497. @font-face {font-family: "buymore";src: url('http://static.tumblr.com/ygkexbz/mpZm51k9i/buy_more.ttf');}
  498.  
  499.  
  500.  
  501. /*IMAGEM DA DUDA*/
  502. .duhimag {position: absolute; width:238px;
  503. height:222px; margin-left:180px; margin-top: 110px;
  504. position:fixed;border:8px solid {color:sidebar} }
  505.  
  506. .duhimag img {position:fixed;
  507. -webkit-transition: all 1s ease-in-out;
  508. -webkit-border-radius: 0px 0px 0px 0px;
  509. -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: 239px;
  510. background-color: {color:none}; padding:0px;
  511. margin-left:0px;
  512. margin-top:1px;}
  513.  
  514. .duhimag:hover #pqpduds #ya {margin-top:-50px; opacity:0.0;
  515. -webkit-transition: 0.9s ease-in;
  516. -moz-transition: 0.9s ease-in; transition: 0.9s ease-in; }
  517.  
  518. .duhimag img.top { opacity:1;}
  519. .duhimag:hover img.top, .cf4.hover_effect img.top {opacity:0;}
  520.  
  521. .duhimag:hover img.bottom, .cf4.hover_effect img.bottom {filter:gray}
  522.  
  523.  
  524.  
  525. #creditosaduda {margin-top: 56px; margin-left: 230px; position: fixed; background-color:{color:sidebar}; height: 361px; width:9px;opacity:0.7; }
  526.  
  527. /*descri by: o-mundo-de-uma-garota (Duda.R) */
  528. .duka {text-align: justify; margin-top:120px; margin-left: 200px;border: 3px dotted {color:tags} ; overflow: hidden; ; font-size: 9px; font-family: Give You Glory; position: fixed; color:{color:textdesc};background-color:{color:none}; padding: 10px; background-attachment: fixed; width:180px; height: 180px; letter-spacing: 1px; font-style: normal; line-height: 8px; text-transform: uppercase;opacity:0;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out}
  529. .duka {font-size: 9px; font-family:verdana; letter-spacing: -1px; text-transform: none; line-height: 10px;opacity:0;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  530.  
  531. .duka:hover {-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;margin-top:200px;opacity:1;height:70px;opacity:0.6;background-color:{color:sidebar}}
  532.  
  533.  
  534.  
  535. #estela1 {position: fixed; margin-left: 165px; width:275px; height: 365px; background-color:{color:sidebar}; margin-top: 45px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 20px 0px 20px; -webkit-transform: rotate(0deg);border: double 5px {color:borda}; background-image: url('{image:fudinho}');}
  536.  
  537.  
  538.  
  539. #sure {width: 100px; float: left; margin-left:358px; height:20px; margin-top: 67px; padding: 3px; text-align: center; position: fixed; background-color: transparent; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index:100 } /***link by o-mundo-de-uma-garota***/
  540.  
  541. #sure a {float: left; margin-right: 0px; display: block; width: 10px; letter-spacing: 2px; font-family: calibri; font-size: 9px; text-transform: uppercase; text-align: center; margin-bottom: 1px; border-right:3px double {color:borda2};background-color: {color:link hover}; color: {color:links}; text-decoration: none; height:31px;line-height:8px; padding: 4px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;border-left: 3px double{color:borda2};} /***link by o-mundo-de-uma-garota***/
  542. #sure a:hover{-webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;text-align: center; color:{color:borda2}; box-shadow: inset 0px 100px {color:bghover};}
  543.  
  544.  
  545.  
  546. #pink{width:578px; height: 40px; float: left; margin-left:224px; margin-top: 353px; padding: 0px; text-align: center; position: fixed; z-index:9999;}
  547. /***link by o-mundo-de-uma-garota***/
  548. #pink 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: 24px; width: 40px; color:{color:links}; line-height: 22px; text-transform: uppercase; -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; font-style: normal; background-color:#1c1c1c;{color:link hover}; } /***link by o-mundo-de-uma-garota***/
  549.  
  550. #pink a:hover{box-shadow: inset 50px 0px {color:bghover}; color: {color:bghoveR}; text-shadow: -2px 0px {color:sombra}, 2px 0px {color:borda2};-webkit-box-shadow:inset 0 0 95px 5px {color:sombra}, 0 0 95px 35px {color:sombra};opacity:0.9;} /***link by o-mundo-de-uma-garota***/
  551.  
  552.  
  553.  
  554. /*** PAGINACAO***/
  555. #pagina{ margin-top: 390px; margin-left: 265px; width: 88px; float: right; background-color: transparent; position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:830 }
  556.  
  557. #paginacaoml {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; line-height: 24px;}
  558. #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;}
  559. #paginacaoml a:hover {font-size: 9px; font-family: Verdana, Geneva, Tahoma, sans-serif; background: ; border: none;}
  560. #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;}
  561.  
  562. ::-webkit-scrollbar {width:19px;height:auto;background:transparent;}
  563. ::-webkit-scrollbar-corner {background:{color:text};}
  564. ::-webkit-scrollbar-button:vertical {height:8px; display: block; background:{color:text};}
  565. ::-webkit-scrollbar-thumb:vertical {background:{color:text};background-image: url('{image:fudinho}'); border-top: 3px double {color:borda}; border-bottom: 3px double {color:borda};}
  566. ::-webkit-scrollbar-track-piece {background:{color:post}; border-top: 1pt solid {color:borda}; border-bottom: 3px double {color:borda}; width:4pt;}
  567. -::moz-selection {color:{color:scroll}; background:{color:text};}
  568. ::selection {color:{color:post}; background:{color:text};}
  569.  
  570.  
  571. #dj {display: none; background: #000;position: fixed; left: 0; top: 0; width: 100%; height: 100%; opacity: .80; z-index: 9999;border: 3px solid #000;}
  572. .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;}
  573. img.btn_close {float: right; margin: -55px -55px 0 0;}
  574. *html #fade {position: absolute;}
  575. *html .popup_block {position: absolute;}
  576. @font-face { font-family: "existance"; src: url('http://static.tumblr.com/u37ad6e/OCIm7s3av/existence-unicaselight.otf'); }
  577. @font-face { font-family: "craftygirls"; src: url('http://themes.googleusercontent.com/static/fonts/craftygirls/v0/0Sv8UWFFdhQmesHL32H8o3hCUOGz7vYGh680lGh-uXM.woff'); }
  578.  
  579.  
  580.  
  581.  
  582. #faixa2 {margin-top: 65px; margin-left: 180px; position: fixed; background-color: {color:linha}; height: 4px; width:254px;}/***detalhes by o-mundo-de-uma-garota***/
  583. #faixa3 {margin-top: 385px; margin-left: 180px; position: fixed; background-color: {color:linha}; height: 4px; width:254px;}/***detalhes by o-mundo-de-uma-garota***/
  584. #faixa4 {margin-top: 70px; margin-left: 349px; position: fixed; background-color: {color:sidebar}; height: 39px; width:5px;}
  585. #faixa5 {margin-top: 71px; margin-left: 353px; position: fixed; background-color: {color:linha1}; height: 37px; width:2px;}/***detalhes by o-mundo-de-uma-garota***/
  586. #faixa6 {margin-top: 70px; margin-left: 355px; position: fixed; background-color: {color:linha}; height: 39px; width:5px; }/***detalhes by o-mundo-de-uma-garota***/
  587. #faixa8 {margin-top: 349px; margin-left: 180px; position: fixed; background-color: {color:sidebar}; height: 35px; width:254px; }/***detalhes by o-mundo-de-uma-garota***/
  588.  
  589.  
  590. /***DETALHES BY: O-MUNDO-DE-UMA-GAROTA***/
  591.  
  592. #tilhadinha {float: left;
  593. margin-top: 55px;
  594. margin-left: 266px;
  595. width: 240px;
  596. background-color: transparent;
  597. color:{color:linha1} ;
  598. padding: 3px;
  599. font-size: 11px;
  600. font-family: consolas;
  601. text-align: center;
  602. position:fixed;
  603. -webkit-border-radius:0;
  604. -webkit-border-bottom-right-radius:0px;
  605. -webkit-border-bottom-left-radius:0px;
  606. position:fixed; letter-spacing: 0px;
  607. -webkit-transform: rotate(deg)}
  608. /***detalhes by o-mundo-de-uma-garota***/
  609. #tilhadinha a{font-size: 9px; color: {color:linha1} }
  610.  
  611.  
  612. #tilhadinha1 {float: left;
  613. margin-top: 375px;
  614. margin-left: 103px;
  615. width: 240px;
  616. background-color: transparent;
  617. color:{color:linha1} ;
  618. padding: 3px;
  619. font-size: 11px;
  620. font-family: consolas;
  621. text-align: center;
  622. position:fixed;
  623. -webkit-border-radius:0;
  624. -webkit-border-bottom-right-radius:0px;
  625. -webkit-border-bottom-left-radius:0px;
  626. position:fixed;
  627. letter-spacing: 0px;
  628. -webkit-transform: rotate(deg)}
  629. /***detalhes by o-mundo-de-uma-garota***/
  630. #tilhadinha1 a{font-size: 9px; color: {color:linha1} }
  631.  
  632.  
  633.  
  634. </style>
  635. <body onkeydown="return false">
  636.  
  637.  
  638.  
  639.  
  640. <!-----------------THEME BY OMDG------------>
  641.  
  642.  
  643.  
  644.  
  645.  
  646. <div id="estela1"></div>
  647.  
  648.  
  649.  
  650. <div id="faixa2"></div>
  651. <div id="faixa3"></div>
  652. <div id="faixa4"></div>
  653. <div id="faixa5"></div>
  654. <div id="faixa6"></div>
  655.  
  656.  
  657. <div id="faixa8"></div>
  658.  
  659.  
  660. <div id="tilhadinha"> ............</div>
  661. <div id="tilhadinha1"> ...........</div>
  662.  
  663. <div id="side">
  664.  
  665. <div class="duhimag" class="hover">
  666. <img class="bottom shadow" src="{image:fotod}"alt="" title="baby im sure"style="-webkit-filter: grayscale(100%);" >
  667. <img class="top shadow" src="{image:fotod}"alt="" title="baby im sure duh" /></div>
  668.  
  669.  
  670. </div>
  671. </div>
  672.  
  673.  
  674.  
  675.  
  676.  
  677. <div class="duka">
  678. <br>
  679. {Description}
  680. </div></div></div>
  681.  
  682.  
  683.  
  684.  
  685. <div id="sure">
  686.  
  687. <a href="{text:Link1}">{text:Link1 Title}</a>
  688.  
  689. <a href="{text:Link2}">{text:Link2 Title}</a>
  690.  
  691. <a href="{text:Link3}">{text:Link3 Title}</a>
  692. </a>
  693. </div>
  694.  
  695. <div id="pink">
  696.  
  697. <a href="{text:Link4}">{text:Link4 Title}</a>
  698.  
  699. <a href="{text:Link5}">{text:Link5 Title}</a>
  700.  
  701. <a href="{text:Link6}">{text:Link6 Title}</a>
  702.  
  703. <a href="{text:Link7}">{text:Link7 Title}</a>
  704. </div class>
  705. </div></div>
  706. </div>
  707. </div>
  708. </div>
  709.  
  710.  
  711. <div id="pagina"><div id="paginacaoml"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><font color="{color:source}">«</font></a>{/block:PreviousPage}{/block:Pagination}
  712. Page <b>{CurrentPage}</b> of <b>{TotalPages}</b>
  713. {block:JumpPagination length="0"}
  714. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  715. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  716. {/block:JumpPagination}
  717. {block:Pagination}{block:NextPage}<a href="{NextPage}"><font color="{color:source}">»</font></a>{/block:NextPage}{/block:Pagination}</div></div>
  718. </div></div>
  719.  
  720. <!-------------CRÉDITOS------------------------------>
  721. <div style="margin-left:67px;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/"><small>Theme by :o-mundo-de-uma-garota</small></a>
  722. <font color="{color:tags}"> ©</font> </a></div>
  723.  
  724.  
  725.  
  726. <center><div class="frase"><center>{text:frase}</center></div></center>
  727. <center><div class="dukah"><center>{text:frase2}</center></div></center>
  728.  
  729.  
  730.  
  731. <div id="paginacaoml"><span class="info" style="font-weight: normal;"> {block:Pagination}{/block:Pagination}
  732. {block:JumpPagination length="4"}
  733. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  734. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  735. {/block:JumpPagination}
  736. {block:Pagination}{/block:Pagination}
  737. </div>
  738.  
  739.  
  740. <!----------------------BASE DUH 1 (OMDG)-------------->
  741.  
  742. <div id="baseduh">
  743. {block:Posts}
  744. <div class="omdg">
  745.  
  746. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  747.  
  748. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  749.  
  750. {block:Photoset}{Photoset-500}{/block:Photoset}
  751.  
  752. <!--------------------BASE DUH 2 (OMDG)---------------->
  753. {block:Quote}
  754. <div id="quote">&#10077;</div><div class="baseduh1">{Quote}</div>
  755. {block:Source}<div class="baseduh2"> — {Source}</div>
  756. {/block:Source}
  757. {/block:Quote}
  758.  
  759. {block:Link}
  760. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  761. {block:Description}{Description}{/block:Description}
  762. {/block:Link}
  763.  
  764. {block:Chat}
  765. <div class="chat">
  766. <div class="chat1">
  767. {block:Lines}
  768. <div class="chat2 {Alt}">
  769. {block:Label}
  770. <span>{Label}</span>
  771. {/block:Label}
  772. {Line}</div>
  773. {/block:Lines}
  774. </div>
  775. </div>
  776. {/block:Chat}
  777.  
  778.  
  779. {block:Audio}
  780. <div class="player">{AudioPlayerBlack}</div>
  781. {block:Caption}{Caption}{/block:Caption}
  782. {/block:Audio}
  783.  
  784. {block:Video}{Video-400}{/block:Video}
  785.  
  786.  
  787. {block:Answer}
  788. <div class="asker"><img src="{AskerPortraitURL-64}"align="left" class="askborder"/>Pergunta feita por: {Asker}
  789. </div>
  790. <div class="ask">
  791. {Question} </div>
  792. <div class="resposta">{Answer}</div>
  793. {/block:Answer}
  794.  
  795. <div id="cap">
  796. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  797. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  798. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  799.  
  800. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  801. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  802. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  803. {/block:ContentSource}</div></div>
  804. <br>
  805.  
  806.  
  807. <div id="oidata">
  808. {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}
  809. {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}
  810. </div>
  811. <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>
  812. </div>{/block:Date}
  813.  
  814. {/block:Posts}
  815. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  816.  
  817. </div>
  818. </div>
  819. </div>
  820. </div>
  821. </div>
  822.  
  823.  
  824.  
  825.  
  826. <!-------------all thmx by: o-mundo-de-uma-garota not copie paixão---->
  827.  
  828.  
  829. <body onkeydown="return false">
  830. </html>
Advertisement
Add Comment
Please, Sign In to add comment