Eduarda

Theme 78

Nov 12th, 2012
2,234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.37 KB | None | 0 0
  1. <!----
  2. 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.
  3. AJUDAS NECESSÁRIAS POR HTMLUV , ILOVETHEMES,QUEEN-EXTRAS ESTILO DE AKS POR CEREJADOSUNDAE ..QUOTES E SOURCE POR- GIRLFATALE CRÉDITAR A ELA POR FAVOR;;
  4.  
  5. - - - - - - - - - - - - - -
  6. - THEME FEITO POR DUDA.R -
  7. - - - - - - - - - - - - - - ---->
  8.  
  9.  
  10.  
  11. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
  12.  
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  14.  
  15.  
  16.  
  17.  
  18. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  19.  
  20.  
  21. <link href='http://fonts.googleapis.com/css?family=Economica|Ubuntu+Condensed' rel='stylesheet' type='text/css'>
  22.  
  23. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  24.  
  25. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  26.  
  27. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  28.  
  29. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  30.  
  31. <script type="text/javascript">
  32. $(window).load(function(){
  33. var $wall = $('#box');
  34. $wall.imagesLoaded(function(){
  35. $wall.masonry({
  36. itemSelector: '.post',
  37. isAnimated : true
  38. });
  39. });
  40. $wall.infinitescroll({
  41. navSelector : "div#navigation",
  42. nextSelector : "div#navigation a#nextPage",
  43. itemSelector : '.post',
  44. loadingImg : "http://static.tumblr.com/kwz90l7/bIdlst7ub/transparent.png",
  45. loadingText : " ",
  46. donetext : " ",
  47. extraScrollPx : 9000,
  48. bufferPx : 10000,
  49. debug : false,
  50. errorCallback: function() {
  51. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  52. }},
  53. function( newElements ) {
  54. var $newElems = $( newElements );
  55. $newElems.hide();
  56. $newElems.imagesLoaded(function(){
  57. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 750, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  58. });
  59. }); $('#box').show(500);
  60. });
  61. </script>
  62.  
  63.  
  64.  
  65. <head>
  66.  
  67. <script>
  68.  
  69.  
  70.  
  71. $(document).ready(function() {
  72.  
  73. //
  74.  
  75.  
  76.  
  77. //When you click on a link with class of poplight and the href starts with a #
  78.  
  79. $('a.poplight[href^=#]').click(function() {
  80.  
  81. var popID = $(this).attr('rel'); //Get Popup Name
  82.  
  83. var popURL = $(this).attr('href'); //Get Popup href to define size
  84.  
  85.  
  86.  
  87. //Pull Query & Variables from href URL
  88.  
  89. var query= popURL.split('?');
  90.  
  91. var dim= query[1].split('&');
  92.  
  93. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  94.  
  95.  
  96.  
  97. //Fade in the Popup and add close button
  98.  
  99. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/2bh9bxo/iTXmdcocj/sbdb.gif" class="btn_close" title="Volte My boo" alt="Close" /></a>');
  100.  
  101.  
  102. //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
  103.  
  104. var popMargTop = ($('#' + popID).height() + 80) / 2;
  105.  
  106. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  107.  
  108.  
  109.  
  110. //Apply Margin to Popup
  111.  
  112. $('#' + popID).css({
  113.  
  114. 'margin-top' : -popMargTop,
  115.  
  116. 'margin-left' : -popMargLeft
  117.  
  118. });
  119.  
  120.  
  121.  
  122. //Fade in Background
  123.  
  124. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  125.  
  126. $('#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
  127.  
  128.  
  129.  
  130. return false;
  131.  
  132. });
  133.  
  134.  
  135.  
  136. //Close Popups and Fade Layer
  137.  
  138. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  139.  
  140. $('#fade , .popup_block').fadeOut(function() {
  141.  
  142. $('#fade, a.close').remove(); //fade them both out
  143.  
  144. });
  145.  
  146. return false;
  147.  
  148. });
  149.  
  150.  
  151.  
  152.  
  153.  
  154. });
  155.  
  156. </script>
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164. <!-- APPERENCE OMDG -->
  165. <meta name="image:fotod" content="http://static.tumblr.com/2bh9bxo/69Hmded76/tumblr_m2u3ydizn11r1ig82o1_1280.jpg" />
  166.  
  167. <meta name="image:background" content="http://static.tumblr.com/2bh9bxo/yuLmcxbxi/bgdaduda.jpg" />
  168. <meta name="image:fudinho" content="http://static.tumblr.com/2bh9bxo/hGXmcgm5v/wallpaper_240x320_1335.png" />
  169. <meta name="image:bgsid" content="http://static.tumblr.com/2bh9bxo/jivmcxbof/tumblr_m524nz3toe1qkzf0fback.png" />
  170.  
  171. <meta name="color:background" content="#1C1C1C" />
  172. <meta name="color:sidebar" content="#000000" />
  173. <meta name="color:link" content="#CDCDC1" />
  174. <meta name="color:link hover" content="#000000" />
  175. <meta name="color:bordaimg" content="#000000" />
  176. <meta name="color:text" content="#8B8682" />
  177. <meta name="color:tags" content="#FFC0CB" />
  178. <meta name="color:post" content="#1C1C1C" />
  179. <meta name="color:borda" content="#000000" />
  180. <meta name="color:links" content="#8B8682" />
  181. <meta name="color:bghover" content="#000000" />
  182. <meta name="color:sombra" content="#1C1C1C" />
  183. <meta name="color:textdesc" content="#8B8682" />
  184. <meta name="color:frase" content="#8B8682" />
  185. <meta name="color:bgask" content="#000000" />
  186. <meta name="color:bgask2" content="#FFC0CB" />
  187. <meta name="color:borda2" content="#FFC0CB" />
  188. <meta name="color:linha" content="#000000" />
  189. <meta name="color:linha1" content="#FFC0CB" />
  190. <meta name="color:abc" content="#FFC0CB" />
  191.  
  192.  
  193.  
  194. <meta name="text:frase1" content="Mais so a barbie dele." />
  195. <meta name="text:frase2" content="Hi Im Barbiie" />
  196.  
  197.  
  198.  
  199. <meta name="text:Link1" content="/" />
  200. <meta name="text:Link1 Title" content="home" />
  201. <meta name="text:Link2" content="/" />
  202. <meta name="text:Link2 Title" content="askbox" />
  203. <meta name="text:Link3" content="/" />
  204. <meta name="text:Link3 Title" content="link" />
  205. <meta name="text:Link4" content="/" />
  206. <meta name="text:Link4 Title" content="link" />
  207. <meta name="text:Link5" content="/" />
  208. <meta name="text:Link5 Title" content="link" />
  209. <meta name="text:Link6" content="/" />
  210. <meta name="text:Link6 Title" content="link" />
  211. <meta name="text:Link7" content="/" />
  212. <meta name="text:Link7 Title" content="link" />
  213. <meta name="text:Link8" content="/" />
  214. <meta name="text:Link8 Title" content="link" />
  215.  
  216. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  217. <link href='http://fonts.googleapis.com/css?family=Courgette' rel='stylesheet' type='text/css'>
  218. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  219. <link href='http://fonts.googleapis.com/css?family=Vibur' rel='stylesheet' type='text/css'>
  220.  
  221. <link rel="stylesheet" href="http://static.tumblr.com/5dbytsa/VYmmcwtwj/entrada.css" media="screen"/>
  222.  
  223.  
  224. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  225. <title>{Title}
  226. {block:SearchPage}, Search results for: {SearchQuery}
  227. {/block:SearchPage}
  228. {block:PostSummary}, {PostSummary}
  229. {/block:PostSummary}</title>
  230. {block:Description}
  231. <meta name="description" content="{MetaDescription}" />
  232. {/block:Description}
  233. <link rel="shortcut icon" href="{favicon}" />
  234. <link rel="alternate" type="application/rss+xml" href="{rss}" />
  235. </head>
  236. <style type="text/css">
  237.  
  238.  
  239. body{background-color:{color:background};color:{color:text};font-size:11px; font-family:tahoma; text-align: left; background-image:url('{image:background}'); background-attachment: fixed; }
  240.  
  241. a {color:{color:links}; text-decoration: none;-webkit-transition: all 0.9s ease-out; -moz-transition: all 0.9s ease-out;}
  242. a:hover {color:{color:link hover};}
  243.  
  244. u,underline {color:{color:text}; border-bottom: 1px dotted {color:text}; text-decoration:none; }
  245.  
  246.  
  247. pre {background:{color:background}; padding: 3px; border-radius: 3px; width:366px; -webkit-background-clip:initial; -webkit-background-origin:initial; background-attachment:initial; overflow-x:auto;
  248. overflow-y:auto; display:block; text-align:left; font: normal 12 'trebuchet ms';}
  249. /*** TEHEM & BASE DA DUDA [OMDG]***/
  250. .baseduh {text-align:left; font:7px verdana;
  251. text-transform:uppercase; z-index: 11; }
  252. .baseduh a {font-size: 7px;}
  253.  
  254. #baseduh1 {text-align:center; font-size:09px;
  255. font-family:calibri; text-transform:uppercase; z-index:11;
  256. padding:2px; color: ; border-top:1px solid {color:borda};
  257. border-bottom: 1px solid {color:borda};
  258. -webkit-transition: all 0.2s ease-out;
  259. -moz-transition: all .4s ease-out;}
  260. #baseduh1 a {font-size:10px;color:; text-transform:uppercase;}
  261.  
  262. .line1{font-size:10px; text-transform: lowercase; margin-top: 7px}
  263.  
  264. .line2{font-size:10px; text-transform:lowercase; clear: both}
  265.  
  266. .line3{font-size:10px; text-transform:lowercase; clear: both}
  267.  
  268. .ileft{float: left}
  269.  
  270. .iright{float: right}
  271.  
  272. .postclear{clear: both; width: 100%; visibility: hidden; height: 1px}
  273.  
  274.  
  275. blockquote {margin: 5px 5px 5px 5px; border-left: 2px solid {color:background}; padding-left: 5px; }
  276. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background};}/* theme by omdg*/
  277. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  278. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 2px solid {color:background}; }
  279. blockquote img{max-width: 400px!important}
  280. blockquote blockquote img{max-width: 400px!important}
  281. blockquote blockquote blockquote img{max-width: 400px!important}
  282. blockquote blockquote blockquote blockquote img{max-width: 400px!important}
  283. /*theme by omdg*/
  284.  
  285.  
  286.  
  287. /*NEGRITO ITALICO E SUBLINHADO*/
  288. b, strong, bold {color:{color:abc};}
  289.  
  290. u,underline {color:{color:text}; border-bottom: 1px dotted {color:abc}; text-decoration:none; }
  291.  
  292. i, em{color:{color:text};}
  293.  
  294.  
  295. #baseduh1:hover{-moz-box-shadow: inset 550px 0 0px 0 {color:borda2};
  296. -webkit-box-shadow: inset 550px 0 0px 0 {color:borda2};
  297. box-shadow: inset 550px 0 0px 0 {color:borda2};
  298. color: {color:borda2};}
  299.  
  300.  
  301. #box{margin-left:398px;padding:0px;width:850px;margin-top:-13px;overflow: hidden;}
  302.  
  303. .post{position: relative;width:341px;float:left;margin:-7px;margin-left: 10px;background:{color:post};margin-top:10px; padding: 5px; text-align:left; overflow: hidden;}
  304. .post img{max-width:350px;overflow: hidden;}
  305.  
  306.  
  307. h1{color:{color:text};font-family:georgia;font-size:12px;font-weight:normal; text-align:left; }
  308.  
  309. .image {text-align: left; border: 0px;}
  310.  
  311. .image img {max-width: 338px; opacity:.7;-moz-opacity: 1;-webkit-transition-duration: .90s;}
  312.  
  313. .image img:hover {-webkit-filter: grayscale(80%);
  314. -webkit-transition:all .3s linear;
  315. -moz-transition:all .3s linear;transition:all .3s linear;
  316. -webkit-transition-duration: .80s;border: 2px solid {color:borda2};}
  317.  
  318.  
  319. /* --- Estilo de ask por tthy (things-to-help-you.tumblr.com) --- */
  320. .pergunta {
  321. line-height: 20px;
  322. background: {color:bgask};
  323. padding: 5px;
  324. font-family: Georgia;
  325. font-style: Italic;
  326. font-size: 11px;
  327. margin-top: -1px;
  328. margin-right: 0;
  329. overflow: hidden;
  330. text-shadow: 1px 1px 0px {color:sombra};
  331. color: {color:text};
  332. -webkit-border-bottom-right-radius: 5px;
  333. -webkit-border-bottom-left-radius: 5px;
  334. -moz-border-radius-bottomright: 5px;
  335. -moz-border-radius-bottomleft: 5px;
  336. border-bottom-right-radius: 5px;
  337. border-bottom-left-radius: 5px;}
  338.  
  339. .perguntou {
  340. display: block;
  341. font-family: Georgia;
  342. font-style: Italic;
  343. font-size: 11px;
  344. background: {color:bgask};
  345. padding-left: 5px;
  346. overflow: hidden;
  347. padding-right: 5px;
  348. padding-top: 4px;
  349. padding-bottom: 4px;
  350. margin-top: 1px;
  351. text-shadow: 0px 1px 1px #;
  352. color: {color:text};
  353. margin-bottom: 2px;
  354. -webkit-border-top-left-radius: 5px;
  355. -webkit-border-top-right-radius: 5px;
  356. -moz-border-radius-topleft: 5px;
  357. -moz-border-radius-topright: 5px;
  358. border-top-left-radius: 5px;
  359. border-top-right-radius: 5px;}
  360.  
  361. .pergunta g {color: {color:text}; text-shadow: 0px 0px 0px;}
  362. .pergunta a {color: {color:text}; text-shadow: 0px 0px 0px;}
  363.  
  364. .pergunta .data {
  365. float: right;
  366. font-family: 'Ubuntu Mono', sans-serif;
  367. font-style: normal;
  368. text-transform: uppercase;
  369. height: 18px;
  370. line-height: 18px;
  371. padding: 3px;
  372. background: {color:bgask2};
  373. margin-top: 12px;
  374. margin-right: 1px;
  375. text-shadow: 1px 1px 0px {color:sombra};
  376. color: {color:text};
  377. -webkit-border-top-left-radius: 5px;
  378. -webkit-border-bottom-left-radius: 5px;
  379. -moz-border-radius-topleft: 5px;
  380. -moz-border-radius-bottomleft: 5px;
  381. border-top-left-radius: 5px;
  382. border-bottom-left-radius: 5px;}
  383.  
  384. .boxicon {width: 24px;
  385. height: 24px;
  386. float: right;
  387. margin-left: 0px;
  388. margin-top: 5px;
  389. margin-right: -4px; }
  390.  
  391. .boxicon .askfoto {
  392. display: inline-block;
  393. margin-top: 7px;
  394. margin-left: 5px;
  395. float: right;}
  396.  
  397. .askfoto:hover {opacity: 0.9;}
  398. .linha {margin-bottom: 7px;}
  399. .ns {margin-left: 20px; margin-top: 1px;}
  400.  
  401. .extras {width: 99%; font-family:consolas; font-size:10px; padding:3px; margin-bottom: 1px; text-align:center; text-transform:uppercase;}
  402.  
  403. .aska {font-family:consolas; font-size:10px; text-align: right; }
  404.  
  405. ::-webkit-scrollbar {width:18px;height:auto;background:transparent;}
  406. ::-webkit-scrollbar-corner {background:{color:post};}
  407. ::-webkit-scrollbar-button:vertical {height:4px; display: block; background:{color:post};}
  408. ::-webkit-scrollbar-thumb:vertical {background:{color:post}; border-top: 1px solid {color:post}; border-bottom: 1px solid {color:post};}
  409. ::-webkit-scrollbar-track-piece {background-color:{color:text}; border-top: 3pt solid {color:posts}; border-bottom: 1pt solid {color:post}; width:4pt; border-left:2px solid {color:post}; border-right:2px solid {color:post};}
  410. ::moz-selection {color:{color:text}; background:{color:background};}
  411. ::selection {color:{color:text}; background:{color:background};}
  412.  
  413.  
  414.  
  415. /*************************** ESTILO DE QUOTE POR GIRLFATALE.TUMBLR.COM **/
  416.  
  417. .cquote {font-family: tahoma; font-size: 12px; line-height: 18px; text-transform: none; margin-top: -60px; text-indent: 40px;}
  418.  
  419. .aspa { position:relative; top: -7px; font-size: 70px; opacity:0.2; color: {color:text};}
  420.  
  421. .cquotesource {margin-top: 0px; margin-right: 15px; text-align: right; height:20px; font-family: georgia; font-size: 11px;}
  422.  
  423. /* Chat por Anna (livelikeasuicide) *********/
  424. .chat {background:{color:borda2}; margin: 0; font-size:
  425.  
  426. 10px; font-family: consolas;}
  427. .chat .chat1 {margin-left: 0px;font-size:
  428. 8px; }
  429. .chat .chat1 .chat2 {background:{color:background}; color:{color:text};font-size: 10px;
  430. margin-bottom: 1px; padding:4px; font-family: tahoma; } /* Primeira linha */
  431. .chat .chat1 .chat2.even {background:{color:post};
  432. color:{color:text};font-size:
  433. 10px; } /* Segunda linha */
  434.  
  435. .player {padding: 6px; color:{color:text}; margin-top: 1px; margin-left: 1px; margin-right: 1px; opacity:1}
  436.  
  437. .html_photoset {
  438. -webkit-filter: grayscale(0%);
  439. opacity:.7;
  440. -webkit-transition-duration: .80s;}
  441. .html_photoset:hover {
  442. -webkit-filter: grayscale(80%);
  443. -webkit-transition:all .3s linear;
  444. -moz-transition:all .3s linear;transition:all .3s linear;
  445. -webkit-transition-duration: .80s;}
  446.  
  447.  
  448.  
  449.  
  450. #cap {width: 400px; margin-top: -2px;}
  451. .source {display: none;}
  452.  
  453. .notes {width: 420px;padding:0px;margin-top:2px; margin-bottom: 2px; font-size: 9px; text-align: left; margin-left:0px;}
  454. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  455. ol.notes li {background-color:{color:post}; margin-bottom: 1px; padding: 5px; }
  456. .notes img{display:none; border:0px}
  457.  
  458.  
  459. /****** tumblr controls by cssehtml */
  460.  
  461. iframe#tumblr_controls {right:3px !important; position: fixed !important; filter:alpha(opacity=99); -moz-opacity:0.99; opacity:0.99; -webkit-transition:all .3s linear;-moz-transition:all .3s linear;transition:all .3s linear;}
  462.  
  463. iframe#tumblr_controls:hover{filter:alpha(opacity=0.30); -moz-opacity:1; opacity:1;}
  464.  
  465. /***DUH IMAGEM***/
  466.  
  467. #duhimg {margin-left: 106px;
  468. margin-top: 131px;
  469. position:fixed;
  470. overflow:hidden;
  471. background-color:{color:borda};
  472. opacity: 0.9;}
  473.  
  474. #duhimg img{ border:2px double {color:bordaimg};
  475. opacity: 1;
  476. padding:5px;
  477. width: 259px;
  478. height:245px;}
  479.  
  480. /*** PARTE DA SIDEBAR**/
  481.  
  482. #estela1 {position: fixed; margin-left: 95px; width:285px; height: 430px; background-color:{color:sidebar}; margin-top: 45px; -webkit-transform: rotate(0deg);-webkit-border-radius: 0px 0px 0px 0px; -webkit-transform: rotate(0deg);border: double 5px {color:borda}; box-shadow: 5px 5px 9px {color:sombra};background-image: url('{image:bgsid}');}
  483.  
  484.  
  485. /***LINKS BY DUDA.R***/
  486.  
  487. #nossadudex {font-family: tinytots; background-color: {color:sidebar}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 20px 20px 0px 0px; margin-top: 53px; margin-left: 255px; z-index: 1; position: fixed; text-align: center; height: 25px; border:0px solid ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  488. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: {color:omdg}; }/*links o-mundo-de-uma-garota*/
  489. #nossadudex1 {font-family: tinytots; background-color: {color:sidebar}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 20px 20px 0px 0px; margin-top: 53px; margin-left: 298px; z-index: 1; position: fixed; text-align: center; height: 25px; border:0px solid ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  490. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: {color:omdg}; }/*links o-mundo-de-uma-garota*/
  491. #nossadudex2 {font-family: tinytots; background-color: {color:sidebar}; color: {color:omdg}; font-size: 14px; padding: 3px 5px 5px 5px; width: 28px;text-shadow: 0px 0px 9px {color:duda};-webkit-border-radius: 20px 20px 0px 0px; margin-top: 53px; margin-left: 340px; z-index: 1; position: fixed; text-align: center; height: 25px; border:0px solid ; text-transform: none; }/*links o-mundo-de-uma-garota*/
  492. #nossadudex a{font-family: verdana; font-size: 10px; text-transform: none; font-weight: none; padding-left:1px; margin-left:-3px; color: {color:omdg}; }/*links o-mundo-de-uma-garota*/
  493.  
  494.  
  495. /**LINKS LINKS LINKS***/
  496.  
  497. #pink{width:578px; height: 40px; float: left; margin-left:131px; margin-top: 96px; padding: 0px; text-align: center; position: fixed; z-index:9999;}
  498. /***link by o-mundo-de-uma-garota***/
  499. #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:link hover};box-shadow: 5px 5px 9px {color:sombra}; } /***link by o-mundo-de-uma-garota***/
  500. #pink a:hover{color: {color:links}; background: {color:bghover} ;border-radius: 250px 250px / 20px 50px; padding: 20px;} @font-family {
  501. font-family: ‘Silkscreen’;
  502. src: url(‘Silkscreen.eot?’) format(‘eot’),
  503. url(‘Silkscreen.woff’) format(‘woff’),
  504. url(‘http://static.tumblr.com/faux5fd/ZKtm4v58j/slkscr.ttf’) format(‘truetype’); } /***link by o-mundo-de-uma-garota***/
  505.  
  506.  
  507. /***BARRINHAS DIVISÓRIAS***/
  508. #marion {position: fixed;
  509. margin-left: 100px;
  510. width:285px;
  511. height: 25px;
  512. background-color:{color:sidebar};
  513. margin-top: 62px;
  514. -webkit-transform: rotate(0deg);
  515. -webkit-transform: rotate(180deg);}
  516.  
  517.  
  518. #marion1 {position: fixed;
  519. margin-left: 100px;
  520. width:285px;
  521. height: 33px;
  522. background-color:{color:sidebar};
  523. margin-top: 94px;
  524. -webkit-transform: rotate(0deg);
  525. -webkit-transform: rotate(180deg);
  526. background-image: url('{image:fudinho}');}
  527.  
  528.  
  529. @font-face{font-family:'Cursive standard'; src:url('http://static.tumblr.com/37gdlu1/xpLmc5f4q/cursive_standard.ttf');}
  530.  
  531. /*** TITULOS***/
  532. #duka {background-color:#;margin-left:105px;margin-top: 64px; height:24px; line-height:25px;float:left; position:fixed; width:160px; font-family: 'Cursive standard'; font-size:20px; text-align: left;
  533. color:{color:frase} ; letter-spacing:-1px; z-index:11; text-transform: none; }
  534.  
  535.  
  536. .dukah1 {font-family:tinytots; font-size: 8px; font-style: none;
  537. height: 10px;color: {color:mytitle}; margin-left:230px;margin-top:76px; 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;}
  538. @font-face { font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  539.  
  540.  
  541. /*********ALGUMAS FAIXINHAS PRA SIDEBAR******************/
  542. #faixa2 {margin-top: 57px; margin-left: 100px; position: fixed; background-color: {color:linha}; height: 4px; width:184px;}/***detalhes by o-mundo-de-uma-garota***/
  543. #faixa3 {margin-top: 88px; margin-left: 100px; position: fixed; background-color: {color:linha}; height: 4px; width:285px;}/***detalhes by o-mundo-de-uma-garota***/
  544. #faixa5 {margin-top: 391px; margin-left: 106px; position: fixed; background-color: {color:linha}; height: 4px; width:273px;}/***detalhes by o-mundo-de-uma-garota***/
  545. #faixa6 {margin-top: 396px; margin-left: 106px; position: fixed; background-color: {color:linha}; height: 2px; width:273px;}/***detalhes by o-mundo-de-uma-garota***/
  546. #faixa7 {margin-top: 456px; margin-left: 101px; position: fixed; background-color: {color:linha}; height: 23px; width:283px;}/***detalhes by o-mundo-de-uma-garota***/
  547.  
  548.  
  549. /*** DESCRIÇÃO ***/
  550. #notinholaduda {margin-left: 117px; margin-top: 398px; width:250px; font-size: 11px; height: 27px; text-align: center; background-color:#; transparent; font-family:georgia; color: {color:textdesc}; position: fixed;z-index:99;padding: 5px; -webkit-transition: 1s ease-in; line-height: 10px;
  551. -moz-transition: 1s ease-in; transition: 1s ease-in; overflow: hidden; opacity: 1; border-top: 3px dotted transparent;}
  552.  
  553.  
  554. #paginal {font-family: verdana; font-size: 8px; text-align: center;}
  555. #paginal a {background-image: url('{image:bgsid}'); margin: 0 1px 0 0; padding: 2px 4px; color: {color:sidebar};opacity:1; box-shadow: 0px 1px 20px rgba(0,0,0,0.35);-webkit-border-radius: 20px 20px 20px 20px;}
  556. #paginal a:hover {background: {color:sidebar}; color: {color:text};}
  557. #paginal span.pagina_atual {background: {color:sidebar}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;-webkit-border-radius: 20px 20px 20px 20px;}
  558. .ps {position: fixed; padding: 2px; width: 128px; margin-left: 252px; margin-top: 460px; height: auto; background-color: {color:sidebar}; color: {color:text};opacity:1;-webkit-border-radius: 20px 20px 20px 20px; }
  559.  
  560.  
  561. </style>
  562.  
  563.  
  564. <body>
  565.  
  566.  
  567.  
  568. <body oncontextmenu="return false">
  569.  
  570. <!--------------SUA PLAY AQUI EMBAIXO--------------->
  571.  
  572.  
  573.  
  574.  
  575. <div id="estela1"></div>
  576.  
  577. <div id="faixa2"></div>
  578. <div id="faixa3"></div>
  579. <div id="faixa5"></div>
  580. <div id="faixa6"></div>
  581. <div id="faixa7"></div>
  582. <div id="duhimg"><img src="{image:fotod}"></div>
  583.  
  584. </div></div>
  585.  
  586.  
  587. </div></div>
  588. </div></div></div></div>
  589.  
  590. </div></div>
  591.  
  592. <div id="marion"></div>
  593. <div id="marion1"></div>
  594.  
  595. <div id="duka">{text:frase2}</div>
  596. <center><div class="dukah1">{text:frase1}</center></div></center>
  597.  
  598. <div id="notinholaduda">{Description}</div>
  599.  
  600.  
  601. <div id="pink">
  602. <a href="{text:Link4}">{text:Link4 Title}</a>
  603.  
  604. <a href="{text:Link5}">{text:Link5 Title}</a>
  605.  
  606. <a href="{text:Link6}">{text:Link6 Title}</a>
  607.  
  608. <a href="{text:Link7}">{text:Link7 Title}</a>
  609.  
  610. <a href="{text:Link8}">{text:Link8 Title}</a>
  611.  
  612.  
  613. </div class>
  614. </div></div>
  615. </div>
  616. </div>
  617. </div>
  618.  
  619.  
  620. <div id="nossadudex" title="{text:Link1 Title} "><a href="{text:Link1}"><img height="15"src="http://static.tumblr.com/bpaio6t/YwMm1exvz/msoi1.png" width="25"class="home"title="{text:Link1 Title} "></div>
  621.  
  622.  
  623. <div id="nossadudex1" title="{text:Link2 Title} "><a href="{text:Link2}"><img height="15"src="http://static.tumblr.com/bpaio6t/9jLm1ez5e/msoi4.png" width="20"class="ask"title="{text:Link2 Title}"></div>
  624.  
  625.  
  626. <div id="nossadudex2" title="{text:Link3 Title} "><a href="{text:Link3}"><img height="15"src="http://static.tumblr.com/bpaio6t/2q4m1ezcq/msoi3.png" width="20"class="amor"title="{text:Link3 Title}"></div>
  627.  
  628.  
  629. <!------------------CRÉDITOS DO THEME-------------->
  630.  
  631. <a style="font-size: 12px;height:20px;width:55px; line-height:24px; background:{color:sidebar};font-family:calibri;position:fixed;bottom:10px;left:138px; top:451px" href="http://o-mundo-de-uma-garota.tumblr.com/" title="Theme by: o-mundo-de-uma-garota, estilo de quotes por girlfatale,tutoriais por: mutable html + tthy + ilovethemes"><b>Theme <font color='#f3becc'> © </font></b></a></div>
  632.  
  633.  
  634. </div></div>
  635.  
  636. <!---------------------PAGINATION OKEY?------>
  637. <div class="ps"><div id="paginal">
  638. {block:JumpPagination length="4"}
  639. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  640. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  641. {/block:JumpPagination}
  642. </div></div>
  643.  
  644.  
  645. <!----INICIO DE POSTS [OMDG]-------------------->
  646.  
  647. <div id="box">
  648. {block:Posts}
  649. <div class="post">
  650.  
  651. {block:Title}<h1>{Title}</h1>{/block:Title}
  652. {Body}
  653.  
  654. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-400}"></div>{LinkCloseTag}{/block:Photo}
  655.  
  656. {block:Photoset}{Photoset-400}{/block:Photoset}
  657.  
  658. {block:Quote}
  659. <div class="aspa">❝</div><div class="cquote"> {Quote}</div>
  660. {block:Source}<div class="cquotesource"><font color="{color:tags}"> ~ </font> {Source}</div>
  661. {/block:Source}
  662. {/block:Quote}
  663.  
  664. {block:Link}
  665. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  666. {block:Description}{Description}{/block:Description}
  667. {/block:Link}
  668.  
  669. {block:Chat}
  670. <div class="chat">
  671. <div class="chat1">
  672. {block:Lines}
  673. <div class="chat2 {Alt}">
  674. {block:Label}
  675. <span>{Label}</span>
  676. {/block:Label}
  677. {Line}</div>
  678. {/block:Lines}
  679. </div>
  680. </div>
  681. {/block:Chat}
  682.  
  683.  
  684.  
  685. {block:Audio}
  686. <div class="player">{AudioPlayerBlack}</div>
  687. {block:Caption}{Caption}{/block:Caption}
  688. {/block:Audio}
  689.  
  690. {block:Video}{Video-400}{/block:Video}
  691.  
  692. {block:Answer}
  693. <div class="perguntou">
  694. <span class="per1"><a href="{Permalink}">
  695. <img src="http://static.tumblr.com/tx5g7yp/NCwmbj6s0/heart.png" border="0"></a>
  696. {TimeAgo}
  697. </span>
  698. </div>
  699.  
  700. <div class="pergunta">
  701. {Question}<p>
  702.  
  703. <div class="boxicon">
  704. <img src="{AskerPortraitURL-24}" width="24" class="askfoto">
  705. </div>
  706.  
  707. <span class="data">
  708. <img style="position: absolute; margin-top: 2px;"src="http://static.tumblr.com/tx5g7yp/9gambj6ue/user.png">
  709. <span class="ns">volte sempre, <g>{Asker}.</g>
  710. </span>
  711. </span>
  712.  
  713. </div>
  714. <div class="linha"></div>
  715. {Answer}
  716.  
  717. {/block:Answer}
  718. <div id="cap">
  719. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  720. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  721. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  722.  
  723. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  724. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  725. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  726. {/block:ContentSource}</div></div>
  727. <br>
  728.  
  729. <div id="baseduh1">
  730. {block:Date}posted on {Month} {DayOfMonth}, {Year}{/block:Date} <font color="{color:tags}"> + </font> <a href="{Permalink}">{TimeAgo}</a><BR><a href="{ReblogURL}" target="_blank"><b>reblog</b></a> <font color="{color:tags}">♡</font> <a href="{Permalink}">{NoteCountWithLabel}</a> {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentTitle}">via</a><font color="{color:tags}"> + </font><a href="{ReblogRootURL}" title="{ReblogRootTitle}">source</a>{/block:RebloggedFrom}</div>
  731. <br>
  732. <div class="baseduh">{block:HasTags}{block:Tags}<font color="{color:tags}">#</font> <a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}
  733.  
  734.  
  735. </div></div>
  736. {/block:Posts}
  737. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  738. </div></div>
  739.  
  740. </div>
  741.  
  742. </div></div></div></div></div></div>
  743. </div></div></div></div></div></div></div></div></div></div></div>
  744. </div></div></div></div></div></div></div></div></div></div></div>
  745. </div></div></div></div></div></div></div></div></div></div></div></div>
  746. </div></div></div></div></div></div>
  747.  
  748.  
  749.  
  750.  
  751. </body>
  752.  
  753. </html>
Advertisement
Add Comment
Please, Sign In to add comment